question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Request for Comment: StyleSheet Vendor Prefix

See original GitHub issue

I have been deep in the rabbit hole creating custom components that are native bridges. On some controls I have new style definitions. I want the adopters of the components to use them like first class citizens and not end up in proptype hell.

The last hurdle I have (everything works great with exception to this) is StyleSheet.create(). I have found no way to register the new style property types with StyleSheet. It also appears that if there was a way, it would introduce a race condition. If a style was imported before the component was it would fail.

What are your thoughts on the introduction of vendor prefixes. StyleSheet would skip validation of any prefixed property. To illustrate:

React View:

let styles = StyleSheet.create({
   body: { 
        flex: 1,
        backgroundColor: '#fff'
   }
});

Cinecove View:

let styles = StyleSheet.create({
     body: {
          flex: 1,
          backgroundColor: '#fff', // used if thrown in to a react view
          '-cine-backgroundColor': 'linear-gradient(to bottom right, red, rgba(0,0,0,0))'
     }
});

In the above example StyleSheet would skip validation of ‘-cine-backgroundColor’ and that style would be ignored by any component not understanding it. Working just like vendor prefixes in the browsers. It allows for these properties to be stored where they belong, in the stylesheet… because this is just a bad experience:

render() {
   let { '-cine-backgroundColor' as bg, ...otherStyles } = styles.body;
   return (
       <CineView styles={{...otherStyle}} backgroundColor={{bg}} />
   );
}

This is already working (it’s just StyleSheet that is in the way)

render() {
     return (
          <CineView styles={{ flex: 1, backgroundColor: '#fff', '-cine-backgroundColor': 'linear-gradient(to bottom right, red, rgba(0,0,0,0))' }} />
     );
}

Any suggestions, comments? Really would like to see this or another solution happen here. Willing to add it myself to the framework.

Thanks

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Reactions:1
  • Comments:8 (5 by maintainers)

github_iconTop GitHub Comments

3reactions
brentvatnecommented, Aug 27, 2016

I think the solution I’d prefer to see here to the specific example given is to add support for linear-gradient to the backgroundColor style of View, rather than create a vendor prefix to get around it not existing currently.

As for the general issue of vendor prefixes, I think they are useful in a world where multiple platforms implement the same property slightly differently while experimenting, in order to give the app developer a way to ensure they can get the behaviour they want on each platform despite different APIs / behaviours. I don’t think this is really the case for React Native, and if it is, we should change the properties behave the same, and we can do it at a faster pace than web browsers.

So, I’m not personally in favour of adding vendor prefixes to React Native. As a side note, If we were to do it, I think that rather than using the -vendor-prefix we should make it play more nicely as a JS object key, so propertyNameVendor (eg: somePropIOS, consistent with what is already done for components) or vendorPropertyName.

I’m not against adding support for new styles, though – @janicduplessis’ suggestion should work. With this, you could name the styles whatever you want, so if you’d like to do vendor prefixes then that is possible. What do you think @victoriafrench?

3reactions
janicduplessiscommented, Aug 26, 2016

Another alternative I can think of is to defer style validation after modules initialization using something like setImmediate this way you can register the custom style props with StyleSheetValidation.addValidStylePropTypes and it would avoid the require order race condition. This also allow validating your custom style props.

cc @vjeux @brentvatne

Read more comments on GitHub >

github_iconTop Results From Across the Web

How To Deal With Vendor Prefixes - CSS-Tricks
There are plenty of different ways to deal with vendor prefixes in CSS as part of your workflow. It depends on if you...
Read more >
Request for Comment: StyleSheet Vendor Prefix - React Native
Request for Comment : StyleSheet Vendor Prefix. Nicolas Charpentier. Moved from https://github.com/facebook/react-native/issues/9609 · November 13, 2016.
Read more >
Explain CSS vendor prefixes - GeeksforGeeks
A vendor prefix is a special prefix that is added to a CSS property. Each rendering engine has its own prefix which will...
Read more >
CSS Vendor Prefixes and Flags - the new code
Prefixed code complicates stylesheets, making CSS more difficult to build. Researching which browser versions need prefixes adds significantly ...
Read more >
Enable vendor prefix autocomplete in CSS files in Visual ...
I have been using css-auto-prefix plugin. For most of the CSS3 properties it works fine. Though ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found