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

86 lines
2.5 KiB
TypeScript
Raw Normal View History

2017-06-27 09:33:34 +00:00
import * as React from 'react';
import * as _ from 'lodash';
import {
textInput,
selectInput,
imagePreview
} from './LexSingleInput';
import {
2017-06-27 09:33:34 +00:00
Card,
Button
} from 'semantic-ui-react';
const { Box } = require('reflexbox');
export class LexEdit extends React.Component<any, any> {
2017-07-13 10:30:36 +00:00
imageRoot = '/png/';
constructor(props: any) {
super(props);
this.state = { lexItem: this.props.lexItem };
}
2017-06-27 09:33:34 +00:00
public render() {
2017-07-13 10:30:36 +00:00
let li = this.state.lexItem;
let editLang = _.get<any>(li, this.props.fieldMetaMap.lang.lens, 'en');
let langSelOpts = _.get<any>(this.props.selectionMeta, editLang, []);
2017-07-12 06:02:01 +00:00
let lexFields = _.keys(this.props.fieldMetaMap).map(field => {
let lens = this.props.fieldMetaMap[field].lens;
let defaultText = _.get<any>(li, lens, '');
let options = this.props.fieldMetaMap[field].options;
2017-06-27 09:33:34 +00:00
let sh = (e: any) => {
let eventData = {};
eventData[field] = e.target.value;
this.handleOnChange(eventData);
};
2017-07-12 06:02:01 +00:00
if (this.props.fieldMetaMap[field].type === 'text') {
return textInput({field,sh,defaultText,options,langSelOpts});
2017-07-12 06:02:01 +00:00
} else if (this.props.fieldMetaMap[field].type === 'select') {
return selectInput({field,sh,defaultText,options,langSelOpts});
2017-07-12 06:02:01 +00:00
} else if (this.props.fieldMetaMap[field].type === 'preview' && defaultText !== '') {
return imagePreview({field,sh,defaultText,options,langSelOpts});
2017-06-27 09:33:34 +00:00
} else {
return null;
}
});
return (
<Box m={2}>
<Card raised={true}>
<Card.Content>
<Card.Header>
{_.get<any>(li, 'label', '')}
</Card.Header>
<Card.Meta>
language: {_.get<any>(li, '$.id', '')}
</Card.Meta>
<Card.Description>
{lexFields}
</Card.Description>
</Card.Content>
<Card.Content extra={true}>
<Button
basic={true}
fluid={true}
color="green"
onClick={(e, d) => this.handleOnSave(d)}
>
Save
</Button>
</Card.Content>
</Card>
</Box>
);
}
private handleOnChange(event: any) {
2017-07-13 10:30:36 +00:00
let type = _.keys(event)[0];
let value = _.values(event)[0];
let lens = this.props.fieldMetaMap[type].lens;
let { lexItem: lexItem } = this.state;
_.set(lexItem, lens, value);
this.setState(lexItem);
2017-06-27 09:33:34 +00:00
}
private handleOnSave(event: any) {
2017-07-13 13:36:47 +00:00
this.props.save(this.state.lexItem);
2017-07-13 10:30:36 +00:00
console.log('saving object :', this.state.lexItem);
2017-06-27 09:33:34 +00:00
}
}