cssinjs / jss

JSS is an authoring tool for CSS which uses JavaScript as a host language.
https://cssinjs.org
MIT License
7.07k stars 398 forks source link

[jss-ssr-vendor-prefixer] make it work on server side #279

Open kof opened 8 years ago

kof commented 8 years ago

I think the best way would be to use autoprefixer serverside. Basically a user can do it already now by passing the css generated by jss to autoprefixer, but this requires an additional build step and setup.

Lets create a separate plugin for ssr vendor prefixing to avoid unneeded dependences for people who don't need it.

typical000 commented 8 years ago

Maybe, as a solution - create a flag when initialize jss-vendor-prefixer that describes 2 modes:

  1. SSR (server-side rendering) - add all prefixes for all supported browsers. It will work like postcss-autoprefixes. But, in this case, we need additional variable on initialization - supported browsers (like in postcss-autoprefixes - object with versions of browsers)
  2. CSR (client-side rendering) - works, like now - adds prefixes only for current browser And after, in some way, detect if we create styles on server, or on client - and switch true/false this flag
kof commented 8 years ago

A good alternative to autoprefixer, may be not as feature complete - inline-style-prefixer

kof commented 8 years ago

As we support ie10+ we may not need all features of postcss autoprefixer so inline-style-prefixer may be a good alternative cc @rofrischmann

robinweser commented 8 years ago

(y) I will soon implement the Autoprefixer test suite (at least all relevant browser versions), but sadly I spill beer over my Macbook. It's still working, but I will wait for some days to let it dry completely. Feel free to add feature requests or bugs if the prefixer is missing something.

kof commented 8 years ago

We need a platform that buys open source contributors a new notebook once they loose theirs!!!

robinweser commented 8 years ago

Big companies could donate old notebooks :P But as far as I know a lot are already doing so, e.g. to open coding schools for kids, homeless people, etc.

But well, it's still working, so no worries haha :D It even is quite relaxing to have some days forced not to code. I'll ping you on Gitter as soon as I am back^^

nathanmarks commented 8 years ago

@kof

Are you still thinking of using inline-style-prefixer? This issue definitely a feature that material-ui would need to have a good solution for.

avocadowastaken commented 8 years ago

So as i get, there are two solutions for it:

  1. On server side build stylesheet for all browsers and rewrite on client side for current browser
  2. On server side build for current browser and do same on client side

Problem with first approach: Currently class names get names from stylesheet hash, so if stylesheets would be different on client and server side we will get errors from react based on wrong classnames

Problems with second approach: Common pattern with jss - is to use singleton, so inline-style-prefixer or autoprefixer plugin will be applied once to singleton, so there should be tool that will allow to render css stylesheets based on user-agent, e.g.: jss.sheets.toString(userAgent)

nathanmarks commented 8 years ago

@umidbekkarimov

Best bet for server side compatibility with changing styles is to use the factory method instead of using jss as a singleton.

I'm developing a quick prototype solution using jss right now for another project, and I've abstracted away all of the jss methods, even createStyleSheet.

avocadowastaken commented 8 years ago

@nathanmarks agree, I'm thinking about rewriting useSheet method from react-jss to work with react context and create JssProvider component to provide custom jss instance.

@kof what are you think about it?


Also I have some ideas for attaching jss sheets on server side based on https://github.com/nfl/react-helmet

kof commented 8 years ago

@nathanmarks have you looked into inline-style-prefixer, do you see any issues there?

nathanmarks commented 8 years ago

@kof the main downside is that it's a fairly large lib if you use the dynamic version. For a jss integration, It would be good for users if they could decide whether to use the dynamic or static version.

kof commented 8 years ago

I only consider using it for server-side, where size doesn't matter that much. Dynamic version will be used on the client as it is now.

nathanmarks commented 8 years ago

Would be good to test both libraries against each other for the browsers to make sure output is consistent.

kof commented 8 years ago

Yep, it should be done at some point, because otherwise someone will wonder why ssr page is displayed differently than same page rendered on the client. There will be a need to run the same test suite, but adapted for the case that client library only adds prefix for the current runtime if at all.

nathanmarks commented 8 years ago

@kof If they use the dynamic version of inline-style-prefixer server side and pass the UA string, the output should be fairly close... in an ideal world 😄

jedwards1211 commented 6 years ago

@kof seems to me like it would be cleanest if jss-vendor-prefixer and css-prefix are both able to accept a UA string, and default to trying to get one from the browser if none is given. That way you know it's the same code paths doing to prefixing for a given UA on client and server side.

kof commented 6 years ago

Using user agent string for vendor prefixing means no feature detection but agent sniffing. That is exactly what we are trying to avoid in runtime.

jedwards1211 commented 6 years ago

@kof okay, then what about using agent sniffing on the server side and feature detection on the client side? Or are you saying that the only robust approach is to apply all prefixes on the server side?

kof commented 6 years ago

UA can be used during SSR, but can't if its a build time rendered CSS, so we need to find the best route. I was thinking of static prefixing for both SSR and build time for simplicity.

eps1lon commented 5 years ago

IMO a strict mode that uses autoprefixer (and therefore uses the .browserslistrc) for purely static rendering and a loose mode that can accept UA strings for dynamic rendering would be nice. At least make the choice for the user explicit if one wants to serve a little bit more CSS to be sure or a minimal version that might be wrong (not sure what the state of UA strings is).

kof commented 5 years ago

@eps1lon that would be another interesting thing to do, but caching would be even harder.

eps1lon commented 5 years ago

@kof Is this actually an issue for server-side-rendering? Isn't the hole component tree thrown away between requests anyway which reduces the usefulness of a cache? Could you specify what should be cached in jss-vendor-prefixer?

Come to think of it it sounds like the simplest solution would be to advice users to pipe the output from jss into e.g. autprefixer. Or let them inject their own "vendor" implementation. I'll see if I can write an adapter for jss-vendor-prefixer that replaces css-vendor on the server with the help of autoprefixer.

kof commented 5 years ago

It might depend on consumer. If consumer can cache the responses, they will also have to include UA in that case and cache for each UA string separately, basically still possible, but will increase the size of the cache. We can allow it if it doesn't make maintaining it too complex.

oliviertassinari commented 5 years ago

IMHO it would be great to have two modes, exactly like we had with Material-UI v0.x.

  1. A full prefixing strategy using the project .browserslistrc, agnostic of the actual browser that requests the resource. It comes at a cost, the generated CSS is larger. But it also comes with a massive advantage. When caching, you don't have to take the browser into account. I believe it's what styled-components and emotion are doing. It's what we do with the Material-UI documentation website.
  2. A per browser caching. Basically having the opposite pros and cons of the 1st solution.

These two modes are fundamentally using a different tradeoff. I think that they both of their use cases.

kof commented 5 years ago

@oliviertassinari its possible. The most important thing for SSR vendor prefixing is performance, many cases won't be able to cache the final result. I don't think autoprefixer over postcss will perform well in that case.

So ideally, we get something that works well without caching. If caching is possible it won't hurt. But autoprefixer without being able to cache will be probably really slow.

eps1lon commented 5 years ago

It's unfortunately not as simple as writing a server side implementation of css-vendor since jss-plugin-vendor-prefixer works under the assumption that an existing property is only changed. If we would pass a browserslist it might however be necessary to expand a given property. So it might be viable for a single browser but not for a list of browsers. Since I don't think UA sniffing is a viable option I will just use autoprefixer on the server and jss-plugin-vendor-prefixer on the client.