forked from tailwindlabs/tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubstituteClassApplyAtRules.js
More file actions
146 lines (124 loc) · 4.82 KB
/
substituteClassApplyAtRules.js
File metadata and controls
146 lines (124 loc) · 4.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
import _ from 'lodash'
import postcss from 'postcss'
import escapeClassName from '../util/escapeClassName'
import prefixSelector from '../util/prefixSelector'
import increaseSpecificity from '../util/increaseSpecificity'
function buildClassTable(css) {
const classTable = {}
css.walkRules(rule => {
if (!_.has(classTable, rule.selector)) {
classTable[rule.selector] = []
}
classTable[rule.selector].push(rule)
})
return classTable
}
function buildShadowTable(generatedUtilities) {
const utilities = postcss.root()
postcss.root({ nodes: generatedUtilities }).walkAtRules('variants', atRule => {
utilities.append(atRule.clone().nodes)
})
return buildClassTable(utilities)
}
function normalizeClassName(className) {
return `.${escapeClassName(_.trimStart(className, '.'))}`
}
function findClass(classToApply, classTable, onError) {
const matches = _.get(classTable, classToApply, [])
if (_.isEmpty(matches)) {
return []
}
if (matches.length > 1) {
// prettier-ignore
throw onError(`\`@apply\` cannot be used with ${classToApply} because ${classToApply} is included in multiple rulesets.`)
}
const [match] = matches
if (match.parent.type !== 'root') {
// prettier-ignore
throw onError(`\`@apply\` cannot be used with ${classToApply} because ${classToApply} is nested inside of an at-rule (@${match.parent.name}).`)
}
return match.clone().nodes
}
export default function(config, generatedUtilities) {
return function(css) {
const classLookup = buildClassTable(css)
const shadowLookup = buildShadowTable(generatedUtilities)
css.walkRules(rule => {
rule.walkAtRules('apply', atRule => {
const classesAndProperties = postcss.list.space(atRule.params)
/*
* Don't wreck CSSNext-style @apply rules:
* http://cssnext.io/features/#custom-properties-set-apply
*
* These are deprecated in CSSNext but still playing it safe for now.
* We might consider renaming this at-rule.
*/
const [customProperties, classes] = _.partition(classesAndProperties, classOrProperty => {
return _.startsWith(classOrProperty, '--')
})
const decls = _(classes)
.reject(cssClass => cssClass === '!important')
.flatMap(cssClass => {
const classToApply = normalizeClassName(cssClass)
const onError = message => {
return atRule.error(message)
}
return _.reduce(
[
// Find exact class match in user's CSS
() => {
return findClass(classToApply, classLookup, onError)
},
// Find exact class match in shadow lookup
() => {
return findClass(classToApply, shadowLookup, onError)
},
// Find prefixed version of class in shadow lookup
() => {
return findClass(
prefixSelector(config.prefix, classToApply),
shadowLookup,
onError
)
},
// Find important-scoped version of class in shadow lookup
() => {
return findClass(
increaseSpecificity(config.important, classToApply),
shadowLookup,
onError
)
},
// Find important-scoped and prefixed version of class in shadow lookup
() => {
return findClass(
increaseSpecificity(
config.important,
prefixSelector(config.prefix, classToApply)
),
shadowLookup,
onError
)
},
() => {
// prettier-ignore
throw onError(`\`@apply\` cannot be used with \`${classToApply}\` because \`${classToApply}\` either cannot be found, or its actual definition includes a pseudo-selector like :hover, :active, etc. If you're sure that \`${classToApply}\` exists, make sure that any \`@import\` statements are being properly processed *before* Tailwind CSS sees your CSS, as \`@apply\` can only be used for classes in the same CSS tree.`)
},
],
(classDecls, candidate) => (!_.isEmpty(classDecls) ? classDecls : candidate()),
[]
)
})
.value()
_.tap(_.last(classesAndProperties) === '!important', important => {
decls.forEach(decl => (decl.important = important))
})
atRule.before(decls)
atRule.params = customProperties.join(' ')
if (_.isEmpty(customProperties)) {
atRule.remove()
}
})
})
}
}