-
Notifications
You must be signed in to change notification settings - Fork 187
/
Copy pathexports.js
195 lines (174 loc) · 5.99 KB
/
exports.js
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
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
188
189
190
191
192
193
194
195
/* @flow */
import {hashString} from './util';
import {
injectAndGetClassName,
reset,
resetInjectedStyle,
startBuffering,
flushToString,
flushToStyleTag,
addRenderedClassNames,
getRenderedClassNames,
getBufferedStyles,
} from './inject';
import {defaultSelectorHandlers} from './generate';
/* ::
import type { SelectorHandler } from './generate.js';
export type SheetDefinition = { [id:string]: any };
export type SheetDefinitions = SheetDefinition | SheetDefinition[];
type RenderFunction = () => string;
type Extension = {
selectorHandler: SelectorHandler
};
export type MaybeSheetDefinition = SheetDefinition | false | null | void
*/
const unminifiedHashFn = (str/* : string */, key/* : string */) => `${key}_${hashString(str)}`;
// StyleSheet.create is in a hot path so we want to keep as much logic out of it
// as possible. So, we figure out which hash function to use once, and only
// switch it out via minify() as necessary.
//
// This is in an exported function to make it easier to test.
export const initialHashFn = () => process.env.NODE_ENV === 'production'
? hashString
: unminifiedHashFn;
let hashFn = initialHashFn();
const StyleSheet = {
create(sheetDefinition /* : SheetDefinition */) /* : Object */ {
const mappedSheetDefinition = {};
const keys = Object.keys(sheetDefinition);
for (let i = 0; i < keys.length; i += 1) {
const key = keys[i];
const val = sheetDefinition[key];
const stringVal = JSON.stringify(val);
mappedSheetDefinition[key] = {
_len: stringVal.length,
_name: hashFn(stringVal, key),
_definition: val,
};
}
return mappedSheetDefinition;
},
rehydrate(renderedClassNames /* : string[] */ =[]) {
addRenderedClassNames(renderedClassNames);
},
};
/**
* Utilities for using Aphrodite server-side.
*
* This can be minified out in client-only bundles by replacing `typeof window`
* with `"object"`, e.g. via Webpack's DefinePlugin:
*
* new webpack.DefinePlugin({
* "typeof window": JSON.stringify("object")
* })
*/
const StyleSheetServer = typeof window !== 'undefined'
? null
: {
renderStatic(renderFunc /* : RenderFunction */) {
reset();
startBuffering();
const html = renderFunc();
const cssContent = flushToString();
return {
html: html,
css: {
content: cssContent,
renderedClassNames: getRenderedClassNames(),
},
};
},
};
/**
* Utilities for using Aphrodite in tests.
*
* Not meant to be used in production.
*/
const StyleSheetTestUtils = process.env.NODE_ENV === 'production'
? null
: {
/**
* Prevent styles from being injected into the DOM.
*
* This is useful in situations where you'd like to test rendering UI
* components which use Aphrodite without any of the side-effects of
* Aphrodite happening. Particularly useful for testing the output of
* components when you have no DOM, e.g. testing in Node without a fake DOM.
*
* Should be paired with a subsequent call to
* clearBufferAndResumeStyleInjection.
*/
suppressStyleInjection() {
reset();
startBuffering();
},
/**
* Opposite method of preventStyleInject.
*/
clearBufferAndResumeStyleInjection() {
reset();
},
/**
* Returns a string of buffered styles which have not been flushed
*
* @returns {string} Buffer of styles which have not yet been flushed.
*/
getBufferedStyles() {
return getBufferedStyles();
}
};
/**
* Generate the Aphrodite API exports, with given `selectorHandlers` and
* `useImportant` state.
*/
export default function makeExports(
useImportant /* : boolean */,
selectorHandlers /* : SelectorHandler[] */ = defaultSelectorHandlers,
) {
return {
StyleSheet: {
...StyleSheet,
/**
* Returns a version of the exports of Aphrodite (i.e. an object
* with `css` and `StyleSheet` properties) which have some
* extensions included.
*
* @param {Array.<Object>} extensions: An array of extensions to
* add to this instance of Aphrodite. Each object should have a
* single property on it, defining which kind of extension to
* add.
* @param {SelectorHandler} [extensions[].selectorHandler]: A
* selector handler extension. See `defaultSelectorHandlers` in
* generate.js.
*
* @returns {Object} An object containing the exports of the new
* instance of Aphrodite.
*/
extend(extensions /* : Extension[] */) {
const extensionSelectorHandlers = extensions
// Pull out extensions with a selectorHandler property
.map(extension => extension.selectorHandler)
// Remove nulls (i.e. extensions without a selectorHandler property).
.filter(handler => handler);
return makeExports(
useImportant,
selectorHandlers.concat(extensionSelectorHandlers)
);
},
},
StyleSheetServer,
StyleSheetTestUtils,
minify(shouldMinify /* : boolean */) {
hashFn = shouldMinify ? hashString : unminifiedHashFn;
},
css(...styleDefinitions /* : MaybeSheetDefinition[] */) {
return injectAndGetClassName(
useImportant, styleDefinitions, selectorHandlers);
},
flushToStyleTag,
injectAndGetClassName,
defaultSelectorHandlers,
reset,
resetInjectedStyle,
};
}