mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-05-13 14:23:10 +00:00
Fix CodeMirror not refreshing on value change.
On changing a different device-profile template and thus changing the this.state.value, CodeMirror would not rerender until focussing the textarea field.
This commit is contained in:
parent
6dbbaff7b6
commit
9ab2f77ee2
@ -17,6 +17,7 @@ interface IProps {
|
|||||||
|
|
||||||
interface IState {
|
interface IState {
|
||||||
value: string;
|
value: string;
|
||||||
|
reloadKey: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
class CodeEditor extends Component<IProps, IState> {
|
class CodeEditor extends Component<IProps, IState> {
|
||||||
@ -24,6 +25,7 @@ class CodeEditor extends Component<IProps, IState> {
|
|||||||
super(props);
|
super(props);
|
||||||
this.state = {
|
this.state = {
|
||||||
value: "",
|
value: "",
|
||||||
|
reloadKey: 0,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -43,6 +45,7 @@ class CodeEditor extends Component<IProps, IState> {
|
|||||||
if (this.props.value) {
|
if (this.props.value) {
|
||||||
this.setState({
|
this.setState({
|
||||||
value: this.props.value,
|
value: this.props.value,
|
||||||
|
reloadKey: this.state.reloadKey + 1,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -75,7 +78,7 @@ class CodeEditor extends Component<IProps, IState> {
|
|||||||
return (
|
return (
|
||||||
<Form.Item label={this.props.label} name={this.props.name} tooltip={this.props.tooltip}>
|
<Form.Item label={this.props.label} name={this.props.name} tooltip={this.props.tooltip}>
|
||||||
<div style={{ border: "1px solid #cccccc" }}>
|
<div style={{ border: "1px solid #cccccc" }}>
|
||||||
<CodeMirror value={this.state.value} options={codeMirrorOptions} onBeforeChange={this.handleChange} />
|
<CodeMirror key={`code-editor-refresh-${this.state.reloadKey}`} value={this.state.value} options={codeMirrorOptions} onBeforeChange={this.handleChange} />
|
||||||
</div>
|
</div>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
);
|
);
|
||||||
|
@ -331,8 +331,6 @@ class DeviceProfileForm extends Component<IProps, IState> {
|
|||||||
templateModalVisible: false,
|
templateModalVisible: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log(dp.toObject().tagsMap);
|
|
||||||
|
|
||||||
this.formRef.current.setFieldsValue({
|
this.formRef.current.setFieldsValue({
|
||||||
name: dp.getName(),
|
name: dp.getName(),
|
||||||
description: dp.getDescription(),
|
description: dp.getDescription(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user