Class: Wunderbar::Asset
- Inherits:
-
Object
- Object
- Wunderbar::Asset
- Defined in:
- lib/wunderbar/asset.rb,
lib/wunderbar/render.rb
Constant Summary collapse
- @@cached_scripts =
{}
Class Attribute Summary collapse
-
.path ⇒ Object
URI path prepended to individual asset path.
-
.root ⇒ Object
location where the asset directory is to be found/placed.
-
.virtual ⇒ Object
don’t fall back to content if file doesn’t exist on disk.
Instance Attribute Summary collapse
-
#contents ⇒ Object
readonly
asset contents.
-
#mtime ⇒ Object
readonly
asset modification time.
-
#options ⇒ Object
readonly
general options.
Class Method Summary collapse
- .clear ⇒ Object
- .content_type_for(path) ⇒ Object
- .convert(file) ⇒ Object
- .css(options) ⇒ Object
- .declarations(root, prefix) ⇒ Object
- .find(path) ⇒ Object
- .script(options) ⇒ Object
- .scripts ⇒ Object
- .stylesheets ⇒ Object
Instance Method Summary collapse
-
#initialize(options) ⇒ Asset
constructor
Options: typically :name plus either :file or :contents :name => name to be used for the asset :file => source for the asset :contents => contents of the asset.
-
#path ⇒ Object
asset file location.
Constructor Details
#initialize(options) ⇒ Asset
Options: typically :name plus either :file or :contents
:name => name to be used for the asset
:file => source for the asset
:contents => contents of the asset
112 113 114 115 116 117 118 |
# File 'lib/wunderbar/asset.rb', line 112 def initialize() @options = @contents = [:contents] @path = nil [:name] ||= File.basename([:file]) end |
Class Attribute Details
.path ⇒ Object
URI path prepended to individual asset path
19 20 21 |
# File 'lib/wunderbar/asset.rb', line 19 def path @path end |
.root ⇒ Object
location where the asset directory is to be found/placed
22 23 24 |
# File 'lib/wunderbar/asset.rb', line 22 def root @root end |
.virtual ⇒ Object
don’t fall back to content if file doesn’t exist on disk
25 26 27 |
# File 'lib/wunderbar/asset.rb', line 25 def virtual @virtual end |
Instance Attribute Details
#contents ⇒ Object (readonly)
asset contents
71 72 73 |
# File 'lib/wunderbar/asset.rb', line 71 def contents @contents end |
#mtime ⇒ Object (readonly)
asset modification time
74 75 76 |
# File 'lib/wunderbar/asset.rb', line 74 def mtime @mtime end |
#options ⇒ Object (readonly)
general options
77 78 79 |
# File 'lib/wunderbar/asset.rb', line 77 def @options end |
Class Method Details
.clear ⇒ Object
79 80 81 82 |
# File 'lib/wunderbar/asset.rb', line 79 def self.clear @@scripts = [] @@stylesheets = [] end |
.content_type_for(path) ⇒ Object
84 85 86 87 88 89 90 91 92 |
# File 'lib/wunderbar/asset.rb', line 84 def self.content_type_for(path) if @@scripts.any? {|script| script.path == path} 'application/javascript' elsif @@stylesheets.any? {|script| script.path == path} 'text/css' else 'application/octet-stream' end end |
.convert(file) ⇒ Object
13 14 15 16 17 18 19 20 21 |
# File 'lib/wunderbar/render.rb', line 13 def self.convert(file) basename = file.sub(/-es5\.js\.rb$/, '.js.rb') = {file: basename} .merge!(eslevel: 5, strict: false) unless basename == file cached = @@cached_scripts[file] return cached if cached and cached.uptodate? return nil unless File.exist? basename @@cached_scripts[file] = Ruby2JS.convert(File.read(basename), ) end |
.css(options) ⇒ Object
124 125 126 |
# File 'lib/wunderbar/asset.rb', line 124 def self.css() @@stylesheets << self.new() end |
.declarations(root, prefix) ⇒ Object
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
# File 'lib/wunderbar/asset.rb', line 136 def self.declarations(root, prefix) base = prefix.to_s + Asset.path unless @@scripts.empty? before = root.at('script') if before before = before.parent while before.parent and not %w(head body).include? before.parent.name.to_s end parent = (before ? before.parent : root.at('body')) || root nodes = [] @@scripts.each do |script| if script.path path = script.path path = "#{base}/#{path}" unless path.start_with? '/' nodes << Node.new(:script, src: "#{path}?#{script.mtime.to_i}") elsif script.contents nodes << ScriptNode.new(:script, script.contents) end end nodes.each {|node| node.parent = parent} index = parent.children.index(before) || -1 parent.children.insert(index, *nodes) end unless @@stylesheets.empty? before = root.at('link[rel=stylesheet]') if before before = before.parent while before.parent and not %w(head body).include? before.parent.name.to_s end parent = (before ? before.parent : root.at('head')) || root nodes = [] @@stylesheets.each do |stylesheet| if stylesheet.path path = stylesheet.path path = "#{base}/#{path}" unless path.start_with? '/' nodes << Node.new(:link, rel: "stylesheet", type: "text/css", href: "#{path}?#{stylesheet.mtime.to_i}") elsif stylesheet.contents nodes << StyleNode.new(:style, stylesheet.contents) end end nodes.each {|node| node.parent = parent} index = parent.children.index(before) || -1 parent.children.insert(index, *nodes) end end |
.find(path) ⇒ Object
94 95 96 97 |
# File 'lib/wunderbar/asset.rb', line 94 def self.find(path) (@@scripts.find {|script| script.path == path}) || (@@stylesheets.find {|script| script.path == path}) end |
.script(options) ⇒ Object
120 121 122 |
# File 'lib/wunderbar/asset.rb', line 120 def self.script() @@scripts << self.new() end |
.scripts ⇒ Object
128 129 130 |
# File 'lib/wunderbar/asset.rb', line 128 def self.scripts @@scripts end |
.stylesheets ⇒ Object
132 133 134 |
# File 'lib/wunderbar/asset.rb', line 132 def self.stylesheets @@stylesheets end |
Instance Method Details
#path ⇒ Object
asset file location
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/wunderbar/asset.rb', line 29 def path return @path if @path or @contents if @options[:name] source = @options[:file] || __FILE__ @mtime = File.mtime(source) @path = @options[:name] # look for asset in site if ENV['DOCUMENT_ROOT'] root = File.join(ENV['DOCUMENT_ROOT'], 'assets') dest = File.(@path, root) if File.exist?(dest) and File.size(dest) == File.size(source) @path = "/assets/#{@path}" return @path end end # look for asset in app dest = File.(@path, Asset.root) if File.exist?(dest) and File.size(dest) == File.size(source) return @path end # try to make one begin FileUtils.mkdir_p File.dirname(dest) if @options[:file] FileUtils.cp source, dest, :preserve => true else open(dest, 'w') {|file| file.write @contents} end rescue @path = nil unless Asset.virtual @contents ||= File.read(source) end end @path end |