forked from tailwindlabs/tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinvokePlugin.js
More file actions
43 lines (36 loc) · 1.11 KB
/
invokePlugin.js
File metadata and controls
43 lines (36 loc) · 1.11 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
import _ from 'lodash'
import escapeClassName from '../../src/util/escapeClassName'
export default function (plugin, config) {
const addedUtilities = []
const getConfigValue = (path, defaultValue) => _.get(config, path, defaultValue)
const pluginApi = {
config: getConfigValue,
e: escapeClassName,
theme: (path, defaultValue) => getConfigValue(`theme.${path}`, defaultValue),
variants: (path, defaultValue) => {
if (_.isArray(config.variants)) {
return config.variants
}
return getConfigValue(`variants.${path}`, defaultValue)
},
addUtilities(utilities, variants) {
addedUtilities.push([utilities, variants])
},
corePlugins(corePlugin) {
if (config.corePlugins === undefined) {
return false
}
if (Array.isArray(config.corePlugins)) {
return config.corePlugins.includes(corePlugin)
}
return config.corePlugins[corePlugin] !== false
},
}
plugin(pluginApi)
return {
utilities: addedUtilities.map(([utilities, variants]) => [
_.merge({}, ..._.castArray(utilities)),
variants,
]),
}
}