blob: 9bd1b843f5091da629e00cd423d4cd25845b99c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import React = require('react');
import { observer } from 'mobx-react';
import './CollectionSchemaView.scss';
import { EditableView } from '../../EditableView';
import { emptyFunction } from '../../../../Utils';
import { action, computed } from 'mobx';
export interface SchemaColumnHeaderProps {
columnKeys: string[];
columnWidths: number[];
columnIndex: number;
changeColumnKey: (index: number, newKey: string) => boolean;
}
@observer
export class SchemaColumnHeader extends React.Component<SchemaColumnHeaderProps> {
@computed get fieldKey() {
return this.props.columnKeys[this.props.columnIndex];
}
render() {
return (
<div className="schema-column-header" style={{ width: this.props.columnWidths[this.props.columnIndex] }}>
<EditableView SetValue={(newKey: string) => this.props.changeColumnKey(this.props.columnIndex, newKey)} GetValue={() => this.fieldKey} contents={this.fieldKey} />
</div>
);
}
}
|