项目作者: BlackBes

项目描述 :
React package with components for Yii2. It`s supports main yii2-fields and other usefull yii2 components and features like authentification and server side fields validation.
高级语言: JavaScript
项目地址: git://github.com/BlackBes/react-yii2-essentials.git
创建时间: 2020-09-16T11:00:48Z
项目社区:https://github.com/BlackBes/react-yii2-essentials

开源协议:

下载


propTypes = { /** Name of field in model. */ name: PropTypes.string.isRequired, /** Name of a model. */ model: PropTypes.string, /** Label for input. If it empty or bool:false, using a field name. */ label: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]), /** Add more classes to field container. */ class: PropTypes.string, /** Placeholder for input. */ placeholder: PropTypes.string, /** Function, that handle change event. */ onChange: PropTypes.func, /** Required. */ required: PropTypes.bool, /** Help block text */ helpBlock: PropTypes.string, /** Help block text */ validated: PropTypes.any, /** Other props for plugin */ pluginProps: PropTypes.object } ``` ### Radiobutton Generates radiobutton or radiobutton list depending on the amount of keys ```jsx propTypes = { /** Name of field in model. */ name: PropTypes.string, /** Name of a model. */ model: PropTypes.string, /** Label for input. If it empty or bool:false, using a field name. */ label: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]), /** Add more classes to field container. */ class: PropTypes.string, /** object Key and value*/ options: PropTypes.object, /** Values of fields. */ value: PropTypes.oneOfType([ PropTypes.string, PropTypes.number ]), /** Function, that handle change event. */ onChange: PropTypes.func, /** Other props for plugin */ pluginProps: PropTypes.object, /** Set required icon (require server validation!) */ required: PropTypes.bool } ``` ### Checkbox Generates Checkbox or Checkbox list depending on the amount of keys ```jsx propTypes = { /** Name of field in model. */ name: PropTypes.string.isRequired, /** Name of a model. */ model: PropTypes.string, /** Label for input. If it empty or bool:false, using a field name. */ label: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]), /** Add more classes to field container. */ class: PropTypes.string, /** object Key and value */ options: PropTypes.object, /** Values of fields. */ values: PropTypes.objectOf(PropTypes.bool), /** Key of field. */ key: PropTypes.any, /** Other props for plugin */ pluginProps: PropTypes.object, /** Set required icon (require server validation!) */ required: PropTypes.bool } ``` ### Dropdown list Generates dropdown list with verification ```jsx propTypes = { /** Name of field in model. */ name: PropTypes.string.isRequired, /** Name of a model. */ model: PropTypes.string, /** Label for input. If it empty or bool:false, using a field name. */ label: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]), /** Add more classes to field container. */ class: PropTypes.string, /** Options array */ options: PropTypes.arrayOf(PropTypes.object), /** Selected value */ value: PropTypes.any, /** Function, that handle change event. */ onChange: PropTypes.func, /** Required. */ required: PropTypes.bool, /** Help block text */ helpBlock: PropTypes.string, /** Validation value. Can be empty string or bool */ validated: PropTypes.any, /** Default value text */ defaultValueText: PropTypes.string, /** Other props for plugin */ pluginProps: PropTypes.object } ``` ### BreadCrumbs Generates breadcrumbs To use this, you must add `breadcrumbs.js` reducer with following code: ``` //imports const initialState = { breadcrumbs : [] }; const breadcrumbs = (state = initialState, action) => { switch (action.type) { case SET_BREADCRUMBS: { return { ...state, breadcrumbs: action.data }; } default: return state; } }; export default breadcrumbs; ``` ```jsx propTypes = { /** breadcrumbs. */ breadcrumbs: PropTypes.object, name: PropTypes.string } /** example */ let bread = [ { name: 'Home', link: '/' }, { name: 'Clients', link: '/clients' }, { name: "Create", link: '' }, ]; ``` ### DataProvider Component for generating and rendering index data. Analogue to yii2's DataProvider ```jsx propTypes = { /** An array with fetched rows. */ models: PropTypes.array, /** Model name. */ model: PropTypes.string, /** Model attributes to be rendered. Ex: {id: 'Item Id', name: 'Item Name'} */ attributes: PropTypes.object, /** Model actions to manipulate selected row. Ex: {view: {title: "view", icon: (Optional) HTML markup or Font Awesome>}, update: {title: "update"},} */ actions: PropTypes.object, /** Assoc. array with onModalOpen() callback. Ex: modalActions={{ onModalOpen: () => {setModal(true)}}} */ modalActions: PropTypes.object, /** (Optional) Text or HTML markup to be rendered if table is empty. Default value: 'Create your first item' */ ifEmpty: PropTypes.any, /** An assoc array with required data to create pagination. * @param pagination.currentPage Current selected page * @param pagination.totalPages Total pages * @param pagination.callback Callback that will trigger when pagination button clicked * */ pagination: PropTypes.object, } /** example */ "} className={""} attributes={{ //Shown attribute of model {attribute: lable} id: "ID", name: "", user: "", }} actions={{ view: {title: "view"}, update: {title: "update"}, delete: {title: "delete"}, restore: {title: "restore"}, }} modalActions={{ onModalOpen: this.actionOpenModal, }} ifEmpty={"Create first element"} pagination={{ currentPage: this.state.page, totalPages: this.state.data.total_pages, callback: this.actionPagination }} /> ``` ### Pagination Setups pagination ```jsx /** example */ function actionPagination(page) { this.setState({currentPage: page}) console.log(page) } ``` ### PrivateRoute Allows to access routes by user with valid auth token. Redirects to /login on fail ```jsx ``` ### AuthTypeRoute Modified version of PrivateRoute Allows to access routes by user with one or multiple auth types and valid auth token Redirects to /login on fail ```jsx ``` Preloaders ---------- ### DataLoader Preloader adds spinning circle ```jsx if (this.state.isDataLoaded){ return render( //... ) } else { return render( ); } ``` ### IndexDataLoader Preloader creates view of unloaded fields ```jsx if (this.state.isDataLoaded){ return render( //... ) } else { return render( ); } ``` ### TableLoader Preloader creates view of unloaded table on index page ```jsx if (this.state.isDataLoaded){ return render( //... ) } else { return render( ); } ``` ### Contributing Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate. ### License MIT © [BlackBes](https://github.com/BlackBes)

ATTENTION: Library is currently in development. We are looking for maintainers

react-yii2-essentials

React components, that support working with Yii2.

NPM JavaScript Style Guide Hits

Install

First of all be sure that you have Redux installed

  1. npm install @reduxjs/toolkit
  2. npm install redux
  3. npm install react-redux
  4. npm install --save-dev redux-devtools

After installing Redux run this command

  1. npm install --save react-yii2-essentials

We recommend installing Yii2 library blackbes/yii2-yiireact YiiReact GitHub Page on your web server in order to simplify usage of this package
It provides React CRUD generator for gii that can generate required controllers and react pages for models.

  1. composer require blackbes/yii2-yiireact

Usage

This library provides you with components that are able to perform yii2 validation and fetch data from
your Yii2 server.

Validation will be performed by built in function in yii-validation.js
This function uses Redux to define your web server address and uses bearer token to access it.

It will send a request to
So in order to make function work correctly, you must add a reducer called api.js with properties listed below:

  1. authToken: '', //here will be your bearer token
  2. address: '', //here you specify your web server url
  1. //validation function will use this data to send axios request to
  2. await axios({
  3. method: 'post',
  4. //your web server must have this url for models validation
  5. url: address + '/validate-model-input',
  6. data: stringify({
  7. //this data is taken from component props
  8. model: model,
  9. name: name,
  10. value: value
  11. }),
  12. headers: {
  13. 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
  14. Authorization: 'Bearer ' + authToken
  15. }
  16. })

Components List

Input field

Generates input field with validation

  1. <InputField />
  2. propTypes = {
  3. /** Name of field in model. */
  4. name: PropTypes.string.isRequired,
  5. /** Name of a model. */
  6. model: PropTypes.string,
  7. /** Value of field. */
  8. value: PropTypes.any,
  9. /** Label for input. If it empty or bool:false, using a field name. */
  10. label: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]),
  11. /** Add more classes to field container. */
  12. class: PropTypes.string,
  13. /** Placeholder for input. */
  14. placeholder: PropTypes.string,
  15. /** Function, that handle change event. */
  16. onChange: PropTypes.func,
  17. /** Required. */
  18. required: PropTypes.bool,
  19. /** Help block text */
  20. helpBlock: PropTypes.string,
  21. /** Help block text */
  22. validated: PropTypes.any,
  23. /** Other props for plugin */
  24. pluginProps: PropTypes.object
  25. }

Text area

Generates text area with validation

```jsx