]> git.draconx.ca Git - homepage.git/blob - lib/scss-var.rb
Let's start a blog!
[homepage.git] / lib / scss-var.rb
1 # Nick's web site: Helper to retrieve global style variables in ruby.
2 #
3 # Copyright © 2020 Nick Bowler
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
17
18 require 'sass'
19
20 class GetSCSSGlobals < Sass::Tree::Visitors::Perform
21     def self.visit(root, name = nil)
22         x = new(nil)
23         x.send(:visit, root)
24         result = x.instance_variable_get(:@globals)
25         if name.nil?
26             return result.freeze
27         else
28             return result[name]
29         end
30     end
31
32     protected
33
34     def initialize(environment)
35         @globals = {}
36         @globals.default_proc = proc { |h, k|
37             if h.key? k.to_s then h[k.to_s] end }
38         super
39     end
40
41     def visit_variable(node)
42         super
43         
44         x = @environment.global_env.var(node.name)
45         if !x.nil?
46             @globals[node.name] = x
47         end
48     end
49 end
50
51 def scss_get_var(variable, item = @items["/style.scss"])
52     engine = Sass::Engine.for_file(item.raw_filename, { :syntax => :scss })
53     return GetSCSSGlobals.visit(engine.to_tree, variable)
54 end