2017-10-10 11:15:24 +02:00
# UI components
Strapi provides built-in UI Components to make development faster.
## Button
2017-10-11 10:51:28 +02:00
Button library based on bootstrap classes.
2017-10-10 11:15:24 +02:00
2017-10-12 14:49:02 +02:00
{% center %}  {% endcenter %}
2017-10-10 11:15:24 +02:00
### Usage
| Property | Type | Required | Description |
| -------- | ---- | -------- | ----------- |
| `children` | node | no | Ex: `<Button primary>Click me</Button>` |
| `className` | any | no | Sets a custom className. Ex: `<Button className={styles.myCustomClass} label="Click me" />` |
| `kind` | string | no | Sets the built-in className to the button. Ex: `<Button kind="primaryAddShape" label="Click me" />` |
| `label` | string | no | Sets the button label with i18n Ex: `<Button label="myPlugin.button.label" primary />` |
| `labelValue` | string | no | Sets the button label with i18n and a dynamic value Ex: {% raw %} ```<Button label="myPlugin.button.label" labelValue={{ foo: 'bar' }} primary />` `` {% endraw %} |
| `loader` | bool | no | Displays a button loader. Ex: `<Button loader />` |
| `primary` | bool | no | [Bootstrap className ](https://v4-alpha.getbootstrap.com/components/buttons/ ) |
| `primaryAddShape` | bool | no | Inserts fontAwesone plus icon inside the button. Ex: `<Button primaryAddShape>Click me</Button>` |
| `secondary` | bool | no | [Bootstrap className ](https://v4-alpha.getbootstrap.com/components/buttons/ ) |
| `secondaryHotline` | bool | no | Sets className |
| `secondaryHotlineAdd` | bool | no | Inserts fontAwesone plus icon inside the button. Ex: `<Button secondaryHotlineAdd>Click me</Button>` |
| `type` | string | no | Sets the button type |
### Example
**Path —** `./plugins/my-plugin/admin/src/translations/en.json` .
```json
{
"myPlugin.button.label": "Add a new"
}
```
2017-12-06 18:14:12 +01:00
2017-10-10 11:15:24 +02:00
**Path —** `./plugins/my-plugin/admin/src/components/Foo/index.js` .
```js
// Make sure you don't have any other component called Button otherwise it will
// import the one from your ./components folder instead.
2017-10-30 09:53:41 +01:00
import React from 'react';
2017-10-10 11:15:24 +02:00
import Button from 'components/Button';
2017-10-30 09:53:41 +01:00
import styles from './styles.scss';
2017-10-10 11:15:24 +02:00
2017-10-30 09:53:41 +01:00
function Foo() {
2017-10-10 11:15:24 +02:00
// Define your buttons
const buttons = [
{
kind: 'primaryAddShape',
label: 'myPlugin.button.label',
labelValues: {
foo: 'Bar',
},
onClick: () => console.log('Click'),
},
];
return (
< div className = {styles.foo} >
2017-10-30 09:53:41 +01:00
{buttons.map(buttonProps => < Button key = {buttonProps.label} { . . . buttonProps } / > )}
2017-10-10 11:15:24 +02:00
< / div >
);
2017-10-17 13:53:36 +02:00
// Same as
// return (
2017-10-30 09:53:41 +01:00
// < div className = {styles.foo} >
// < Button
// label="myPlugin.button.label"
// labelValues={{ foo: 'Bar' }}
// onClick={() => console.log('Click')}
// primaryAddShape
// />
// < / div >
2017-10-17 13:53:36 +02:00
// );
2017-10-10 11:15:24 +02:00
}
// Will display a primaryAddShape button with label: 'Add a new Bar'
2017-10-30 09:53:41 +01:00
export default Foo;
2017-10-10 11:15:24 +02:00
```
***
2017-10-24 14:35:08 +02:00
## ExtendComponent
2018-01-10 11:45:01 +01:00
ExtendComponent allows a plugin to inject components into another one.
2017-10-24 14:35:08 +02:00
2018-01-10 11:45:01 +01:00
> Refer to the use cases [documentation](./frontend-use-cases.md#inject-design) to see how to use it.
2017-10-24 14:35:08 +02:00
***
2017-10-17 16:09:15 +02:00
## Ico
2017-10-18 14:29:25 +02:00
Ico components that works with fontAwesome.
2017-10-17 16:09:15 +02:00
### Usage
| Property | Type | Required | Description |
| -------- | ---- | -------- | ----------- |
2017-10-18 14:29:25 +02:00
| `icoType` | string | no (default: `trash` ) | fontAwesome ico name. Ex: < Ico icoType = "pencil" /> |
2017-10-17 16:09:15 +02:00
| `onClick` | func | no | Function executed onClick. |
### Example
```js
import React from 'react';
import Ico from 'components/Ico';
import PopUpWarning from 'components/PopUpWarning';
import styles from 'styles';
class FooPage extends React.Component {
constructor(props) {
super(props);
this.state = { showModal: false };
}
handleClick = () => this.setState({ showModal: true });
render () {
return (
< div className = {styles.fooPage} >
2017-10-17 16:11:30 +02:00
< Ico icoType = "trash" onClick = {this.handleClick} / >
< PopUpWarning
isOpen={this.state.showModal}
onConfirm={() => this.setState({ showModal: false })}
toggleModal={() => this.setState({ showModal: false })}
/>
2017-10-17 16:09:15 +02:00
< / div >
);
}
}
export default FooPage;
```
***
## IcoContainer
2017-10-18 14:29:25 +02:00
Container containing icons, generally used for editing or deleting data.
2017-10-17 16:09:15 +02:00
### Usage
| Property | Type | Required | Description |
| -------- | ---- | -------- | ----------- |
| icons | array | no | Array containing icons' props. |
### Example
```js
import React from 'react';
import IcoContainer from 'components/IcoContainer';
import PopUpWarning from 'components/PopUpWarning';
import styles from 'styles';
class FooPage extends React.Component {
constructor(props) {
super(props);
this.state = { showModal: false };
}
handleClick = () => this.setState({ showModal: true });
render() {
const icons = [
{ icoType: 'pencil', onClick: () => console.log('click on pencil icon') },
{ icoType: 'trash', onClick: this.handleClick },
];
2017-10-17 16:11:30 +02:00
2017-10-17 16:09:15 +02:00
return (
< div className = {styles.fooPage} >
2017-10-17 16:11:30 +02:00
< IcoContainer icons = {icons} / >
< PopUpWarning
isOpen={this.state.showModal}
onConfirm={() => this.setState({ showModal: false })}
toggleModal={() => this.setState({ showModal: false })}
/>
2017-10-17 16:09:15 +02:00
< / div >
);
}
}
export default FooPage;
```
***
2017-10-10 11:15:24 +02:00
## Input
Strapi provides a built-in input library which includes :
- All kind of inputs
- Front-End validations
- Error highlight
- i18n
### Usage
| Property | Type | Required | Description |
| -------- | ---- | -------- | ----------- |
| `addon` | string | no | Allows to add a string addon in your input, based on [Bootstrap ](https://v4-alpha.getbootstrap.com/components/input-group/#basic-example ). Ex: `<Input {...this.props} addon="@" />` |
| `addRequiredInputDesign` | bool | no | Allows to add an asterix on the input. Ex: `<Input {...this.props} addRequiredInputDesign />` |
| `customBootstrapClass` | string | no | Allows to override the input bootstrap col system. Ex: `<Input {...this.props} customBootstrapClass="col-md-6 offset-md-6 pull-md-6" />` |
| `deactivateErrorHighlight` | bool | no | Prevents from displaying error highlight in the input: Ex: `<Input {...this.props} deactivateErrorHighlight />` |
| `didCheckErrors` | bool | no | Use this props to display errors after submitting a form. Ex: `<Input {...this.props} didCheckErrors={this.state.error} />` |
| `disabled` | bool | no | Disable the input. Ex: `<Input {...this.props} disabled />` |
2017-12-06 18:14:12 +01:00
| `errors` | array | no | Allows to display custom error messages. Ex: `<Input {...this.props} errors={[{ id: 'components.Input.error.custom-error', errorMessage: 'Something is wrong' }]} />` |
2017-10-10 11:15:24 +02:00
| `inputDescription` | string | no | Allows to add an input description that is displayed like [bootstrap ](https://v4-alpha.getbootstrap.com/components/forms/#defining-states ). |
| `label` | string | yes | Displays the input's label with i18n. |
| `linkContent` | object | no | Allows to display a link within the input's description. Ex: {% raw %} ``` <Input {...this.props} linkContent={{ description: 'check out our', link: 'tutorial video' }} />` `` {% endraw %} |
| `name` | string | yes | The key to update your reducer. |
| `noErrorsDescription` | bool | no | Prevents from displaying built-in errors. |
2017-10-17 13:53:36 +02:00
| `onBlur` | func or bool | no | Overrides the default onBlur behavior. If bool passed to the component it will disabled the input validations checking. |
| `onChange` | func | yes | Sets your reducer state. |
| `onFocus` | func | no | Adds an onFocus event to the input. |
2017-10-10 11:15:24 +02:00
| `placeholder` | string | no | Allows to set a placeholder. |
| `selectOptions` | array | no | Options for the select. |
| `tabIndex` | string | no | Sets the order in which the inputs are focused on tab key press. |
| `title` | string | no | This props can only be used for checkboxes, it allows to add a title on top of the input, the label will be on the right side of the checkbox. |
| `validations` | object | yes | Allows to have the built-in input's validations. If set to {} the validations will be ignored. Ex: {% raw %} ``` <Input {...this.props} validations={{ required: true }} />` `` {% endraw %} |
| `value` | string or bool or number | yes | The input's value. |
### Example
2017-10-17 13:53:36 +02:00
**Path —** `./plugins/my-plugin/admin/src/containers/FooPage/index.js` .
2017-10-10 11:15:24 +02:00
```js
import React from 'react';
// Make sure you don't have a component called Input inside your ./components folder
// It will import the one in your components folder instead.
import Input from 'components/Input';
class FooPage extends React.Component {
constructor(props) {
super(props);
this.state {
data: {
foo: 'bar',
},
error: false,
errors: [],
};
}
handleChange = ({ target }) => {
const value = target.type === 'number' ? Number(target.value) : target.value;
const error = target.value.length === 0;
2017-10-30 09:53:41 +01:00
const data = {
[target.name]: value,
}
2017-10-10 11:15:24 +02:00
if (error) {
this.setState({ error: true, errors: [{ id: 'This input is required ' }] });
} else {
2017-10-30 09:53:41 +01:00
this.setState({ data, error: false, errors: [] });
2017-10-10 11:15:24 +02:00
}
}
render() {
return (
2017-10-17 13:53:36 +02:00
< div className = {styles.fooPage} >
2017-10-10 11:15:24 +02:00
< Input
type="string"
value={this.state.data.foo}
label="This is a string input"
name="foo"
2017-10-17 13:53:36 +02:00
onChange={this.handleChange}
2017-10-10 11:15:24 +02:00
validations={{ required: true }}
didCheckErrors={this.state.error}
/>
< / div >
);
}
}
2017-10-17 13:53:36 +02:00
// ...
export default FooPage;
```
2017-10-30 09:53:41 +01:00
#### Example with property linkContent and i18n
2017-10-17 13:53:36 +02:00
**Path —** `./plugins/my-plugin/admin/src/translations/en.json` .
```json
{
"form.input.inputDescription": "Content type name should be singular",
"form.input.label": "Name",
"form.input.linkContent.description": "check out our documentation"
}
```
**Path —** `./plugins/my-plugin/admin/src/translations/fr.json` .
```json
{
"form.input.inputDescription": "Le nom des modèles doit être au singulier",
"form.input.label": "Nom",
"form.input.linkContent.description": "regardez la documentation."
}
```
**Path —** `./plugins/my-plugin/admin/src/containers/FooPage/index.js` .
```js
import React from 'react';
// ...
class FooPage extends React.Component {
// ...
render () {
return (
< div className = {styles.fooPage} >
< Input
didCheckErrors={this.state.error}
inputDescription="my-plugin.form.input.inputDescription"
label="my-plugin.form.input.label"
linkContent={{ link: 'https://strapi.io/documentation/', description: 'my-plugin.form.input.linkContent.description' }}
onChange={this.handleChange}
type="string"
validations={{ required: true }}
value={this.state.data.foo}
/>
< / div >
);
}
}
// ...
2017-10-10 11:15:24 +02:00
export default FooPage;
```
***
2017-12-13 11:49:26 +01:00
## OverlayBlocker
2018-01-18 09:40:48 +01:00
The OverlayBlocker is a React component that is very useful to block user interactions when the strapi server is restarting in order to avoid front-end errors. This component is automatically displayed when the server needs to restart. You need to disable it in order to override the current design (once disabled it won't show on the other plugins so it's really important to enable it back when the component is unmounting).
2017-12-13 11:49:26 +01:00
### Usage
| Property | Type | Required | Description |
| -------- | ---- | -------- | ----------- |
| children | node | no | Anything that is wrapped inside the OverlayBlocker |
| isOpen | bool | no | If set to `true` it will display the component |
### Example
2018-01-18 09:40:48 +01:00
In this example we'll have a button that when clicked will display the OverlayBlocker for 5 seconds thus 'freezes' the admin so the user can't navigate (it simulates a very long server restart).
2017-12-13 11:49:26 +01:00
**Path -** `./plugins/my-plugin/admin/src/containers/FooPage/constants.js` .
```js
export const ON_BUTTON_CLICK = 'MyPlugin/FooPage/ON_BUTTON_CLICK';
export const RESET_SHOW_OVERLAY_PROP = 'MyPlugin/FooPage/RESET_SHOW_OVERLAY_PROP';
```
**Path -** `./plugins/my-plugin/admin/src/containers/FooPage/actions.js` .
```js
import { ON_BUTTON_CLICK, RESET_SHOW_OVERLAY_PROP } from './constants';
export function onButtonClick() {
return {
type: ON_BUTTON_CLICK,
};
}
export function resetShowOverlayProp() {
return {
type: RESET_SHOW_OVERLAY_PROP,
};
}
```
**Path -** `./plugins/my-plugin/admin/src/containers/FooPage/index.js` .
```js
import React from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import { bindActionCreators, compose } from 'redux';
// Design
import Button from 'components/Button';
import OverlayBlocker from 'components/OverlayBlocker';
// Utils
import injectSaga from 'utils/injectSaga';
import injectReducer from 'utils/injectReducer';
// Actions
import { onButtonClick } from './actions';
// Reducer
import reducer from './reducer';
// Saga
import saga from './saga';
// Selectors (see the documentation to see how to use selectors)
import makeSelectFooPage from './selectors';
export class FooPage extends React.Component {
2018-01-17 14:36:26 +01:00
componentDidMount() {
// Disable the AdminPage OverlayBlocker in order to give it a custom design (children)
2018-01-23 15:34:34 +01:00
this.context.disableGlobalOverlayBlocker();
2018-01-17 14:36:26 +01:00
}
componentWillUnmount() {
// Enable the AdminPage OverlayBlocker so it is displayed when the server is restarting in the other plugins
2018-01-23 15:34:34 +01:00
this.context.enableGlobalOverlayBlocker();
2018-01-17 14:36:26 +01:00
}
2017-12-13 11:49:26 +01:00
render() {
return (
< div >
< OverlayBlocker isOpen = {this.props.showOverlayBlocker} >
< div style = {{ width: ' 100px ', height: ' 100px ', backgroundColor: ' #fff ' }} >
< h4 > The app is now blocked for 5 seconds< / h4 >
< / div >
< / Overlay >
< Button onClick = {this.props.onButtonClick} primary > Click me< / Button >
< / div >
);
}
}
2018-01-23 15:34:34 +01:00
// Use context to disable or enable the OverlayBlocker
FooPage.contextTypes = {
2018-01-17 14:36:26 +01:00
disableGlobalOverlayBlocker: PropTypes.func.isRequired,
enableGlobalOverlayBlocker: PropTypes.func.isRequired,
2018-01-23 15:34:34 +01:00
};
FooPage.propTypes = {
2017-12-13 11:49:26 +01:00
onButtonClick: PropTypes.func.isRequired,
showOverlayBlocker: PropTypes.bool.isRequired,
};
const mapStateToProps = makeSelectFooPage();
function mapDispatchToProps(dispatch) {
return bindActionCreators(
{
onButtonClick,
},
dispatch,
);
}
const withConnect = connect(mapStateToProps, mapDispatchToProps);
const withReducer = injectReducer({ key: 'fooPage', reducer });
const withSaga = injectSaga({ key: 'fooPage', saga });
export default compose(
withReducer,
withSaga,
withConnect,
)(FooPage);
```
**Path -** `./plugins/my-plugin/admin/src/containers/FooPage/reducer.js` .
```js
import { fromJS } from 'immutable';
import { ON_BUTTON_CLICK, RESET_SHOW_OVERLAY_PROP } from './constants';
const initialState = fromJS({
showOverlayBlocker: false,
});
function fooPageReducer(state = initialState, action) {
switch (action.type) {
case ON_BUTTON_CLICK:
return state.set('showOverlayBlocker', true);
case RESET_SHOW_OVERLAY_PROP:
return state.set('showOverlayBlocker', false);
default:
return state;
}
}
export default fooPageReducer;
```
**Path -** `./plugins/my-plugin/admin/src/containers/FooPage/saga.js` .
```js
import {
fork,
put,
takeLatest,
} from 'redux-saga/effects';
import { resetShowOverlayProp } from './actions';
import { ON_BUTTON_CLICK } from './constants';
export function* buttonClicked() {
try {
// Start the timer
yield new Promise(resolve => {
setTimeout(() => {
resolve();
}, 5000);
});
yield put(resetShowOverlayProp());
} catch(err) {
yield put(resetShowOverlayProp());
}
}
export default function* defaultSaga() {
yield fork(takeLatest, ON_BUTTON_CLICK, buttonClicked);
}
```
***
2017-10-10 11:15:24 +02:00
## PopUp Warning
PopUp warning library based on [reactstrap ](https://reactstrap.github.io/components/modals/ ).
2017-10-12 14:49:02 +02:00
{% center %}  {% endcenter %}
2017-10-10 11:15:24 +02:00
### Usage
| Property | Type | Required | Description |
| -------- | ---- | -------- | ----------- |
2017-10-17 13:53:36 +02:00
| content | object | no | Used to set the confirm button, cancel button, title, body messages. |
| onConfirm | func | yes | Function executed when the user clicks on the `Confirm button` . |
2017-10-10 11:15:24 +02:00
| isOpen | bool | yes | Show or hide the popup. |
2017-10-17 14:45:43 +02:00
| onlyConfirmButton | bool | yes | Display only the confirm button (`primary` ) with `width: 100%` . |
2017-10-10 11:15:24 +02:00
| popUpWarningType | string | yes | Sets the popup body icon. Available types: `danger` , `info` , `notFound` , `success` , `warning` |
| toggleModal | func | yes | Function to toggle the modal. |
### Example
**Path —** `./plugins/my-plugin/admin/src/translations/en.json` .
```json
{
2017-10-17 13:53:36 +02:00
"popup.danger.button.cancel": "Cancel...",
"popup.danger.button.confirm": "Confirm../",
"popup.danger.message": "Are you sure you want to delete this item?!",
"popup.danger.title": "Please confirm...."
2017-10-10 11:15:24 +02:00
}
```
**Path —** `./plugins/my-plugin/admin/src/translations/fr.json` .
```json
{
2017-10-17 13:53:36 +02:00
"popup.danger.button.cancel": "Annuler...",
"popup.danger.button.label": "Je confirme...",
"popup.danger.message": "Êtes-vous certain de vouloir supprimer ce message?!",
"popup.danger.title": "Merci de confirmer..."
2017-10-10 11:15:24 +02:00
}
```
**Path —** `./plugins/my-plugin/admin/src/containers/FooPage/index.js` .
```js
// ...
import Button from 'components/Button';
import PopUpWarning from 'components/PopUpWarning';
// ...
class FooPage extends React.Component {
constructor(props) {
super(props);
this.state = {
isOpen: false,
};
}
handlePopUpConfirm = () => {
// Some logic Here
this.setState({ isOpen: false });
}
render() {
2017-10-17 13:53:36 +02:00
const popupContent = {
2017-10-18 14:29:25 +02:00
cancel: 'my-plugin.popup.danger.button.cancel',
confirm: 'my-plugin.popup.danger.button.confirm',
message: 'my-plugin.popup.danger.message',
title: 'my-plugin.popup.danger.title',
2017-10-17 13:53:36 +02:00
};
return (
2017-10-10 11:15:24 +02:00
< div >
2017-10-17 13:53:36 +02:00
< Button primary onClick = {() = > this.setState({ isOpen: !this.state.isOpen })} label="my-plugin.button.label" />
2017-10-10 11:15:24 +02:00
< PopUpWarning
2017-10-17 13:53:36 +02:00
content={popupContent}
onConfirm={this.handlePopUpConfirm}
2017-10-10 11:15:24 +02:00
toggleModal={() => this.setState({ isOpen: !this.state.isOpen })}
popUpWarningType="danger"
/>
< / div >
);
2017-10-17 13:53:36 +02:00
// Equivalent without custom messages
// return (
// < div >
// < Button primary onClick = {() = > this.setState({ isOpen: !this.state.isOpen })} label="my-plugin.button.label" />
// < PopUpWarning
// onConfirm={this.handlePopUpConfirm}
// toggleModal={() => this.setState({ isOpen: !this.state.isOpen })}
// popUpWarningType="danger"
// />
// < / div >
// );
2017-10-10 11:15:24 +02:00
}
}
export default FooPage;
```