| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- /*
- Copyright (C) 2017 Cloudbase Solutions SRL
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- // @flow
- import React from 'react'
- import { observer } from 'mobx-react'
- import styled, { css } from 'styled-components'
- import Switch from '../../atoms/Switch/Switch'
- import TextInput from '../../atoms/TextInput/TextInput'
- import RadioInput from '../../atoms/RadioInput/RadioInput'
- import InfoIcon from '../../atoms/InfoIcon/InfoIcon'
- import Dropdown from '../Dropdown/Dropdown'
- import DropdownInput from '../DropdownInput/DropdownInput'
- import TextArea from '../../atoms/TextArea/TextArea'
- import PropertiesTable from '../PropertiesTable/PropertiesTable'
- import AutocompleteDropdown from '../../molecules/AutocompleteDropdown'
- import Stepper from '../../atoms/Stepper'
- import type { Field } from '../../../types/Field'
- import LabelDictionary from '../../../utils/LabelDictionary'
- import StyleProps from '../../styleUtils/StyleProps'
- import Palette from '../../styleUtils/Palette'
- import asteriskImage from './images/asterisk.svg'
- const Wrapper = styled.div`
- ${props => props.layout === 'page' ? css`
- display: flex;
- flex-direction: ${props.inline ? 'row' : 'column'};
- ${props.inline ? '' : css`justify-content: center;`}
- ` : ''}
- `
- const Label = styled.div`
- font-weight: ${StyleProps.fontWeights.medium};
- flex-grow: 1;
- ${props => props.layout === 'page' ? css`
- margin-bottom: 8px;
- ` : css`
- margin-bottom: 2px;
- font-size: 10px;
- color: ${Palette.grayscale[3]};
- text-transform: uppercase;
- display: flex;
- align-items: center;
- `}
- ${props => props.disabledLoading ? StyleProps.animations.disabledLoading : ''}
- `
- const LabelText = styled.span``
- const Asterisk = styled.div`
- ${StyleProps.exactSize('16px')}
- display: inline-block;
- background: url('${asteriskImage}') center no-repeat;
- margin-bottom: -3px;
- margin-left: ${props => props.marginLeft || '0px'};
- `
- type Props = {
- name: string,
- type: string,
- value: any,
- onChange?: (value: any, field?: Field) => void,
- valueCallback?: (field: Field) => any,
- getFieldValue?: (fieldName: string) => string,
- onFieldChange?: (fieldName: string, fieldValue: string) => void,
- className?: string,
- properties?: Field[],
- // $FlowIgnore
- enum?: string[] | { label: string, value: string }[] | { name: string, id: string }[],
- required?: boolean,
- minimum?: number,
- maximum?: number,
- password?: boolean,
- highlight?: boolean,
- disabled?: boolean,
- disabledLoading?: boolean,
- items?: any[],
- useTextArea?: boolean,
- noSelectionMessage?: string,
- noItemsMessage?: string,
- layout: 'modal' | 'page',
- width?: number,
- label?: string,
- addNullValue?: boolean,
- nullableBoolean?: boolean,
- description?: string,
- style?: { [string]: mixed },
- }
- @observer
- class FieldInput extends React.Component<Props> {
- renderSwitch(propss: { triState: boolean }) {
- return (
- <Switch
- width={this.props.layout === 'page' ? '112px' : ''}
- height={this.props.layout === 'page' ? 16 : 24}
- justifyContent={this.props.layout === 'page' ? 'flex-end' : ''}
- disabled={this.props.disabled}
- disabledLoading={this.props.disabledLoading}
- triState={propss.triState}
- checked={this.props.value}
- onChange={checked => { if (this.props.onChange) this.props.onChange(checked) }}
- leftLabel={this.props.layout === 'page'}
- style={this.props.layout === 'page' ? { marginTop: '-8px' } : {}}
- />
- )
- }
- renderTextInput() {
- return (
- <TextInput
- width={this.props.width}
- highlight={this.props.highlight}
- type={this.props.password ? 'password' : 'text'}
- value={this.props.value}
- onChange={e => { if (this.props.onChange) this.props.onChange(e.target.value) }}
- placeholder={LabelDictionary.get(this.props.name)}
- disabled={this.props.disabled}
- required={this.props.layout === 'page' ? false : this.props.required}
- disabledLoading={this.props.disabledLoading}
- />
- )
- }
- renderIntInput() {
- if (this.props.minimum && this.props.maximum && this.props.maximum - this.props.minimum <= 10) {
- let items = []
- for (let i = this.props.minimum; i <= this.props.maximum; i += 1) {
- items.push({
- label: i.toString(),
- value: i,
- })
- }
- return (
- <Dropdown
- width={this.props.width}
- selectedItem={this.props.value}
- items={items}
- onChange={item => { if (this.props.onChange) this.props.onChange(item.value) }}
- disabled={this.props.disabled}
- disabledLoading={this.props.disabledLoading}
- highlight={this.props.highlight}
- required={this.props.layout === 'page' ? false : this.props.required}
- />
- )
- }
- return (
- <Stepper
- highlight={Boolean(this.props.highlight)}
- width={this.props.width ? `${this.props.width}px` : undefined}
- value={this.props.value}
- disabled={this.props.disabled}
- disabledLoading={this.props.disabledLoading}
- required={this.props.layout === 'page' ? false : this.props.required}
- onChange={value => { if (this.props.onChange) this.props.onChange(value) }}
- minimum={this.props.minimum}
- maximum={this.props.maximum}
- />
- )
- }
- renderObjectTable() {
- if (!this.props.properties || !this.props.properties.length) {
- return null
- }
- return (
- <PropertiesTable
- properties={this.props.properties}
- valueCallback={field => this.props.valueCallback && this.props.valueCallback(field)}
- onChange={(field, value) => {
- if (this.props.onChange) {
- this.props.onChange(value, field)
- }
- }}
- hideRequiredSymbol={this.props.layout === 'page'}
- disabledLoading={this.props.disabledLoading}
- />
- )
- }
- renderTextArea() {
- return (
- <TextArea
- style={{ width: '100%' }}
- highlight={this.props.highlight}
- value={this.props.value}
- onChange={e => { if (this.props.onChange) this.props.onChange(e.target.value) }}
- placeholder={LabelDictionary.get(this.props.name)}
- disabled={this.props.disabled}
- disabledLoading={this.props.disabledLoading}
- required={this.props.layout === 'page' ? false : this.props.required}
- />
- )
- }
- renderEnumDropdown() {
- const useDictionary = LabelDictionary.enumFields.find(f => f === this.props.name)
- let items = this.props.enum.map(e => {
- if (typeof e !== 'string' && e.separator === true) {
- return e
- }
- return {
- label: typeof e === 'string' ? (useDictionary ? LabelDictionary.get(e) : e) : e.name || e.label,
- value: typeof e === 'string' ? e : e.id || e.value,
- }
- })
- if (this.props.addNullValue) {
- items = [
- { label: 'Choose a value', value: null },
- ...items,
- ]
- }
- let selectedItem = items.find(i => i.value === this.props.value)
- let commonProps = {
- width: this.props.width,
- required: this.props.layout === 'page' ? false : this.props.required,
- selectedItem,
- items,
- disabledLoading: this.props.disabledLoading,
- disabled: this.props.disabled,
- onChange: item => this.props.onChange && this.props.onChange(item.value),
- }
- if (items.length < 10) {
- return (
- <Dropdown
- {...commonProps}
- noSelectionMessage="Choose a value"
- dimFirstItem={this.props.addNullValue}
- />
- )
- }
- return (
- <AutocompleteDropdown
- {...commonProps}
- dimNullValue
- />
- )
- }
- renderArrayDropdown() {
- let items = this.props.enum.map(e => {
- if (typeof e !== 'string' && e.separator === true) {
- return e
- }
- return {
- label: typeof e === 'string' ? e : e.name || e.label,
- value: typeof e === 'string' ? e : e.id || e.value,
- }
- })
- let selectedItems = this.props.value || []
- return (
- <Dropdown
- multipleSelection
- width={this.props.width}
- disabled={this.props.disabled}
- disabledLoading={this.props.disabledLoading}
- noSelectionMessage="Choose values"
- noItemsMessage={this.props.noItemsMessage}
- items={items}
- selectedItems={selectedItems}
- onChange={item => { if (this.props.onChange) this.props.onChange(item.value) }}
- highlight={this.props.highlight}
- required={this.props.layout === 'page' ? false : this.props.required}
- />
- )
- }
- renderRadioInput() {
- return (
- <RadioInput
- checked={this.props.value}
- label={LabelDictionary.get(this.props.name)}
- onChange={checked => { if (this.props.onChange) this.props.onChange(checked) }}
- disabled={this.props.disabled}
- disabledLoading={this.props.disabledLoading}
- />
- )
- }
- renderDropdownInput() {
- if (!this.props.items) {
- return null
- }
- let items = this.props.items.map(field => {
- return {
- value: field.name,
- label: field.label || LabelDictionary.get(field.name),
- }
- })
- let fieldName = this.props.value || items[0].value
- return (
- <DropdownInput
- items={items}
- selectedItem={fieldName}
- onItemChange={item => { if (this.props.onChange) this.props.onChange(item.value) }}
- inputValue={this.props.getFieldValue ? this.props.getFieldValue(fieldName) : ''}
- onInputChange={value => { if (this.props.onFieldChange) this.props.onFieldChange(fieldName, value) }}
- placeholder={LabelDictionary.get(fieldName)}
- highlight={this.props.highlight}
- disabled={this.props.disabled}
- disabledLoading={this.props.disabledLoading}
- required={this.props.layout === 'page' ? false : this.props.required}
- />
- )
- }
- renderInput() {
- switch (this.props.type) {
- case 'input-choice':
- return this.renderDropdownInput()
- case 'boolean':
- return this.renderSwitch({ triState: Boolean(this.props.nullableBoolean) })
- case 'string':
- if (this.props.enum && this.props.enum.length) {
- return this.renderEnumDropdown()
- }
- if (this.props.useTextArea) {
- return this.renderTextArea()
- }
- return this.renderTextInput()
- case 'integer':
- return this.renderIntInput()
- case 'radio':
- return this.renderRadioInput()
- case 'array':
- return this.renderArrayDropdown()
- case 'object':
- return this.renderObjectTable()
- default:
- return null
- }
- }
- renderLabel() {
- if (this.props.type === 'radio') {
- return null
- }
- let description = LabelDictionary.getDescription(this.props.name) || this.props.description
- let marginRight = this.props.layout === 'modal' || description || this.props.required ? '24px' : 0
- return (
- <Label layout={this.props.layout} disabledLoading={this.props.disabledLoading}>
- <LabelText style={{ marginRight }}>
- {this.props.label || LabelDictionary.get(this.props.name)}
- </LabelText>
- {description ? <InfoIcon text={description} marginLeft={-20} marginBottom={this.props.layout === 'page' ? null : 0} /> : null}
- {this.props.layout === 'page' && Boolean(this.props.required) ? <Asterisk marginLeft={description ? '4px' : '-16px'} /> : null}
- </Label>
- )
- }
- render() {
- return (
- <Wrapper
- className={this.props.className}
- inline={this.props.type === 'boolean'}
- style={this.props.style}
- layout={this.props.layout}
- >
- {this.renderLabel()}
- {this.renderInput()}
- </Wrapper>
- )
- }
- }
- export default FieldInput
|