Module: Dommy::Internal::CSS::CustomProperties

Defined in:
lib/dommy/internal/css/custom_properties.rb

Overview

var() substitution for custom properties (css-variables-1). Substitution happens at computed-value time: first the custom properties resolve among themselves (with cycle detection), then regular property values substitute against the resolved set.

Constant Summary collapse

VAR_PATTERN =

The CSS function name is ASCII case-insensitive; the preceding character guard keeps identifiers like novar( from matching.

/(?<![\w-])var\(/i

Class Method Summary collapse

Class Method Details

.contains_var?(value) ⇒ Boolean

Returns:

  • (Boolean)


17
18
19
# File 'lib/dommy/internal/css/custom_properties.rb', line 17

def contains_var?(value)
  value.to_s.match?(VAR_PATTERN)
end

.cyclic_properties(values) ⇒ Object

The custom-property names that participate in a dependency cycle: the members of every strongly connected component of size > 1, plus any self-referencing property (--a: var(--a)). Tarjan's SCC over the var()-reference graph.



91
92
93
94
95
96
97
98
# File 'lib/dommy/internal/css/custom_properties.rb', line 91

def cyclic_properties(values)
  graph = {}
  values.each_key { |name| graph[name] = references(values[name]).select { |ref| values.key?(ref) }.uniq }

  state = {index: 0, indices: {}, lowlink: {}, on_stack: {}, stack: [], cyclic: {}}
  graph.each_key { |name| strongconnect(name, graph, state) unless state[:indices].key?(name) }
  state[:cyclic]
end

.matching_paren_index(value, open_index) ⇒ Object



154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/dommy/internal/css/custom_properties.rb', line 154

def matching_paren_index(value, open_index)
  depth = 0
  index = open_index
  while index < value.length
    case value[index]
    when "(" then depth += 1
    when ")"
      depth -= 1
      return index if depth.zero?
    end
    index += 1
  end
  nil
end

.references(value) ⇒ Object

The custom-property names a value depends on for cycle detection: the FIRST argument of each top-level var(). Fallback references don't count — a cycle that exists only in an unused fallback is not a cycle (csswg-drafts#11500), so var(--x, var(--y)) depends on --x only.



134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/dommy/internal/css/custom_properties.rb', line 134

def references(value)
  refs = []
  index = 0
  while index < value.length
    unless value[index, 4].casecmp("var(").zero? &&
           (index.zero? || !value[index - 1].match?(/[\w-]/))
      index += 1
      next
    end

    close = matching_paren_index(value, index + 3)
    break unless close

    name, = split_args(value[(index + 4)...close])
    refs << name
    index = close + 1
  end
  refs
end

.resolve_all(values) ⇒ Object

Resolve var() inside the custom property values themselves. values is "--name" => raw value; returns "--name" => substituted value with invalid (cyclic / unresolvable) entries dropped.

Cycles are detected up front on the dependency graph (the strongly connected components): every property in a cycle is the guaranteed- invalid value, fallback notwithstanding (css-variables-1 §3.1). A property that merely references a cyclic/unset property still uses its var() fallback — so the same DFS that mishandles secondary cycles (a property in two overlapping cycles) is replaced by SCC analysis.



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/dommy/internal/css/custom_properties.rb', line 31

def resolve_all(values)
  cyclic = cyclic_properties(values)
  resolved = {}

  resolve = lambda do |name|
    next resolved[name] if resolved.key?(name)
    next (resolved[name] = nil) if cyclic[name]

    value = values[name]
    next (resolved[name] = nil) if value.nil?

    resolved[name] = substitute(value, resolve)
  end

  values.each_key { |name| resolve.call(name) }
  resolved.compact
end

.split_args(inner) ⇒ Object

"--name , fallback" -> ["--name", "fallback"]; no comma -> nil fallback (distinct from the empty-but-valid var(--x,) fallback).



171
172
173
174
175
176
177
178
179
# File 'lib/dommy/internal/css/custom_properties.rb', line 171

def split_args(inner)
  depth = 0
  inner.each_char.with_index do |ch, idx|
    depth += 1 if ch == "("
    depth -= 1 if ch == ")"
    return [inner[0...idx].strip, inner[(idx + 1)..].strip] if ch == "," && depth.zero?
  end
  [inner.strip, nil]
end

.strongconnect(node, graph, state) ⇒ Object

One node of Tarjan's SCC algorithm.



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'lib/dommy/internal/css/custom_properties.rb', line 101

def strongconnect(node, graph, state)
  state[:indices][node] = state[:lowlink][node] = state[:index]
  state[:index] += 1
  state[:stack].push(node)
  state[:on_stack][node] = true

  graph[node].each do |neighbour|
    if !state[:indices].key?(neighbour)
      strongconnect(neighbour, graph, state)
      state[:lowlink][node] = [state[:lowlink][node], state[:lowlink][neighbour]].min
    elsif state[:on_stack][neighbour]
      state[:lowlink][node] = [state[:lowlink][node], state[:indices][neighbour]].min
    end
  end

  return unless state[:lowlink][node] == state[:indices][node]

  component = []
  loop do
    popped = state[:stack].pop
    state[:on_stack][popped] = false
    component << popped
    break if popped == node
  end
  if component.length > 1 || graph[component.first].include?(component.first)
    component.each { |member| state[:cyclic][member] = true }
  end
end

.substitute(value, lookup, depth = 0) ⇒ Object

Substitute every var(--name[, fallback]) in value using lookup (callable: name -> resolved value, or nil when the property is unset or cyclic — in which case the fallback is used). Returns the substituted string, or nil when invalid at computed-value time (an unmatched paren, or a var() with no fallback to a missing property).



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/dommy/internal/css/custom_properties.rb', line 54

def substitute(value, lookup, depth = 0)
  return nil if depth > 32 # runaway guard

  out = +""
  index = 0
  while index < value.length
    at_var = value[index, 4].casecmp("var(").zero? &&
      (index.zero? || !value[index - 1].match?(/[\w-]/))
    unless at_var
      out << value[index]
      index += 1
      next
    end

    close = matching_paren_index(value, index + 3)
    return nil unless close

    name, fallback = split_args(value[(index + 4)...close])
    replacement = lookup.call(name)

    if replacement.nil?
      return nil if fallback.nil?

      replacement = substitute(fallback, lookup, depth + 1)
      return nil if replacement.nil?
    end

    out << replacement
    index = close + 1
  end
  out
end