-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(react-formio): move all related redux actions to @tsed/react-for…
…mio-stores BREAKING-CHANGE: use `@tsed/react-formio-stores` to import redux actions
- Loading branch information
Showing
112 changed files
with
347 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/react-formio-container/src/hooks/useSubmissions.hook.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
DISABLE_NEW_JSX_TRANSFORM=true | ||
SKIP_PREFLIGHT_CHECK=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
**/node_modules | ||
docs | ||
docs-references | ||
**/lib | ||
**/build | ||
**/dist | ||
**/coverage | ||
**/.nyc_output | ||
**/node_modules | ||
*-lock.json | ||
*.lock | ||
benchmarks.* | ||
**/generated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module.exports = { | ||
extends: [require.resolve("@tsed/config/eslint/web")], | ||
rules: { | ||
"import/no-anonymous-default-export": 0, | ||
"jsx-a11y/no-autofocus": 1 | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"statements": 69.09, | ||
"branches": 49.84, | ||
"functions": 62.46, | ||
"lines": 67.89 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
...require("@tsed/config/jest/jest.web.config.js"), | ||
coverageThreshold: { | ||
global: require("./coverage.json") | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"name": "@tsed/react-formio-stores", | ||
"version": "1.14.1", | ||
"description": "Provide redux stores and action around formio.js API. Written in TypeScript.", | ||
"main": "dist/index.js", | ||
"module": "dist/index.modern.js", | ||
"source": "src/index.ts", | ||
"license": "MIT", | ||
"scripts": { | ||
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"", | ||
"lint:fix": "yarn lint --fix", | ||
"test": "cross-env NODE_ENV=test jest --coverage", | ||
"test:coverage:update": "write-coverage", | ||
"build": "microbundle --no-compress --format modern,cjs --jsx React.createElement --jsxFragment React.Fragment --globals react/jsx-runtime=jsx", | ||
"watch": "microbundle watch --no-compress --format modern,cjs --jsx React.createElement --jsxFragment React.Fragment --globals react/jsx-runtime=jsx" | ||
}, | ||
"dependencies": { | ||
"@tsed/redux-utils": "1.14.1", | ||
"@tsed/react-formio": "1.14.1", | ||
"eventemitter2": "^6.4.3", | ||
"prop-types": "^15.7.2" | ||
}, | ||
"peerDependencies": { | ||
"@formio/choices.js": ">=9.0.1", | ||
"formiojs": ">=4.0.0", | ||
"lodash": ">=4.17.20", | ||
"prop-types": ">=15.7.2", | ||
"react": ">=16.14.0", | ||
"react-dom": ">=16.14.0", | ||
"react-table": ">=7.6.3", | ||
"tooltip.js": ">=1.3.3" | ||
}, | ||
"devDependencies": { | ||
"@tsed/tailwind": "1.14.1", | ||
"@tsed/tailwind-formio": "1.14.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
<p style="text-align: center" align="center"> | ||
<a href="https://tsed.io" target="_blank"><img src="https://tsed.io/tsed-og.png" width="200" alt="Ts.ED logo"/></a> | ||
</p> | ||
|
||
<div align="center"> | ||
|
||
<h1>Ts.ED - React Formio stores</h1> | ||
|
||
[![Build & Release](https://github.com/tsedio/tsed-formio/actions/workflows/build.yml/badge.svg)](https://github.com/tsedio/tsed-formio/actions/workflows/build.yml) | ||
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) | ||
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier) | ||
[![backers](https://opencollective.com/tsed/tiers/badge.svg)](https://opencollective.com/tsed) | ||
|
||
</div> | ||
|
||
<div align="center"> | ||
<a href="https://tsed.io/">Website</a> | ||
<span> • </span> | ||
<a href="https://tsed.io/tutorials/prisma.html">Tutorial</a> | ||
<span> • </span> | ||
<a href="https://api.tsed.io/rest/slack/tsedio/tsed">Slack</a> | ||
<span> • </span> | ||
<a href="https://twitter.com/TsED_io">Twitter</a> | ||
</div> | ||
|
||
<hr /> | ||
|
||
A [React](http://facebook.github.io/react/) library for rendering out forms based on the [Form.io](https://www.form.io) | ||
platform. | ||
|
||
This module is based on the original [react-formio](https://github.com/formio/react-formio) and add extra features | ||
listed above. | ||
|
||
See our [storybook](https://formio.tsed.io/) to see all available components. | ||
|
||
## Install | ||
|
||
`@tsed/react-formio-stores` can be used on the server, or bundled for the client using an | ||
npm-compatible packaging system such as [Browserify](http://browserify.org/) or | ||
[webpack](http://webpack.github.io/). | ||
|
||
```bash | ||
npm install @tsed/react-formio @tsed/react-formio-stores react-table --save | ||
npm install formiojs @formio/choices.js --save // Install formiojs since it is a peerDependency | ||
``` | ||
|
||
## Usage | ||
|
||
`@tsed/react-formio-stores` contain Redux actions, reducers and selectors to simplify the API requests made for `form.io` forms. | ||
reducers, actions and selectors. | ||
The following reducers have names: | ||
|
||
- formsReducers: manage the forms, | ||
- formReducers: manage the current form, | ||
- submissionsReducers: manage the submissions of a form. | ||
- submissionReducers: manage the current submission of a form | ||
|
||
This provides namespaces so the same actions and reducers can be re-used within the same redux state. | ||
|
||
In addition, the package provides the follwing reducers | ||
|
||
- actionsReducers: Manage actions of a form. | ||
- actionReducers: Manage the current action of a form. | ||
- actionInfoReducers: Manage the available actions for all forms and resources. | ||
- authReducers: Manage formio authentication. | ||
|
||
By default, `@tsed/react-formio-stores` provides defaults combined reducers as following: | ||
|
||
```typescript | ||
export const defaultFormioReducer = combine( | ||
authReducer, | ||
actionsReducer, | ||
actionReducer, | ||
actionInfoReducer, | ||
formReducer("form"), | ||
formsReducer("forms", { query: { type: "form" } }), | ||
formReducer("resource"), | ||
formsReducer("resources", { query: { type: "resource" } }), | ||
submissionReducer("submission"), | ||
submissionsReducer("submissions") | ||
); | ||
``` | ||
|
||
This `defaultFormioReducer` can be added and configured in your rootReducer as following : | ||
|
||
```typescript | ||
import { combine } from "@tsed/redux-utils"; | ||
import { defaultFormioReducer, formsReducer } from "@tsed/react-formio-stores"; | ||
import { connectRouter } from "connected-react-router"; | ||
import { combineReducers } from "redux"; | ||
|
||
export const rootReducers = (history: any) => | ||
combineReducers({ | ||
router: connectRouter(history), | ||
...defaultFormioReducer, | ||
// override defaultFormioReducer can done as following | ||
...combine( | ||
formsReducer("forms", { query: { type: "form", tags: ["common"] } }), // return only forms with the common tags | ||
formsReducer("resources", { query: { type: "resource", tags: ["common"] } }) // return only resources with the common tags | ||
) | ||
}); | ||
``` | ||
|
||
## Contributors | ||
|
||
Please read [contributing guidelines here](./CONTRIBUTING.md). | ||
|
||
<a href="https://github.com/TypedProject/tsed/graphs/contributors"><img src="https://opencollective.com/tsed/contributors.svg?width=890" /></a> | ||
|
||
## Backers | ||
|
||
Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/tsed#backer)] | ||
|
||
<a href="https://opencollective.com/tsed#backers" target="_blank"><img src="https://opencollective.com/tsed/tiers/backer.svg?width=890"></a> | ||
|
||
## Sponsors | ||
|
||
Support this project by becoming a sponsor. Your logo will show up here with a link to your | ||
website. [[Become a sponsor](https://opencollective.com/tsed#sponsor)] | ||
|
||
## License | ||
|
||
The MIT License (MIT) | ||
|
||
Copyright (c) 2016 - 2021 Romain Lenzotti | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the | ||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit | ||
persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the | ||
Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE | ||
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | ||
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export * from "./stores"; | ||
export * from "./utils/clean"; | ||
export * from "./utils/url"; | ||
export * from "@tsed/react-formio"; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...tores/action-info/action-info.reducers.ts → ...tores/action-info/action-info.reducers.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
3 changes: 2 additions & 1 deletion
3
...ores/action-info/action-info.selectors.ts → ...ores/action-info/action-info.selectors.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...rmio/src/stores/action/action.reducers.ts → ...ores/src/stores/action/action.reducers.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.