Types src/settings
This commit is contained in:
parent
c059bf8be3
commit
e69497fab4
12 changed files with 194 additions and 117 deletions
|
@ -2,9 +2,19 @@ import './BlacklistForm.scss';
|
|||
import AddButton from '../ui/AddButton';
|
||||
import DeleteButton from '../ui/DeleteButton';
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
class BlacklistForm extends React.Component {
|
||||
interface Props {
|
||||
value: string[];
|
||||
onChange: (value: string[]) => void;
|
||||
onBlur: () => void;
|
||||
}
|
||||
|
||||
class BlacklistForm extends React.Component<Props> {
|
||||
public static defaultProps: Props = {
|
||||
value: [],
|
||||
onChange: () => {},
|
||||
onBlur: () => {},
|
||||
};
|
||||
|
||||
render() {
|
||||
return <div className='form-blacklist-form'>
|
||||
|
@ -28,7 +38,7 @@ class BlacklistForm extends React.Component {
|
|||
</div>;
|
||||
}
|
||||
|
||||
bindValue(e) {
|
||||
bindValue(e: any) {
|
||||
let name = e.target.name;
|
||||
let index = e.target.getAttribute('data-index');
|
||||
let next = this.props.value ? this.props.value.slice() : [];
|
||||
|
@ -48,16 +58,4 @@ class BlacklistForm extends React.Component {
|
|||
}
|
||||
}
|
||||
|
||||
BlacklistForm.propTypes = {
|
||||
value: PropTypes.arrayOf(PropTypes.string),
|
||||
onChange: PropTypes.func,
|
||||
onBlur: PropTypes.func,
|
||||
};
|
||||
|
||||
BlacklistForm.defaultProps = {
|
||||
value: [],
|
||||
onChange: () => {},
|
||||
onBlur: () => {},
|
||||
};
|
||||
|
||||
export default BlacklistForm;
|
||||
|
|
|
@ -1,10 +1,22 @@
|
|||
import './KeymapsForm.scss';
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import Input from '../ui/Input';
|
||||
import keymaps from '../../keymaps';
|
||||
|
||||
class KeymapsForm extends React.Component {
|
||||
type Value = {[key: string]: string};
|
||||
|
||||
interface Props{
|
||||
value: Value;
|
||||
onChange: (e: Value) => void;
|
||||
onBlur: () => void;
|
||||
}
|
||||
|
||||
class KeymapsForm extends React.Component<Props> {
|
||||
public static defaultProps: Props = {
|
||||
value: {},
|
||||
onChange: () => {},
|
||||
onBlur: () => {},
|
||||
}
|
||||
|
||||
render() {
|
||||
return <div className='form-keymaps-form'>
|
||||
|
@ -19,7 +31,7 @@ class KeymapsForm extends React.Component {
|
|||
return <Input
|
||||
type='text' id={name} name={name} key={name}
|
||||
label={label} value={value}
|
||||
onChange={this.bindValue.bind(this)}
|
||||
onValueChange={this.bindValue.bind(this)}
|
||||
onBlur={this.props.onBlur}
|
||||
/>;
|
||||
})
|
||||
|
@ -30,22 +42,12 @@ class KeymapsForm extends React.Component {
|
|||
</div>;
|
||||
}
|
||||
|
||||
bindValue(e) {
|
||||
bindValue(name: string, value: string) {
|
||||
let next = { ...this.props.value };
|
||||
next[e.target.name] = e.target.value;
|
||||
next[name] = value;
|
||||
|
||||
this.props.onChange(next);
|
||||
}
|
||||
}
|
||||
|
||||
KeymapsForm.propTypes = {
|
||||
value: PropTypes.objectOf(PropTypes.string),
|
||||
onChange: PropTypes.func,
|
||||
};
|
||||
|
||||
KeymapsForm.defaultProps = {
|
||||
value: {},
|
||||
onChange: () => {},
|
||||
};
|
||||
|
||||
export default KeymapsForm;
|
||||
|
|
|
@ -1,8 +1,20 @@
|
|||
import './PropertiesForm.scss';
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
class PropertiesForm extends React.Component {
|
||||
interface Props {
|
||||
types: {[key: string]: string};
|
||||
value: {[key: string]: any};
|
||||
onChange: (value: any) => void;
|
||||
onBlur: () => void;
|
||||
}
|
||||
|
||||
class PropertiesForm extends React.Component<Props> {
|
||||
public static defaultProps: Props = {
|
||||
types: {},
|
||||
value: {},
|
||||
onChange: () => {},
|
||||
onBlur: () => {},
|
||||
};
|
||||
|
||||
render() {
|
||||
let types = this.props.types;
|
||||
|
@ -12,13 +24,15 @@ class PropertiesForm extends React.Component {
|
|||
{
|
||||
Object.keys(types).map((name) => {
|
||||
let type = types[name];
|
||||
let inputType = null;
|
||||
let inputType = '';
|
||||
if (type === 'string') {
|
||||
inputType = 'text';
|
||||
} else if (type === 'number') {
|
||||
inputType = 'number';
|
||||
} else if (type === 'boolean') {
|
||||
inputType = 'checkbox';
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
return <div key={name} className='form-properties-form-row'>
|
||||
<label>
|
||||
|
@ -37,7 +51,7 @@ class PropertiesForm extends React.Component {
|
|||
</div>;
|
||||
}
|
||||
|
||||
bindValue(e) {
|
||||
bindValue(e: React.ChangeEvent<HTMLInputElement>) {
|
||||
let name = e.target.name;
|
||||
let next = { ...this.props.value };
|
||||
if (e.target.type.toLowerCase() === 'checkbox') {
|
||||
|
@ -52,14 +66,4 @@ class PropertiesForm extends React.Component {
|
|||
}
|
||||
}
|
||||
|
||||
PropertiesForm.propTypes = {
|
||||
value: PropTypes.objectOf(PropTypes.any),
|
||||
onChange: PropTypes.func,
|
||||
};
|
||||
|
||||
PropertiesForm.defaultProps = {
|
||||
value: {},
|
||||
onChange: () => {},
|
||||
};
|
||||
|
||||
export default PropertiesForm;
|
||||
|
|
|
@ -1,10 +1,25 @@
|
|||
import './SearchForm.scss';
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import AddButton from '../ui/AddButton';
|
||||
import DeleteButton from '../ui/DeleteButton';
|
||||
|
||||
class SearchForm extends React.Component {
|
||||
interface Value {
|
||||
default: string;
|
||||
engines: string[][];
|
||||
}
|
||||
|
||||
interface Props {
|
||||
value: Value;
|
||||
onChange: (value: Value) => void;
|
||||
onBlur: () => void;
|
||||
}
|
||||
|
||||
class SearchForm extends React.Component<Props> {
|
||||
public static defaultProps: Props = {
|
||||
value: { default: '', engines: []},
|
||||
onChange: () => {},
|
||||
onBlur: () => {},
|
||||
}
|
||||
|
||||
render() {
|
||||
let value = this.props.value;
|
||||
|
@ -47,11 +62,11 @@ class SearchForm extends React.Component {
|
|||
</div>;
|
||||
}
|
||||
|
||||
bindValue(e) {
|
||||
bindValue(e: any) {
|
||||
let value = this.props.value;
|
||||
let name = e.target.name;
|
||||
let index = e.target.getAttribute('data-index');
|
||||
let next = {
|
||||
let index = Number(e.target.getAttribute('data-index'));
|
||||
let next: Value = {
|
||||
default: value.default,
|
||||
engines: value.engines ? value.engines.slice() : [],
|
||||
};
|
||||
|
@ -76,17 +91,4 @@ class SearchForm extends React.Component {
|
|||
}
|
||||
}
|
||||
|
||||
SearchForm.propTypes = {
|
||||
value: PropTypes.shape({
|
||||
default: PropTypes.string,
|
||||
engines: PropTypes.arrayOf(PropTypes.arrayOf(PropTypes.string)),
|
||||
}),
|
||||
onChange: PropTypes.func,
|
||||
};
|
||||
|
||||
SearchForm.defaultProps = {
|
||||
value: { default: '', engines: []},
|
||||
onChange: () => {},
|
||||
};
|
||||
|
||||
export default SearchForm;
|
||||
|
|
Reference in a new issue