Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/discountry/vscode-react-redux-react-router-snippets
vscode-react-redux-react-router-snippets
https://github.com/discountry/vscode-react-redux-react-router-snippets
react vscode-extension
Last synced: 3 months ago
JSON representation
vscode-react-redux-react-router-snippets
- Host: GitHub
- URL: https://github.com/discountry/vscode-react-redux-react-router-snippets
- Owner: discountry
- License: mit
- Created: 2017-06-11T07:52:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-05-13T08:25:10.000Z (over 1 year ago)
- Last Synced: 2024-10-03T12:42:06.944Z (4 months ago)
- Topics: react, vscode-extension
- Homepage: https://marketplace.visualstudio.com/items?itemName=discountry.react-redux-react-router-snippets
- Size: 359 KB
- Stars: 31
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# React/Redux/react-router Snippets [![CircleCI](https://circleci.com/gh/discountry/vscode-react-redux-react-router-snippets.png?&style=shield&circle-token=4990f08c5270b362bff93b456ff0df4ec4d62796)](https://circleci.com/gh/discountry/vscode-react-redux-react-router-snippets/tree/master)
[![Version](https://vsmarketplacebadges.dev/version/discountry.react-redux-react-router-snippets.svg)](https://marketplace.visualstudio.com/items?itemName=discountry.react-redux-react-router-snippets)
[![Install](https://vsmarketplacebadges.dev/installs/discountry.react-redux-react-router-snippets.svg)](https://marketplace.visualstudio.com/items?itemName=discountry.react-redux-react-router-snippets)
[![Ratings](https://vsmarketplacebadges.dev/rating-short/discountry.react-redux-react-router-snippets.svg)](https://marketplace.visualstudio.com/items?itemName=discountry.react-redux-react-router-snippets)Useful React Ecosystem snippets for [Visual Studio Code](https://code.visualstudio.com/), including:
* Quick import
* React
* Redux
* react-redux
* react-router## Screenshot
![Screenshot](images/screenshot.gif)
## Usage
### import
| Trigger | Content |
| -------: | ------- |
| `imr` | `import React from 'react'` |
| `imrc` | `import React, { Component } from 'react'` |
| `imd` | `import { render } from 'react-dom'` |
| `impt` | `import PropTypes from 'prop-types'` |
| `imc` | `import ${1:componentName} from './Components/${1:componentName}'` |
| `imconnect` | `import { connect } from 'react-redux'` |
| `improvider` | `import { Provider } from 'react-redux'` |
| `imcreateSelector` | `import { createSelector } from 'reselect'` |
| `imrr` | `import { BrowserRouter, Route } from 'react-router-dom'` |
| `imnl` | `import { NavLink } from 'react-router-dom'` |
| `imwr` | `import { withRouter } from 'react-router-dom'` |### React
| Trigger | Content |
| -------: | ------- |
| `rcc→` | class component skeleton |
| `rccp→` | class component skeleton with prop types after the class |
| `rcjc→` | class component skeleton without import and default export lines |
| `rcfc→` | class component skeleton that contains all the lifecycle methods |
| `rsc→` | stateless component skeleton |
| `rscp→` | stateless component with prop types skeleton |
| `rpt→` | empty propTypes declaration |
| `spt→` | `static propTypes = {}` |
| `sdp→` | `static defaultProps = {}` |
| `con→` | class default constructor with props|
| `conc→` | class default constructor with props and context |
| `est→` | empty state object |
| `st→` | Creates empty state object with ES7 synTax |
| `cwm→` | `componentWillMount` method |
| `cdm→` | `componentDidMount` method |
| `cwr→` | `componentWillReceiveProps` method |
| `scu→` | `shouldComponentUpdate` method |
| `cwup→` | `componentWillUpdate` method |
| `cdup→` | `componentDidUpdate` method |
| `cwun→` | `componentWillUnmount` method |
| `cdc→` | `componentDidCatch` method |
| `ren→` | `render` method |
| `sst→` | `this.setState` with object as parameter |
| `ssf→` | `this.setState` with function as parameter |
| `props→` | `this.props` |
| `state→` | `this.state` |
| `bnd→` | `binds the this of method inside the constructor` |
| `pta→` | `PropTypes.array,` |
| `ptar→` | `PropTypes.array.isRequired,` |
| `ptb→` | `PropTypes.bool,` |
| `ptbr→` | `PropTypes.bool.isRequired,` |
| `ptf→` | `PropTypes.func,` |
| `ptfr→` | `PropTypes.func.isRequired,` |
| `ptn→` | `PropTypes.number,` |
| `ptnr→` | `PropTypes.number.isRequired,` |
| `pto→` | `PropTypes.object.,` |
| `ptor→` | `PropTypes.object.isRequired,` |
| `pts→` | `PropTypes.string,` |
| `ptsr→` | `PropTypes.string.isRequired,` |
| `ptnd→` | `PropTypes.node,` |
| `ptndr→` | `PropTypes.node.isRequired,` |
| `ptel→` | `PropTypes.element,` |
| `ptelr→` | `PropTypes.element.isRequired,` |
| `pti→` | `PropTypes.instanceOf(ClassName),` |
| `ptir→` | `PropTypes.instanceOf(ClassName).isRequired,` |
| `pte→` | `PropTypes.oneOf(['News', 'Photos']),` |
| `pter→` | `PropTypes.oneOf(['News', 'Photos']).isRequired,` |
| `ptet→` | `PropTypes.oneOfType([PropTypes.string, PropTypes.number]),` |
| `ptetr→` | `PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,` |
| `ptao→` | `PropTypes.arrayOf(PropTypes.number),` |
| `ptaor→` | `PropTypes.arrayOf(PropTypes.number).isRequired,` |
| `ptoo→` | `PropTypes.objectOf(PropTypes.number),` |
| `ptoor→` | `PropTypes.objectOf(PropTypes.number).isRequired,` |
| `ptsh→` | `PropTypes.shape({color: PropTypes.string, fontSize: PropTypes.number}),` |
| `ptshr→` | `PropTypes.shape({color: PropTypes.string, fontSize: PropTypes.number}).isRequired,` |### Redux
| Trigger | Content |
| -------: | ------- |
| `rat` | Redux constant(actionTypes) |
| `rac` | Redux actionCreator |
| `reducer` | Redux reducer |
| `store` | Redux store |
| `selector` | Redux selector |### react-redux
| Trigger | Content |
| -------: | ------- |
| `imconnect` | `import { connect } from 'react-redux'` |
| `improvider` | `import { Provider } from 'react-redux'` |
| `provider` | react-redux Provider Container |
| `mstp` | mapStateToProps |
| `mdtp` | mapDispatchToProps |
| `connect` | react-redux connect React Component |
| `container` | Redux container |### react-router
| Trigger | Content |
| -------: | ------- |
| `imrr` | `import { BrowserRouter as Router, Route } from 'react-router-dom'` |
| `imnl` | `import { NavLink } from 'react-router-dom'` |
| `imwr` | `import { withRouter } from 'react-router'` |
| `router` | react-router Router template |
| `route` | react-router Route component |
| `navlink` | react-router NavLink component |## Contributors
* [YutHelloWorld](https://github.com/YutHelloWorld)
## Acknowledgments
* [Reactjs code snippets](https://marketplace.visualstudio.com/items?itemName=xabikos.ReactSnippets)
* [React-Native/React/Redux snippets for es6/es7](https://marketplace.visualstudio.com/items?itemName=EQuimper.react-native-react-redux)
* [React Redux ES6 Snippets](https://marketplace.visualstudio.com/items?itemName=timothymclane.react-redux-es6-snippets)
* [redux-snippets](https://marketplace.visualstudio.com/items?itemName=jameshrisho.redux-snippets)## License
[MIT](LICENSE)