react-native-snippets
:pencil2: A collection of React Native snippets for Sublime Text and Atom
Details
Installs
- Total 54K
- Win 24K
- Mac 24K
- Linux 7K
| Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
| Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
| Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
[Looking for Maintainer] react-native-snippets
A collection of React Native snippets for Sublime Text and Atom.
These snippets use ES6/7 syntax.
Install
Install by searching for react-native-snippets in Package Control
For Atom, search for react-native-snippets-horse in the Atom Package Manager.
Snippets
| Snippet | Tab Trigger | Description |
|---|---|---|
| React Native Create Class | rncc | Scaffolds a full react-native component class. |
| React Native Create Stateless Function | rnstf | Scaffolds a stateless function. |
| this.setState() | tss | |
| Create StyleSheet | css | Scaffolds a StyleSheet-only module. |
| StyleSheet.create() | ssc | Shortcut for creating a StyleSheet inline. |
| React.PropTypes. | rpt | |
| export default | ed |
Lifecycle Methods
| Snippet | Tab Trigger |
|---|---|
| constructor() | constructor() |
| componentWillMount() | cwm |
| componentDidMount() | cdm |
| componentWillUnMount() | cwum |
| componentDidUnMount() | cdum |
| componentWillUpdate() | cwud |
| componentDidUpdate() | cdud |
| componentWillReceiveProps() | cwrp |
| shouldComponentUpdate() | scud |
| static propTypes = {} | propTypes |
| static defaultProps = {} | defaultProps |
| flex: 1 | f1 |
| alignItems: ‘center’ | ai |
| justifyContent: ‘center’ | jc |
Components
| Snippet | Tab Trigger |
|---|---|
| ActivityIndicatorIOS | rnActivityIndicatorIOS |
| DatePickerIOS | rnDatePickerIOS |
| Image | rnImage |
| ListView | rnListView |
| Navigator | rnNavigator |
| NavigatorIOS | rnNavigatorIOS |
| PickerIOS | rnPickerIOS |
| Text | rnText |
| TouchableHighlight | rnTouchableHighlight |
| View | rnView |
Some snippets heavily inspired by sublime-react.
TODO
- Flow Type Checking Annotations
Contributing
- Create your snippet.
- Postfix your snippets with
_react_native. - Generate the Atom snippet file (
make install && make atom) - Add them to the README
- Submit a Pull Request
- ???
- Profit!
Try to make your snippet tab triggers follow a syllable-based fuzzy-search style. For example for componentWillUpdate(), cwud is preferred over cwup.
LICENSE
MIT, see LICENSE