-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b773e8d
commit 4c65aab
Showing
12 changed files
with
974 additions
and
8 deletions.
There are no files selected for viewing
168 changes: 168 additions & 0 deletions
168
src/plugins/so_management/public/management/components/edition/field.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import React, { PureComponent } from 'react'; | ||
import { | ||
EuiFieldNumber, | ||
EuiFieldText, | ||
EuiFormLabel, | ||
EuiSwitch, | ||
// @ts-ignore | ||
EuiCodeEditor, | ||
} from '@elastic/eui'; | ||
import { FormattedMessage } from '@kbn/i18n/react'; | ||
import { FieldState, FieldType } from '../../types'; | ||
|
||
interface FieldProps { | ||
type: FieldType; | ||
name: string; | ||
value: any; | ||
disabled: boolean; | ||
state?: FieldState; | ||
onChange: (name: string, state: FieldState) => void; | ||
} | ||
|
||
export class Field extends PureComponent<FieldProps> { | ||
render() { | ||
const { name } = this.props; | ||
|
||
return ( | ||
<div className="kuiFormSection"> | ||
<EuiFormLabel htmlFor={this.fieldId} className="kuiFormLabel"> | ||
{name} | ||
</EuiFormLabel> | ||
{this.renderField()} | ||
</div> | ||
); | ||
} | ||
|
||
onCodeEditorChange(targetValue: any) { | ||
const { name, onChange } = this.props; | ||
let invalid = false; | ||
try { | ||
JSON.parse(targetValue); | ||
} catch (e) { | ||
invalid = true; | ||
} | ||
onChange(name, { | ||
value: targetValue, | ||
invalid, | ||
}); | ||
} | ||
|
||
onFieldChange(targetValue: any) { | ||
const { name, type, onChange } = this.props; | ||
|
||
let newParsedValue = targetValue; | ||
let invalid = false; | ||
if (type === 'number') { | ||
try { | ||
newParsedValue = Number(newParsedValue); | ||
} catch (e) { | ||
invalid = true; | ||
} | ||
} | ||
onChange(name, { | ||
value: newParsedValue, | ||
invalid, | ||
}); | ||
} | ||
|
||
renderField() { | ||
const { type, name, state, disabled } = this.props; | ||
const currentValue = state?.value ?? this.props.value; | ||
|
||
switch (type) { | ||
case 'number': | ||
return ( | ||
<EuiFieldNumber | ||
name={name} | ||
id={this.fieldId} | ||
value={currentValue} | ||
onChange={e => this.onFieldChange(e.target.value)} | ||
disabled={disabled} | ||
data-test-subj={`savedObjects-editField-${name}`} | ||
/> | ||
); | ||
case 'boolean': | ||
return ( | ||
<EuiSwitch | ||
name={name} | ||
id={this.fieldId} | ||
label={ | ||
!!currentValue ? ( | ||
<FormattedMessage id="savedObjects.field.onLabel" defaultMessage="On" /> | ||
) : ( | ||
<FormattedMessage id="savedObjects.field.offLabel" defaultMessage="Off" /> | ||
) | ||
} | ||
checked={!!currentValue} | ||
onChange={e => this.onFieldChange(e.target.checked)} | ||
disabled={disabled} | ||
data-test-subj={`savedObjects-editField-${name}`} | ||
/> | ||
); | ||
case 'json': | ||
case 'array': | ||
return ( | ||
<div data-test-subj={`savedObjects-editField-${name}`}> | ||
<EuiCodeEditor | ||
id={this.fieldId} | ||
className="form-control" | ||
mode="json" | ||
theme="textmate" | ||
value={currentValue} | ||
onChange={(value: any) => this.onCodeEditorChange(value)} | ||
width="100%" | ||
height="auto" | ||
minLines={6} | ||
maxLines={30} | ||
isReadOnly={disabled} | ||
setOptions={{ | ||
showLineNumbers: true, | ||
tabSize: 2, | ||
softTabs: true, | ||
}} | ||
editorProps={{ | ||
$blockScrolling: Infinity, | ||
}} | ||
showGutter={true} | ||
fullWidth | ||
/> | ||
</div> | ||
); | ||
default: | ||
return ( | ||
<EuiFieldText | ||
id={this.fieldId} | ||
name={name} | ||
value={currentValue} | ||
onChange={e => this.onFieldChange(e.target.value)} | ||
disabled={disabled} | ||
data-test-subj={`savedObjects-editField-${name}`} | ||
/> | ||
); | ||
} | ||
} | ||
|
||
private get fieldId() { | ||
const { name } = this.props; | ||
return `savedObjects-editField-${name}`; | ||
} | ||
} |
Oops, something went wrong.