blob: a9579d93131e07f56f9bbf4901c1681a858cd8ec (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
import { computed } from 'mobx';
import { observer } from 'mobx-react';
import * as React from 'react';
import { Doc } from '../../../../fields/Doc';
import { BoolCast, NumCast, StrCast } from '../../../../fields/Types';
import { EditableView } from '../../EditableView';
import { DimUnit } from './CollectionMulticolumnView';
interface WidthLabelProps {
layout: Doc;
collectionDoc: Doc;
}
@observer
export default class WidthLabel extends React.Component<WidthLabelProps> {
@computed
private get contents() {
const { layout } = this.props;
const getUnit = () => StrCast(layout.dimUnit);
const getMagnitude = () => String(+NumCast(layout.dimMagnitude).toFixed(3));
return (
<div className={'label-wrapper'}>
<EditableView
GetValue={getMagnitude}
SetValue={value => {
const converted = Number(value);
if (!isNaN(converted) && converted > 0) {
layout.dimMagnitude = converted;
return true;
}
return false;
}}
contents={getMagnitude()}
/>
<EditableView
GetValue={getUnit}
SetValue={value => {
if (Object.values(DimUnit).includes(value)) {
layout.dimUnit = value;
return true;
}
return false;
}}
contents={getUnit()}
/>
</div>
);
}
render() {
return BoolCast(this.props.collectionDoc.showWidthLabels) ? this.contents : null;
}
}
|