compass/doc-src/lib/stylesheets.rb

188 lines
4.3 KiB
Ruby
Raw Normal View History

require 'rdiscount'
def stylesheets_dir(framework)
Compass::Frameworks[framework].stylesheets_directory
end
2010-02-07 17:14:20 +00:00
def tree_key(item)
"tree/"+[item[:framework], item[:stylesheet]].join("/")
end
def tree(item)
2010-02-07 17:14:20 +00:00
@site.cached(tree_key(item)) do
file = File.join(stylesheets_dir(item[:framework]), item[:stylesheet])
contents = File.read(file)
2010-04-12 09:46:33 +00:00
syntax = item[:stylesheet] =~ /\.scss$/ ? :scss : :sass
Sass::Engine.new(contents, :syntax => syntax).send :to_tree
end
end
def imports(item)
sass_tree = tree(item)
imports = []
sass_tree.children.each do |child|
if child.is_a?(Sass::Tree::ImportNode)
imports << child.imported_filename
end
end
imports
end
2010-01-22 19:40:56 +00:00
def reference_item(options)
stylesheet = options[:stylesheet]
2010-02-07 17:14:20 +00:00
@site.cached("reference/item/#{stylesheet}") do
path = stylesheet_path(stylesheet)
if path
@items.detect do |i|
i.identifier =~ /^\/reference/ &&
i[:stylesheet] == path
2010-02-07 17:14:20 +00:00
end
end
end
end
def departialize(path)
path.gsub(%r{(\b|/)_}){|m| m.size > 1 ? "/" : ""}
end
def reference_path(options)
if item = reference_item(options)
rep = item.reps.find { |r| r.name == :default }
rep.path
end
end
def import_paths
2010-01-28 08:37:17 +00:00
paths = Compass::Frameworks::ALL.inject([]) {|m, f| m << f.stylesheets_directory}
paths.map!{|p|[p, '']}
if @item[:stylesheet]
paths << [File.join(Compass::Frameworks[@item[:framework]].stylesheets_directory,
File.dirname(@item[:stylesheet])), File.dirname(@item[:stylesheet])]
end
paths
end
def stylesheet_path(ss)
2010-02-07 17:14:20 +00:00
@site.cached("stylesheet/path/#{ss}") do
possible_filenames_for_stylesheet(ss).each do |filename|
import_paths.each do |import_path|
full_path = File.join(import_path.first, filename)
if File.exist?(full_path)
return "#{import_path.last}#{"/" if import_path.last && import_path.last.length > 0}#{filename}"
end
end
end
end
end
def possible_filenames_for_stylesheet(ss)
ext = File.extname(ss)
path = File.dirname(ss)
2010-01-25 00:02:53 +00:00
path = path == "." ? "" : "#{path}/"
base = File.basename(ss)[0..-(ext.size+1)]
extensions = if ext.size > 0
[ext]
else
[".sass", ".scss"]
end
basenames = [base, "_#{base}"]
filenames = []
basenames.each do |basename|
extensions.each do |extension|
2010-01-25 00:02:53 +00:00
filenames << "#{path}#{basename}#{extension}"
end
end
filenames
end
2010-01-22 19:40:56 +00:00
def mixins(item)
sass_tree = tree(item)
mixins = []
comment = nil
sass_tree.children.each do |child|
if child.is_a?(Sass::Tree::MixinDefNode)
child.comment = comment && Sass::Tree::CommentNode.clean(comment)
2010-01-22 19:40:56 +00:00
comment = nil
mixins << child
elsif child.is_a?(Sass::Tree::CommentNode)
comment ||= ""
comment << "\n" unless comment.empty?
comment << child.docstring
else
comment = nil
end
end
mixins
end
2010-01-24 03:47:28 +00:00
def constants(item)
sass_tree = tree(item)
constants = []
comment = nil
sass_tree.children.each do |child|
if child.is_a?(Sass::Tree::VariableNode)
child.comment = comment && Sass::Tree::CommentNode.clean(comment)
2010-01-24 03:47:28 +00:00
comment = nil
constants << child
elsif child.is_a?(Sass::Tree::CommentNode)
comment ||= ""
comment << "\n" unless comment.empty?
comment << child.docstring
else
comment = nil
end
end
constants
end
2010-03-29 06:06:56 +00:00
def mixin_signature(mixin, format = :html)
mixin.sass_signature(:include, format)
2010-01-22 19:40:56 +00:00
end
2010-01-30 23:50:25 +00:00
def example_items
2010-02-07 17:14:20 +00:00
@site.cached("examples") do
@items.select do |i|
i.identifier =~ /^\/examples/ && i[:example]
end
2010-02-07 17:14:20 +00:00
end
2010-01-30 23:50:25 +00:00
end
def examples_for_item(item)
2010-02-07 17:14:20 +00:00
@site.cached("examples/#{item.identifier}") do
example_items.select do |i|
i[:framework] == item[:framework] &&
i[:stylesheet] == item[:stylesheet]
end
2010-01-30 23:50:25 +00:00
end
end
def examples(item, mixin = nil)
examples = examples_for_item(item)
if mixin
examples = examples.select {|i| i[:mixin] == mixin.name }
else
examples = examples.reject {|i| i[:mixin] }
end
examples.map{|i| i.reps.find{|r| r.name == :default}}
2010-01-27 06:08:13 +00:00
end
2010-01-24 03:47:28 +00:00
def mixin_source_dialog(mixin, &block)
vars = {
:html => {
:id => "mixin-source-#{mixin.name}",
:class => "mixin",
:title => "Source for +#{mixin.name}"
}
}
render 'dialog', vars, &block
end
def format_doc(docstring)
2010-01-25 00:02:53 +00:00
if docstring
RDiscount.new(docstring).to_html
end
end