Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zrna/javascript-vscode-extension
</> Visual Studio Code extension for JavaScript, TypeScript, ReactJS and Redux
https://github.com/zrna/javascript-vscode-extension
extension javascript react-redux reactjs redux snippets typescript visual-studio-code
Last synced: 25 days ago
JSON representation
</> Visual Studio Code extension for JavaScript, TypeScript, ReactJS and Redux
- Host: GitHub
- URL: https://github.com/zrna/javascript-vscode-extension
- Owner: Zrna
- Created: 2019-01-31T15:10:13.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-11-08T19:05:33.000Z (almost 4 years ago)
- Last Synced: 2023-10-20T08:07:28.421Z (about 1 year ago)
- Topics: extension, javascript, react-redux, reactjs, redux, snippets, typescript, visual-studio-code
- Homepage: https://marketplace.visualstudio.com/items?itemName=lzrnic.javascript-vscode-extension
- Size: 24.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# JS/TS/ReactJS/Redux snippets
This extension provides snippets for JavaScript, TypeScript, ReactJS and Redux which will help you with everyday needs for commands.
![Version](https://vsmarketplacebadge.apphb.com/version-short/lzrnic.javascript-vscode-extension.svg)
![Downloads](https://vsmarketplacebadge.apphb.com/downloads-short/lzrnic.javascript-vscode-extension.svg)
Here is direct link to marketplace [JS/TS/ReactJS/Redux snippets](https://marketplace.visualstudio.com/items?itemName=lzrnic.javascript-vscode-extension)
More snippets will come soon!
## Supported
- JavaScript (.js and .jsx)
- React JS
- TypeScript (.ts and .tsx)
- Redux
- Redux Toolkit## Release Notes
Current version is 1.0.4 [08 Nov 2020]
## Author
Luka Zrnić
## Basic Methods
| Prefix | Description |
| --------- | ------------------------------------------------------- |
| `csl→` | Creates default `console.log(value);` |
| `cse→` | Creates default `console.error(value);` |
| `cslt→` | Creates default `console.log('text', value);` with text |
| `func→` | Creates default function |
| `fp1→` | Creates function with **1** parameter |
| `fp2→` | Creates function with **2** parameters |
| `arrf→` | Creates default arrow function |
| `afp1→` | Creates arrow function with **1** parameter |
| `afp2→` | Creates arrow function with **2** parameters |
| `objC→` | Creates `const object` with one _name:value_ pair |
| `objL→` | Creates `let object` with one _name:value_ pair |
| `objV→` | Creates `var object` with one _name:value_ pair |
| `ifs→` | Creates _if_ statement |
| `ifel→` | Creates _if/else_ statement |
| `ifelif→` | Creates _if/else if/else_ statement |
| `swca→` | Switch case with _2 cases_ |
| `floop→` | Creates default _for_ loop |
| `wloop→` | Creates default _while_ loop |
| `dwloop→` | Creates default _do/while_ loop |## Redux
| Prefix | Description |
| ------- | ------------------------------- |
| `rdat→` | Creates `const` for Action type |
| `rdac→` | Creates Redux Action |
| `rdr→` | Creates Redux Reducer |
| `rdcr→` | Creates Redux Combine Reducers |
| `rds→` | Creates Redux Store |### react-redux
| Prefix | Description |
| --------- | ---------------------------------------------------------- |
| `imrrdc→` | `import { connect } from 'react-redux';` |
| `imrrdp→` | `import { Provider } from 'react-redux';` |
| `mstp→` | Creates `const mapStateToProps = (state) => { ... }` |
| `mdtp→` | Creates `const mapDispatchToProps = (dispatch) => { ... }` |## React
| Prefix | Description |
| -------- | ----------------------------------------------------------------------- |
| `imr→` | `import React from 'react';` |
| `imrd→` | `import ReactDOM from 'react-dom';` |
| `imrc→` | `import React, { Component } from 'react';` |
| `imcc→` | `import ComponentName from 'ComponentLocation';` |
| `imrpc→` | `import React, { PureComponent } from 'react';` |
| `cst→` | `state = { key: value }` |
| `cdm→` | `componentDidMount = () => { // do something }` |
| `cwm→` | `componentWillMount = () => { // do something }` |
| `cwun→` | `componentWillUnmount = () => { // do something }` |
| `cwrp→` | `componentWillReceiveProps = (nextProps) => { // do something }` |
| `scup→` | `shouldComponentUpdate = (nextProps, nextState) => { // do something }` |
| `cwup→` | `componentWillUpdate = (nextProps, nextState) => { // do something }` |
| `cdup→` | `componentDidUpdate = (prevProps, prevState) => { // do something }` |## React Hooks
| Prefix | Description |
| -------- | ------------------------------------------------------------------- |
| `rush→` | `const [name, setName] = useState();` |
| `rueh→` | `useEffect(() => { });` |
| `rurh→` | `const refName = useRef();` |
| `ruch→` | `const value = useContext();` |
| `rumh→` | `const memoizedValue = useMemo(() => computeExpensiveValue(), []);` |
| `rucbh→` | `const name = useCallback(() => { }, []);` |
| `rudbh→` | `useDebugValue(value);` |## React Components
### Class Component
### `rcc`
```javascript
import React, { Component } from 'react';class CLassName extends Component {
render() {
return;
}
}export default ClassName;
```### Functional Component
### `rfc`
```javascript
import React from 'react';const ComponentName = () => {
return;
};export default ComponentName;
```## Redux Toolkit
### Create Action
### `rtca`
```javascript
import { createAction } from '@reduxjs/toolkit';const name = createAction('action/type');
```### Create Reducer
### `rtcr`
```javascript
import { createAction, createReducer } from '@reduxjs/toolkit';const name = createAction('action/type');
const initialState = {};
const reducerName = createReducer(initialState, builder => {
builder.addCase(name, (state, action) => {
// ...
});
});
```### Create Slice
### `rtcs`
```javascript
import { createSlice } from '@reduxjs/toolkit';const initialState = {};
export const sliceName = createSlice({
name: 'name',
initialState,
reducers: {
name: (state, action) => {
// ...
},
},
});export const { name } = sliceName.actions;
export default sliceName.reducer;
```### Configure Store
### `rts`
```javascript
import { configureStore } from '@reduxjs/toolkit';import reducer from 'location';
export default configureStore({
reducerName: reducer,
});
```