Package Exports
- @bb-tech/ra-components
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@bb-tech/ra-components) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
About
Opensource components for react-admin.
- Validating JSON in a textinput is made easy using
JsonInput. - JSON object now looks pretty in
JsonField. - Data can be trimmed using
TrimFieldwhile displaying in datagrid etc. - Validate emails, restrict for a specific set of domains using
EmailInput. - Button to update the values in a record (ex: approve/retry etc)
UpdateButton.
Supported react-admin versions:
- React-Admin 3.x
Installation
Install using npm: npm install --save @bb-tech/ra-components
Basic Usage
To use ra-components in your react-admin application, import the necessary package(s) into your js file.
import {JsonInput,JsonField,TrimField} from '@bb-tech/ra-components';- Now you can use the controls in your code.
<JsonInput source='config' label='JSON Config' />JsonInput
JsonInput validates if the entered value is JSON or not.
If entered value is not a invalid JSON, JsonInput will throw an error.
Default error message is: Invalid JSON and can be overridden using errortext prop.
<JsonInput source='config' label='JSON Config' errortext='Enter a valid JSON'/>or use translate function:
<JsonInput source='config' label={translate('resources.resource_name.fields.config')} errortext={translate('myroot.validate.json')}/>By default, JsonInput parses and returns the entered string as object. Instead, to send string directly, please pass parse prop as false
<JsonInput source='config' label='JSON Config' parse={false}/>JsonField
Your JSON can be viewed in a tree structure using JsonField .
<JsonField source='config' label='JSON Config' />You can also set JSON text directly instead of using source prop.
<JsonField json={jsonobj} label='JSON Object' />If treeview is false, JSON is viewed as text, i.e., tweaked to add enough spaces so that it fits the screen.
<JsonField json={jsonobj} label='JSON Object' treeview={false}/>Also, if togglelabel is set, a button is shown additionally to toggle between tree and text.
<JsonField json={jsonobj} label='JSON Object' togglelabel='Toggle-View'/>If expandlabel and collapselabel are set, a button is shown additionally to toggle between expand and collapse.
<JsonField json={jsonobj} label='JSON Object' expandlabel='Expand' collapselabel='Collapse'/>TrimField
Any TextField with more number of characters can be limited using TrimField.
<TrimField source='field' label='Trimmed Field' />By default, this trims the value to 30 chars and appends ... to the end.
You can customize it.
<TrimField source='field' label='Trimmed Field' limit={40} trimstr='....' />EmailInput
EmailInput is used to validate if the entered value is an email or not.
<EmailInput source='email' label='Email Address' />You can restrict the email to a specific domain.
<EmailInput source='email' label='Email Address' domains={['yourdomain.com']} />MULTIPLE allows it to take comma separated email addresses. Or you can specify a separator.
<EmailInput source='email' label='Email Address' domains={['yourdomain.com']} type={EmailTypes.MULTIPLE} splitchar=';'/>In case of an invalid email address, you can customize the error message using errortext prop.
Notes for EmailTypes.ARRAY
- If you want to get array of email addresses, please pass type as
EmailTypes.ARRAY. - By default each of
EmailInputcomponent is wrapped on the screen. - You can pass
wrap={false}to get eachEmailInputone below the other. - 'Emails' is the default label given to the array. Use
grouplabelprop to override.
UpdateButton
You may want to add a button to update specific column of a record. Example: You can add a button to Approve a post.
<UpdateButton resource='posts' label='Approve' source='is_approved'/>In the above example, is_approved column of the curret record within posts, will be updated to true.
You can pass value prop to update the source to a specific value, instead of true.
<UpdateButton resource='posts' label='Approve' source='post_status' value='APPROVED' />You can also update two or more columns by passing json in data. Ex: Approve the post and also update the status as APPROVED
const data = {is_approved:true,post_status:'APPROVED'};
<UpdateButton resource='posts' label='Approve' data={data} />Note: You can send either source or data. if source is there, data is ignored.
By default, UpdateButton merges the un-updated data and updated data and sends the whole object. If your API expects only updated data, you can turn this off using merge prop.
const data = {is_approved:true,post_status:'APPROVED'};
<UpdateButton resource='posts' label='Approve' data={data} merge={false}/>License
ra-components is licensed under MIT License, sponsored and supported by BigBasket Tech.