blob: 7dc08389b2f9dc7d5c84d857a8c33a69afd6cfc5 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/* eslint-disable react/button-has-type */
import { observable, runInAction } from 'mobx';
import { observer } from 'mobx-react';
import * as React from 'react';
interface IKeyRestrictionProps {
contains: boolean;
script: (value: string) => void;
field: string;
value: string;
}
@observer
export default class KeyRestrictionRow extends React.Component<IKeyRestrictionProps> {
@observable private _key = this.props.field;
@observable private _value = this.props.value;
@observable private _contains = this.props.contains;
render() {
if (this._key && this._value) {
let parsedValue: string | number = `"${this._value}"`;
const parsed = parseInt(this._value);
let type = 'string';
if (!isNaN(parsed)) {
parsedValue = parsed;
type = 'number';
}
const scriptText = `${this._contains ? '' : '!'}(((doc.${this._key} && (doc.${this._key} as ${type})${type === 'string' ? '.includes' : '<='}(${parsedValue}))) ||
((doc.data_ext && doc.data_ext.${this._key}) && (doc.data_ext.${this._key} as ${type})${type === 'string' ? '.includes' : '<='}(${parsedValue}))))`;
// let doc = new Doc();
// ((doc.data_ext && doc.data_ext!.text) && (doc.data_ext!.text as string).includes("hello"));
this.props.script(scriptText);
} else {
this.props.script('');
}
return (
<div className="collectionViewBaseChrome-viewSpecsMenu-row">
<input
className="collectionViewBaseChrome-viewSpecsMenu-rowLeft"
value={this._key}
onChange={e =>
runInAction(() => {
this._key = e.target.value;
})
}
placeholder="KEY"
/>
<button
className="collectionViewBaseChrome-viewSpecsMenu-rowMiddle"
style={{ background: this._contains ? '#77dd77' : '#ff6961' }}
onClick={() =>
runInAction(() => {
this._contains = !this._contains;
})
}>
{this._contains ? 'CONTAINS' : 'DOES NOT CONTAIN'}
</button>
<input
className="collectionViewBaseChrome-viewSpecsMenu-rowRight"
value={this._value}
onChange={e =>
runInAction(() => {
this._value = e.target.value;
})
}
placeholder="VALUE"
/>
</div>
);
}
}
|