-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
edf53b5
commit 4da9951
Showing
22 changed files
with
531 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
packages/fluentui/react-northstar-emotion-renderer/.eslintignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
coverage/ | ||
dist/ | ||
lib/ | ||
node_modules/ |
4 changes: 4 additions & 0 deletions
4
packages/fluentui/react-northstar-emotion-renderer/.eslintrc.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"extends": ["../../../scripts/eslint/index"], | ||
"root": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = require('@uifabric/build/gulp/.gulp'); |
1 change: 1 addition & 0 deletions
1
packages/fluentui/react-northstar-emotion-renderer/babel.config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = api => require('@uifabric/build/babel')(api); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
import '../../../gulpfile'; |
47 changes: 47 additions & 0 deletions
47
packages/fluentui/react-northstar-emotion-renderer/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"name": "@fluentui/react-northstar-emotion-renderer", | ||
"description": "A CSS-in-JS renderer based on Emotion for FluentUI React Northstar.", | ||
"version": "0.49.0", | ||
"bugs": "https://github.com/microsoft/fluentui/issues", | ||
"dependencies": { | ||
"@babel/runtime": "^7.7.6", | ||
"@emotion/cache": "^10.0.29", | ||
"@emotion/serialize": "^0.11.16", | ||
"@emotion/sheet": "^0.9.4", | ||
"@emotion/utils": "^0.11.3", | ||
"@fluentui/react-northstar-styles-renderer": "^0.49.0", | ||
"@fluentui/styles": "^0.49.0", | ||
"@quid/stylis-plugin-focus-visible": "^4.0.0", | ||
"stylis-plugin-rtl": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "16.8.25", | ||
"@uifabric/build": "^7.0.0", | ||
"lerna-alias": "^3.0.3-0", | ||
"react": "16.8.6" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"homepage": "https://github.com/microsoft/fluentui/tree/master/packages/fluentui/react-northstar-emotion-renderer", | ||
"jsnext:main": "dist/es/index.js", | ||
"license": "MIT", | ||
"main": "dist/commonjs/index.js", | ||
"module": "dist/es/index.js", | ||
"peerDependencies": { | ||
"react": "^16.8.0", | ||
"react-dom": "^16.8.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": "microsoft/fluentui.git", | ||
"scripts": { | ||
"build": "gulp bundle:package:no-umd", | ||
"clean": "gulp bundle:package:clean", | ||
"lint": "eslint --ext .js,.ts,.tsx .", | ||
"lint:fix": "yarn lint --fix" | ||
}, | ||
"sideEffects": false, | ||
"types": "dist/es/index.d.ts" | ||
} |
121 changes: 121 additions & 0 deletions
121
packages/fluentui/react-northstar-emotion-renderer/src/createEmotionRenderer.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
import createCache from '@emotion/cache'; | ||
import { ObjectInterpolation, serializeStyles } from '@emotion/serialize'; | ||
import { StyleSheet } from '@emotion/sheet'; | ||
import { EmotionCache, insertStyles } from '@emotion/utils'; | ||
import { | ||
Renderer, | ||
RendererRenderGlobal, | ||
RendererRenderFont, | ||
RendererRenderRule, | ||
} from '@fluentui/react-northstar-styles-renderer'; | ||
// @ts-ignore No typings :( | ||
import focusVisiblePlugin from '@quid/stylis-plugin-focus-visible'; | ||
// @ts-ignore No typings :( | ||
import rtlPlugin from 'stylis-plugin-rtl'; | ||
import * as React from 'react'; | ||
|
||
import { disableAnimations } from './disableAnimations'; | ||
import { generateFontSource, getFontLocals, toCSSString } from './fontUtils'; | ||
import { invokeKeyframes } from './invokeKeyframes'; | ||
|
||
export function createEmotionRenderer(target?: Document): Renderer { | ||
const cacheLtr = createCache({ | ||
container: target?.head, | ||
key: 'fui', | ||
stylisPlugins: [focusVisiblePlugin], | ||
|
||
// TODO: make this configurable via perf flags | ||
speedy: true, | ||
}) as EmotionCache & { insert: Function }; | ||
const cacheRtl = createCache({ | ||
container: target?.head, | ||
key: 'rfui', | ||
stylisPlugins: [focusVisiblePlugin, rtlPlugin], | ||
|
||
// TODO: make this configurable via perf flags | ||
speedy: true, | ||
}); | ||
|
||
const sheet = new StyleSheet({ | ||
key: `${cacheLtr.key}-global`, | ||
nonce: cacheLtr.sheet.nonce, | ||
container: cacheLtr.sheet.container, | ||
}); | ||
|
||
const Provider: React.FC = props => { | ||
// TODO: Find a way to cleanup global styles | ||
// React.useEffect(() => { | ||
// return () => sheet.flush(); | ||
// }); | ||
|
||
return React.createElement(React.Fragment, null, props.children); | ||
}; | ||
|
||
const renderRule: RendererRenderRule = (styles, param) => { | ||
// Emotion has a bug with passing empty objects, should be fixed in upstream | ||
if (Object.keys(styles).length === 0) { | ||
return ''; | ||
} | ||
|
||
const cache = param.direction === 'ltr' ? cacheLtr : cacheRtl; | ||
const style = param.disableAnimations ? disableAnimations(styles) : styles; | ||
const serialized = serializeStyles([invokeKeyframes(cache, style) as any], cache.registered, undefined); | ||
|
||
insertStyles(cache, serialized, true); | ||
|
||
return `${cache.key}-${serialized.name}`; | ||
}; | ||
|
||
const renderGlobal: RendererRenderGlobal = (styles, selector) => { | ||
if (typeof styles === 'string') { | ||
const serializedStyles = serializeStyles( | ||
[styles], | ||
// This looks as a bug in typings as in Emotion code this function can be used with a single param. | ||
// https://github.com/emotion-js/emotion/blob/a076e7fa5f78fec6515671b78801cfc9d6cf1316/packages/core/src/global.js#L45 | ||
// @ts-ignore | ||
undefined, | ||
); | ||
|
||
cacheLtr.insert(``, serializedStyles, sheet, false); | ||
} | ||
|
||
if (typeof styles === 'object') { | ||
if (typeof selector !== 'string') { | ||
throw new Error('A valid "selector" is required when an object is passed to "renderGlobal"'); | ||
} | ||
|
||
const serializedStyles = serializeStyles( | ||
[{ [selector]: (styles as unknown) as ObjectInterpolation<{}> }], | ||
// This looks as a bug in typings as in Emotion code this function can be used with a single param. | ||
// https://github.com/emotion-js/emotion/blob/a076e7fa5f78fec6515671b78801cfc9d6cf1316/packages/core/src/global.js#L45 | ||
// @ts-ignore | ||
null, | ||
); | ||
|
||
cacheLtr.insert(``, serializedStyles, sheet, false); | ||
} | ||
}; | ||
const renderFont: RendererRenderFont = font => { | ||
const { localAlias, ...otherProperties } = font.props; | ||
|
||
const fontLocals = getFontLocals(localAlias); | ||
const fontFamily = toCSSString(font.name); | ||
|
||
renderGlobal( | ||
{ | ||
...otherProperties, | ||
src: generateFontSource(font.paths, fontLocals), | ||
fontFamily, | ||
}, | ||
'@font-face', | ||
); | ||
}; | ||
|
||
return { | ||
renderGlobal, | ||
renderFont, | ||
renderRule, | ||
|
||
Provider, | ||
}; | ||
} |
33 changes: 33 additions & 0 deletions
33
packages/fluentui/react-northstar-emotion-renderer/src/disableAnimations.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { ICSSInJSStyle } from '@fluentui/styles'; | ||
import { isStyleObject } from './utils'; | ||
|
||
const animationProps: (keyof ICSSInJSStyle)[] = [ | ||
'animation', | ||
'animationName', | ||
'animationDuration', | ||
'animationTimingFunction', | ||
'animationDelay', | ||
'animationIterationCount', | ||
'animationDirection', | ||
'animationFillMode', | ||
'animationPlayState', | ||
]; | ||
|
||
export const disableAnimations = (styles: ICSSInJSStyle): ICSSInJSStyle => { | ||
return Object.keys(styles).reduce((acc, cssPropertyName: keyof ICSSInJSStyle) => { | ||
const cssPropertyValue = styles[cssPropertyName]; | ||
|
||
if (animationProps.indexOf(cssPropertyName as string) !== -1) { | ||
return acc; | ||
} | ||
|
||
if (isStyleObject(cssPropertyValue)) { | ||
return { | ||
...acc, | ||
[cssPropertyName]: disableAnimations(cssPropertyValue), | ||
}; | ||
} | ||
|
||
return { ...acc, [cssPropertyName]: styles[cssPropertyName] }; | ||
}, {}); | ||
}; |
Oops, something went wrong.