middleman/middleman-core/lib/middleman-core/core_extensions/default_helpers.rb

107 lines
3.2 KiB
Ruby
Raw Normal View History

2012-04-26 08:16:25 +02:00
require 'padrino-helpers'
# Built-in helpers
module Middleman::CoreExtensions::DefaultHelpers
# Extension registered
class << self
# @private
def registered(app)
app.helpers ::Padrino::Helpers::OutputHelpers
app.helpers ::Padrino::Helpers::TagHelpers
app.helpers ::Padrino::Helpers::AssetTagHelpers
app.helpers ::Padrino::Helpers::FormHelpers
app.helpers ::Padrino::Helpers::FormatHelpers
app.helpers ::Padrino::Helpers::RenderHelpers
app.helpers ::Padrino::Helpers::NumberHelpers
2012-03-11 04:40:04 +01:00
# app.helpers ::Padrino::Helpers::TranslationHelpers
app.helpers Helpers
end
alias :included :registered
end
# The helpers
module Helpers
# Output a stylesheet link tag based on the current path
#
# @param [String] separator How to break up path in parts
# @return [String]
def auto_stylesheet_link_tag(separator="/")
auto_tag(:css, separator) do |path|
stylesheet_link_tag path
end
end
# Output a javascript tag based on the current path
#
# @param [String] separator How to break up path in parts
# @return [String]
def auto_javascript_include_tag(separator="/")
auto_tag(:js, separator) do |path|
javascript_include_tag path
end
end
# Output a stylesheet link tag based on the current path
#
# @param [Symbol] asset_ext The type of asset
# @param [String] separator How to break up path in parts
# @param [String] asset_dir Where to look for assets
# @return [void]
def auto_tag(asset_ext, separator="/", asset_dir=nil)
if asset_dir.nil?
asset_dir = case asset_ext
2011-11-21 06:21:19 +01:00
when :js then js_dir
when :css then css_dir
end
end
# If the basename of the request as no extension, assume we are serving a
# directory and join index_file to the path.
2011-11-19 05:49:59 +01:00
path = full_path(current_path.dup)
path = path.sub(%r{^/}, '')
path = path.gsub(File.extname(path), ".#{asset_ext}")
2009-12-28 21:03:38 +01:00
path = path.gsub("/", separator)
2012-04-04 19:26:07 +02:00
yield path if sitemap.find_resource_by_path(File.join(asset_dir, path))
2009-11-03 21:34:57 +01:00
end
# Generate body css classes based on the current path
#
# @return [String]
2009-11-03 21:34:57 +01:00
def page_classes
2011-11-18 09:34:56 +01:00
path = current_path.dup
2011-11-21 06:21:19 +01:00
path << index_file if path.match(%r{/$})
2009-11-03 21:34:57 +01:00
path = path.gsub(%r{^/}, '')
classes = []
parts = path.split('.')[0].split('/')
parts.each_with_index { |path, i| classes << parts.first(i+1).join('_') }
classes.join(' ')
end
# Get the path of a file of a given type
#
# @param [Symbol] kind The type of file
# @param [String] source The path to the file
# @return [String]
def asset_path(kind, source)
return source if source =~ /^http/
asset_folder = case kind
2011-11-21 06:21:19 +01:00
when :css then css_dir
when :js then js_dir
when :images then images_dir
else kind.to_s
end
source = source.to_s.gsub(/\s/, '')
2011-06-14 22:54:59 +02:00
ignore_extension = (kind == :images) # don't append extension
source << ".#{kind}" unless ignore_extension or source =~ /\.#{kind}/
result_path = source if source =~ %r{^/} # absolute path
result_path ||= asset_url(source, asset_folder)
"#{result_path}"
end
end
end