asset helpers
This commit is contained in:
parent
0b8bb9bf58
commit
cacb7f20aa
2 changed files with 54 additions and 39 deletions
|
@ -55,6 +55,9 @@ class Middleman < Sinatra::Base
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# include helpers
|
||||||
|
class_eval File.read(File.join(File.dirname(__FILE__), 'middleman', 'helpers.rb'))
|
||||||
|
|
||||||
# Check for local config
|
# Check for local config
|
||||||
local_config = File.join(self.root, "init.rb")
|
local_config = File.join(self.root, "init.rb")
|
||||||
if File.exists? local_config
|
if File.exists? local_config
|
||||||
|
|
|
@ -1,41 +1,53 @@
|
||||||
Middleman.helpers do
|
def link_to(title, url="#", params={})
|
||||||
def link_to(title, url="#", params={})
|
params.merge!(:href => url)
|
||||||
params.merge!(:href => url)
|
params = params.map { |k,v| %Q{#{k}="#{v}"}}.join(' ')
|
||||||
params = params.map { |k,v| %Q{#{k}="#{v}"}}.join(' ')
|
%Q{<a #{params}>#{title}</a>}
|
||||||
%Q{<a #{params}>#{title}</a>}
|
end
|
||||||
end
|
|
||||||
|
|
||||||
def page_classes(*additional)
|
def page_classes(*additional)
|
||||||
classes = []
|
classes = []
|
||||||
parts = @full_request_path.split('.')[0].split('/')
|
parts = @full_request_path.split('.')[0].split('/')
|
||||||
parts.each_with_index { |path, i| classes << parts.first(i+1).join('_') }
|
parts.each_with_index { |path, i| classes << parts.first(i+1).join('_') }
|
||||||
|
|
||||||
classes << "index" if classes.empty?
|
classes << "index" if classes.empty?
|
||||||
classes += additional unless additional.empty?
|
classes += additional unless additional.empty?
|
||||||
classes.join(' ')
|
classes.join(' ')
|
||||||
end
|
end
|
||||||
|
|
||||||
def asset_url(path)
|
def haml_partial(name, options = {})
|
||||||
path.include?("://") ? path : "/#{path}"
|
item_name = name.to_sym
|
||||||
end
|
counter_name = "#{name}_counter".to_sym
|
||||||
|
if collection = options.delete(:collection)
|
||||||
def image_tag(path, options={})
|
collection.enum_for(:each_with_index).collect do |item,index|
|
||||||
options[:alt] ||= ""
|
haml_partial name, options.merge(:locals => {item_name => item, counter_name => index+1})
|
||||||
capture_haml do
|
end.join
|
||||||
haml_tag :img, options.merge(:src => asset_url(path))
|
elsif object = options.delete(:object)
|
||||||
end
|
haml_partial name, options.merge(:locals => {item_name => object, counter_name => nil})
|
||||||
end
|
else
|
||||||
|
haml "_#{name}".to_sym, options.merge(:layout => false)
|
||||||
def javascript_include_tag(path, options={})
|
end
|
||||||
capture_haml do
|
end
|
||||||
haml_tag :script, options.merge(:src => asset_url(path), :type => "text/javascript")
|
|
||||||
end
|
def asset_url(path)
|
||||||
end
|
path.include?("://") ? path : "/#{path}"
|
||||||
|
end
|
||||||
def stylesheet_link_tag(path, options={})
|
|
||||||
options[:rel] ||= "stylesheet"
|
def image_tag(path, options={})
|
||||||
capture_haml do
|
options[:alt] ||= ""
|
||||||
haml_tag :link, options.merge(:href => asset_url(path), :type => "text/css")
|
capture_haml do
|
||||||
end
|
haml_tag :img, options.merge(:src => asset_url(path))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def javascript_include_tag(path, options={})
|
||||||
|
capture_haml do
|
||||||
|
haml_tag :script, options.merge(:src => asset_url(path), :type => "text/javascript")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def stylesheet_link_tag(path, options={})
|
||||||
|
options[:rel] ||= "stylesheet"
|
||||||
|
capture_haml do
|
||||||
|
haml_tag :link, options.merge(:href => asset_url(path), :type => "text/css")
|
||||||
end
|
end
|
||||||
end
|
end
|
Loading…
Add table
Reference in a new issue