blob: 5b205442823985fc9f8cd6b23b5369aa2ce70f88 (
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
54
55
56
|
import * as React from "react";
import { observer } from "mobx-react";
import { computed } from "mobx";
import { Doc } from "../../../../new_fields/Doc";
import { NumCast, StrCast, BoolCast } from "../../../../new_fields/Types";
import { EditableView } from "../../EditableView";
import { DimUnit } from "./CollectionMulticolumnView";
interface WidthLabelProps {
layout: Doc;
collectionDoc: Doc;
decimals?: number;
}
@observer
export default class WidthLabel extends React.Component<WidthLabelProps> {
@computed
private get contents() {
const { layout, decimals } = this.props;
const getUnit = () => StrCast(layout.dimUnit);
const getMagnitude = () => String(+NumCast(layout.dimMagnitude).toFixed(decimals ?? 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);
}
}
|