Don't work well with production build of React
When using aphrodite with production build of React, the style extensions are doesn't works well.
Some of exported styles areObject
.
I can't find out the solution of this problem.
Environment
- Aphrodite@0.5.6
- React@16.4.1
- TypeScript@2.7.1
Code
import { StyleSheet } from 'aphrodite/no-important'
const GLOBALS = '__GLOBAL_STYLES__'
const globalExtension = {
selectorHandler: (selector: string, baseSelector: string, generateSubtreeStyles: any) =>
baseSelector.includes(GLOBALS) ? generateSubtreeStyles(selector) : null)
}
// @ts-ignore
const extended = StyleSheet.extend([globalExtension])
// normalize
const styles = extended.StyleSheet.create({
[GLOBALS]: {
html: {
...styles...
},
}
})
export default extended.css(styles[GLOBALS])
CASE: Development build
html{height:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-
style:scrollbar;-webkit-tap-highlight-color:transparent;}body{height:100%;font-size:1rem;font-
family:"Gotham SSm A","Gotham SSm B",-apple-system,BlinkMacSystemFont,Hiragino Sans,"Hiragino
Kaku Gothic ProN","Original Yu Gothic","Yu Gothic",Meiryo,sans-serif;font-
weight:normal;margin:0px;text-align:left;background-color:white;color:#3B434B;overflow-
y:scroll;}#main{height:100%;}*, *::before, *::after{-moz-box-sizing:border-box;box-sizing:border-
box;}h1, h2, h3, h4, h5, h6{line-height:1.25;margin:0px;margin-bottom:1em;}ul{list-
style:none;padding:0px;margin:0px;}p{font-size:.875rem;line-height:1.75;margin:0px;margin-
bottom:1em;}@media (min-width: 992px){p{font-size:1rem;}}a{text-decoration:none;}a,
button{outline:none;}table{border-collapse:collapse;}img{vertical-align:middle;}
CASE: Production build
._ul6ryz{html:[object Object];body:[object Object];#main:[object Object];*, *::before, *::after:[object
Object];h1, h2, h3, h4, h5, h6:[object Object];ul:[object Object];p:[object Object];a:[object Object];a,
button:[object Object];table:[object Object];img:[object Object];}._1owj03d{background-
image:url("/assets/images/backgrounds/onbord.jpg") !important;}.om:...
reactjs aphrodite
add a comment |
When using aphrodite with production build of React, the style extensions are doesn't works well.
Some of exported styles areObject
.
I can't find out the solution of this problem.
Environment
- Aphrodite@0.5.6
- React@16.4.1
- TypeScript@2.7.1
Code
import { StyleSheet } from 'aphrodite/no-important'
const GLOBALS = '__GLOBAL_STYLES__'
const globalExtension = {
selectorHandler: (selector: string, baseSelector: string, generateSubtreeStyles: any) =>
baseSelector.includes(GLOBALS) ? generateSubtreeStyles(selector) : null)
}
// @ts-ignore
const extended = StyleSheet.extend([globalExtension])
// normalize
const styles = extended.StyleSheet.create({
[GLOBALS]: {
html: {
...styles...
},
}
})
export default extended.css(styles[GLOBALS])
CASE: Development build
html{height:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-
style:scrollbar;-webkit-tap-highlight-color:transparent;}body{height:100%;font-size:1rem;font-
family:"Gotham SSm A","Gotham SSm B",-apple-system,BlinkMacSystemFont,Hiragino Sans,"Hiragino
Kaku Gothic ProN","Original Yu Gothic","Yu Gothic",Meiryo,sans-serif;font-
weight:normal;margin:0px;text-align:left;background-color:white;color:#3B434B;overflow-
y:scroll;}#main{height:100%;}*, *::before, *::after{-moz-box-sizing:border-box;box-sizing:border-
box;}h1, h2, h3, h4, h5, h6{line-height:1.25;margin:0px;margin-bottom:1em;}ul{list-
style:none;padding:0px;margin:0px;}p{font-size:.875rem;line-height:1.75;margin:0px;margin-
bottom:1em;}@media (min-width: 992px){p{font-size:1rem;}}a{text-decoration:none;}a,
button{outline:none;}table{border-collapse:collapse;}img{vertical-align:middle;}
CASE: Production build
._ul6ryz{html:[object Object];body:[object Object];#main:[object Object];*, *::before, *::after:[object
Object];h1, h2, h3, h4, h5, h6:[object Object];ul:[object Object];p:[object Object];a:[object Object];a,
button:[object Object];table:[object Object];img:[object Object];}._1owj03d{background-
image:url("/assets/images/backgrounds/onbord.jpg") !important;}.om:...
reactjs aphrodite
add a comment |
When using aphrodite with production build of React, the style extensions are doesn't works well.
Some of exported styles areObject
.
I can't find out the solution of this problem.
Environment
- Aphrodite@0.5.6
- React@16.4.1
- TypeScript@2.7.1
Code
import { StyleSheet } from 'aphrodite/no-important'
const GLOBALS = '__GLOBAL_STYLES__'
const globalExtension = {
selectorHandler: (selector: string, baseSelector: string, generateSubtreeStyles: any) =>
baseSelector.includes(GLOBALS) ? generateSubtreeStyles(selector) : null)
}
// @ts-ignore
const extended = StyleSheet.extend([globalExtension])
// normalize
const styles = extended.StyleSheet.create({
[GLOBALS]: {
html: {
...styles...
},
}
})
export default extended.css(styles[GLOBALS])
CASE: Development build
html{height:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-
style:scrollbar;-webkit-tap-highlight-color:transparent;}body{height:100%;font-size:1rem;font-
family:"Gotham SSm A","Gotham SSm B",-apple-system,BlinkMacSystemFont,Hiragino Sans,"Hiragino
Kaku Gothic ProN","Original Yu Gothic","Yu Gothic",Meiryo,sans-serif;font-
weight:normal;margin:0px;text-align:left;background-color:white;color:#3B434B;overflow-
y:scroll;}#main{height:100%;}*, *::before, *::after{-moz-box-sizing:border-box;box-sizing:border-
box;}h1, h2, h3, h4, h5, h6{line-height:1.25;margin:0px;margin-bottom:1em;}ul{list-
style:none;padding:0px;margin:0px;}p{font-size:.875rem;line-height:1.75;margin:0px;margin-
bottom:1em;}@media (min-width: 992px){p{font-size:1rem;}}a{text-decoration:none;}a,
button{outline:none;}table{border-collapse:collapse;}img{vertical-align:middle;}
CASE: Production build
._ul6ryz{html:[object Object];body:[object Object];#main:[object Object];*, *::before, *::after:[object
Object];h1, h2, h3, h4, h5, h6:[object Object];ul:[object Object];p:[object Object];a:[object Object];a,
button:[object Object];table:[object Object];img:[object Object];}._1owj03d{background-
image:url("/assets/images/backgrounds/onbord.jpg") !important;}.om:...
reactjs aphrodite
When using aphrodite with production build of React, the style extensions are doesn't works well.
Some of exported styles areObject
.
I can't find out the solution of this problem.
Environment
- Aphrodite@0.5.6
- React@16.4.1
- TypeScript@2.7.1
Code
import { StyleSheet } from 'aphrodite/no-important'
const GLOBALS = '__GLOBAL_STYLES__'
const globalExtension = {
selectorHandler: (selector: string, baseSelector: string, generateSubtreeStyles: any) =>
baseSelector.includes(GLOBALS) ? generateSubtreeStyles(selector) : null)
}
// @ts-ignore
const extended = StyleSheet.extend([globalExtension])
// normalize
const styles = extended.StyleSheet.create({
[GLOBALS]: {
html: {
...styles...
},
}
})
export default extended.css(styles[GLOBALS])
CASE: Development build
html{height:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-
style:scrollbar;-webkit-tap-highlight-color:transparent;}body{height:100%;font-size:1rem;font-
family:"Gotham SSm A","Gotham SSm B",-apple-system,BlinkMacSystemFont,Hiragino Sans,"Hiragino
Kaku Gothic ProN","Original Yu Gothic","Yu Gothic",Meiryo,sans-serif;font-
weight:normal;margin:0px;text-align:left;background-color:white;color:#3B434B;overflow-
y:scroll;}#main{height:100%;}*, *::before, *::after{-moz-box-sizing:border-box;box-sizing:border-
box;}h1, h2, h3, h4, h5, h6{line-height:1.25;margin:0px;margin-bottom:1em;}ul{list-
style:none;padding:0px;margin:0px;}p{font-size:.875rem;line-height:1.75;margin:0px;margin-
bottom:1em;}@media (min-width: 992px){p{font-size:1rem;}}a{text-decoration:none;}a,
button{outline:none;}table{border-collapse:collapse;}img{vertical-align:middle;}
CASE: Production build
._ul6ryz{html:[object Object];body:[object Object];#main:[object Object];*, *::before, *::after:[object
Object];h1, h2, h3, h4, h5, h6:[object Object];ul:[object Object];p:[object Object];a:[object Object];a,
button:[object Object];table:[object Object];img:[object Object];}._1owj03d{background-
image:url("/assets/images/backgrounds/onbord.jpg") !important;}.om:...
reactjs aphrodite
reactjs aphrodite
asked Nov 22 '18 at 8:13
daisukeodadaisukeoda
11
11
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53426458%2fdont-work-well-with-production-build-of-react%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53426458%2fdont-work-well-with-production-build-of-react%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown