fs-walle-react-ts/src/LexSingleInput.tsx

91 lines
2.2 KiB
TypeScript
Raw Normal View History

2017-06-21 12:37:48 +00:00
import * as React from 'react';
import * as _ from 'lodash';
2017-06-22 11:34:06 +00:00
import { Label, Form } from 'semantic-ui-react';
const { Flex, Box } = require('reflexbox');
import {
Input,
Image
} from 'semantic-ui-react';
2017-06-21 12:37:48 +00:00
class LexSingleInput extends React.Component<any, any> {
2017-06-21 12:37:48 +00:00
public render() {
return (
2017-06-22 11:34:06 +00:00
<div>
<Form>
<Form.Group as={Flex} inline={true} style={{ margin: '0 0 5px 5px' }}>
<Form.Field as={Box} w={2 / 5} style={{ textAlign: 'right' }}>
2017-07-18 08:04:02 +00:00
{this.props.label}
2017-06-22 11:34:06 +00:00
</Form.Field>
<Form.Field as={Box} w={3 / 5} >
{this.props.children}
</Form.Field>
</Form.Group>
</Form>
2017-06-21 12:37:48 +00:00
</div>
);
}
}
2017-07-18 08:04:02 +00:00
function changedLabel(changed: boolean, text: string) {
let labelClass = changed ? 'olive' : '';
return (
<Label
pointing="right"
className={labelClass}
>
{text}
</Label>
);
}
const imageRoot = '/png/';
export function textInput(params: any) {
2017-07-18 08:04:02 +00:00
let { field, sh, defaultText, changed } = params;
return (
2017-07-18 08:04:02 +00:00
<LexSingleInput
label={changedLabel(changed, field)}
key={field}
>
<Input
onChange={sh}
2017-07-18 08:04:02 +00:00
value={defaultText}
placeholder={field}
type="text"
dir="auto"
style={{ width: '10em' }}
/>
</LexSingleInput>
);
}
export function selectInput(params: any) {
2017-07-18 08:04:02 +00:00
let { field, sh, defaultText, options, langSelOpts, changed } = params;
let staticOpts = options;
let fieldOpts = _.get<any>(langSelOpts, field, []);
let selOpts = staticOpts ? staticOpts : fieldOpts;
return (
2017-07-18 08:04:02 +00:00
<LexSingleInput key={field} label={changedLabel(changed, field)}>
<select
onChange={sh}
style={{ width: '10em' }}
2017-07-18 08:04:02 +00:00
value={defaultText}
>
{selOpts.map((k: any, i: any, c: any) => {
return <option key={i} value={k}> {k}</option>;
})}
</select>
</LexSingleInput>
);
}
export function imagePreview(params: any) {
2017-07-18 08:04:02 +00:00
let { field, defaultText, changed } = params;
let imageSrc = imageRoot + defaultText;
return defaultText !== '' ? (
2017-07-18 08:04:02 +00:00
<LexSingleInput key={field} label={changedLabel(changed, field)}>
<Image src={imageSrc} size="tiny" bordered={true} />
</LexSingleInput>
) : textInput(params);
}