mirror of
https://github.com/status-im/react-native.git
synced 2025-01-28 02:04:55 +00:00
[ReactNative] Cleanup StyleSheet API
This commit is contained in:
parent
f8ab8415d5
commit
733596b67a
@ -5,19 +5,15 @@
|
|||||||
*/
|
*/
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var ImageStylePropTypes = require('ImageStylePropTypes');
|
|
||||||
var ReactPropTypeLocations = require('ReactPropTypeLocations');
|
|
||||||
var StyleSheetRegistry = require('StyleSheetRegistry');
|
var StyleSheetRegistry = require('StyleSheetRegistry');
|
||||||
var TextStylePropTypes = require('TextStylePropTypes');
|
var StyleSheetValidation = require('StyleSheetValidation');
|
||||||
var ViewStylePropTypes = require('ViewStylePropTypes');
|
|
||||||
|
|
||||||
var invariant = require('invariant');
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A StyleSheet is an abstraction similar to CSS StyleSheets
|
* A StyleSheet is an abstraction similar to CSS StyleSheets
|
||||||
*
|
*
|
||||||
* Create a new StyleSheet:
|
* Create a new StyleSheet:
|
||||||
*
|
*
|
||||||
|
* ```
|
||||||
* var styles = StyleSheet.create({
|
* var styles = StyleSheet.create({
|
||||||
* container: {
|
* container: {
|
||||||
* borderRadius: 4,
|
* borderRadius: 4,
|
||||||
@ -31,21 +27,26 @@ var invariant = require('invariant');
|
|||||||
* activeTitle: {
|
* activeTitle: {
|
||||||
* color: 'red',
|
* color: 'red',
|
||||||
* },
|
* },
|
||||||
* })
|
* });
|
||||||
|
* ```
|
||||||
*
|
*
|
||||||
* Use a StyleSheet:
|
* Use a StyleSheet:
|
||||||
*
|
*
|
||||||
|
* ```
|
||||||
* <View style={styles.container}>
|
* <View style={styles.container}>
|
||||||
* <Text style={[styles.title, this.props.isActive && styles.activeTitle]} />
|
* <Text style={[styles.title, this.props.isActive && styles.activeTitle]} />
|
||||||
* </View>
|
* </View>
|
||||||
|
* ```
|
||||||
*
|
*
|
||||||
* Code quality:
|
* Code quality:
|
||||||
|
*
|
||||||
* - By moving styles away from the render function, you're making the code
|
* - By moving styles away from the render function, you're making the code
|
||||||
* code easier to understand.
|
* code easier to understand.
|
||||||
* - Naming the styles is a good way to add meaning to the low level components
|
* - Naming the styles is a good way to add meaning to the low level components
|
||||||
* in the render function.
|
* in the render function.
|
||||||
*
|
*
|
||||||
* Performance:
|
* Performance:
|
||||||
|
*
|
||||||
* - Making a stylesheet from a style object makes it possible to refer to it
|
* - Making a stylesheet from a style object makes it possible to refer to it
|
||||||
* by ID instead of creating a new style object every time.
|
* by ID instead of creating a new style object every time.
|
||||||
* - It also allows to send the style only once through the bridge. All
|
* - It also allows to send the style only once through the bridge. All
|
||||||
@ -55,66 +56,11 @@ class StyleSheet {
|
|||||||
static create(obj) {
|
static create(obj) {
|
||||||
var result = {};
|
var result = {};
|
||||||
for (var key in obj) {
|
for (var key in obj) {
|
||||||
StyleSheet.validateStyle(key, obj);
|
StyleSheetValidation.validateStyle(key, obj);
|
||||||
result[key] = StyleSheetRegistry.registerStyle(obj[key]);
|
result[key] = StyleSheetRegistry.registerStyle(obj[key]);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
static validateStyleProp(prop, style, caller) {
|
|
||||||
if (!__DEV__) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (allStylePropTypes[prop] === undefined) {
|
|
||||||
var message1 = '"' + prop + '" is not a valid style property.';
|
|
||||||
var message2 = '\nValid style props: ' +
|
|
||||||
JSON.stringify(Object.keys(allStylePropTypes), null, ' ');
|
|
||||||
styleError(message1, style, caller, message2);
|
|
||||||
}
|
|
||||||
var error = allStylePropTypes[prop](
|
|
||||||
style,
|
|
||||||
prop,
|
|
||||||
caller,
|
|
||||||
ReactPropTypeLocations.prop
|
|
||||||
);
|
|
||||||
if (error) {
|
|
||||||
styleError(error.message, style, caller);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static validateStyle(name, styles) {
|
|
||||||
if (!__DEV__) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
for (var prop in styles[name]) {
|
|
||||||
StyleSheet.validateStyleProp(prop, styles[name], 'StyleSheet ' + name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static addValidStylePropTypes(stylePropTypes) {
|
|
||||||
for (var key in stylePropTypes) {
|
|
||||||
invariant(
|
|
||||||
allStylePropTypes[key] === undefined ||
|
|
||||||
allStylePropTypes[key] === stylePropTypes[key],
|
|
||||||
'Attemped to redefine existing style prop type "' + key + '".'
|
|
||||||
);
|
|
||||||
allStylePropTypes[key] = stylePropTypes[key];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var styleError = function(message1, style, caller, message2) {
|
|
||||||
invariant(
|
|
||||||
false,
|
|
||||||
message1 + '\n' + (caller || '<<unknown>>') + ': ' +
|
|
||||||
JSON.stringify(style, null, ' ') + (message2 || '')
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
var allStylePropTypes = {};
|
|
||||||
|
|
||||||
StyleSheet.addValidStylePropTypes(ImageStylePropTypes);
|
|
||||||
StyleSheet.addValidStylePropTypes(TextStylePropTypes);
|
|
||||||
StyleSheet.addValidStylePropTypes(ViewStylePropTypes);
|
|
||||||
|
|
||||||
module.exports = StyleSheet;
|
module.exports = StyleSheet;
|
||||||
|
72
Libraries/StyleSheet/StyleSheetValidation.js
Normal file
72
Libraries/StyleSheet/StyleSheetValidation.js
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
/**
|
||||||
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* @providesModule StyleSheetValidation
|
||||||
|
*/
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var ImageStylePropTypes = require('ImageStylePropTypes');
|
||||||
|
var ReactPropTypeLocations = require('ReactPropTypeLocations');
|
||||||
|
var TextStylePropTypes = require('TextStylePropTypes');
|
||||||
|
var ViewStylePropTypes = require('ViewStylePropTypes');
|
||||||
|
|
||||||
|
var invariant = require('invariant');
|
||||||
|
|
||||||
|
class StyleSheetValidation {
|
||||||
|
static validateStyleProp(prop, style, caller) {
|
||||||
|
if (!__DEV__) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (allStylePropTypes[prop] === undefined) {
|
||||||
|
var message1 = '"' + prop + '" is not a valid style property.';
|
||||||
|
var message2 = '\nValid style props: ' +
|
||||||
|
JSON.stringify(Object.keys(allStylePropTypes), null, ' ');
|
||||||
|
styleError(message1, style, caller, message2);
|
||||||
|
}
|
||||||
|
var error = allStylePropTypes[prop](
|
||||||
|
style,
|
||||||
|
prop,
|
||||||
|
caller,
|
||||||
|
ReactPropTypeLocations.prop
|
||||||
|
);
|
||||||
|
if (error) {
|
||||||
|
styleError(error.message, style, caller);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static validateStyle(name, styles) {
|
||||||
|
if (!__DEV__) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
for (var prop in styles[name]) {
|
||||||
|
StyleSheetValidation.validateStyleProp(prop, styles[name], 'StyleSheet ' + name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static addValidStylePropTypes(stylePropTypes) {
|
||||||
|
for (var key in stylePropTypes) {
|
||||||
|
invariant(
|
||||||
|
allStylePropTypes[key] === undefined ||
|
||||||
|
allStylePropTypes[key] === stylePropTypes[key],
|
||||||
|
'Attemped to redefine existing style prop type "' + key + '".'
|
||||||
|
);
|
||||||
|
allStylePropTypes[key] = stylePropTypes[key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var styleError = function(message1, style, caller, message2) {
|
||||||
|
invariant(
|
||||||
|
false,
|
||||||
|
message1 + '\n' + (caller || '<<unknown>>') + ': ' +
|
||||||
|
JSON.stringify(style, null, ' ') + (message2 || '')
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
var allStylePropTypes = {};
|
||||||
|
|
||||||
|
StyleSheetValidation.addValidStylePropTypes(ImageStylePropTypes);
|
||||||
|
StyleSheetValidation.addValidStylePropTypes(TextStylePropTypes);
|
||||||
|
StyleSheetValidation.addValidStylePropTypes(ViewStylePropTypes);
|
||||||
|
|
||||||
|
module.exports = StyleSheetValidation;
|
Loading…
x
Reference in New Issue
Block a user