@things-factory/integration-ui 5.0.0-zeta.2 → 5.0.0-zeta.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/client/bootstrap.js
CHANGED
|
@@ -2,15 +2,15 @@ import '@material/mwc-icon'
|
|
|
2
2
|
import './editors/entity-editor'
|
|
3
3
|
import './editors/property-editor'
|
|
4
4
|
|
|
5
|
+
import { OxGristEditorJson } from '@operato/app/grist-editor/ox-grist-editor-json.js'
|
|
6
|
+
import { OxGristRendererCrontab } from '@operato/app/grist-editor/ox-grist-renderer-crontab.js'
|
|
5
7
|
import { registerEditor as registerGristEditor, registerRenderer as registerGristRenderer } from '@operato/data-grist'
|
|
8
|
+
import { OxGristEditorCrontab } from '@operato/grist-editor/ox-grist-editor-crontab.js'
|
|
9
|
+
import { OxGristEditorParameters } from '@operato/grist-editor/ox-grist-editor-parameters.js'
|
|
10
|
+
import { OxPropertyEditor } from '@operato/property-editor'
|
|
6
11
|
|
|
7
12
|
import { ConnectionSelector } from './grist/connection-selector'
|
|
8
13
|
import { ConnectorSelector } from './grist/connector-selector'
|
|
9
|
-
import { OxGristEditorCrontab } from '@operato/app/grist-editor/ox-grist-editor-crontab.js'
|
|
10
|
-
import { OxGristEditorJson } from '@operato/app/grist-editor/ox-grist-editor-json.js'
|
|
11
|
-
import { OxGristEditorParameters } from '@operato/app/grist-editor/ox-grist-editor-parameters.js'
|
|
12
|
-
import { OxGristRendererCrontab } from '@operato/app/grist-editor/ox-grist-renderer-crontab.js'
|
|
13
|
-
import { OxPropertyEditor } from '@operato/property-editor'
|
|
14
14
|
import { TaskTypeSelector } from './grist/task-type-selector'
|
|
15
15
|
|
|
16
16
|
export default function bootstrap() {
|
|
@@ -14,12 +14,12 @@ export class PropertyEditorEntitySelector extends OxPropertyEditor {
|
|
|
14
14
|
return [...OxPropertyEditor.styles]
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
editorTemplate(
|
|
17
|
+
editorTemplate(value, spec) {
|
|
18
18
|
return html`
|
|
19
19
|
<things-editor-entity-selector
|
|
20
20
|
id="editor"
|
|
21
|
-
.value=${
|
|
22
|
-
.properties=${
|
|
21
|
+
.value=${value}
|
|
22
|
+
.properties=${spec.property}
|
|
23
23
|
></things-editor-entity-selector>
|
|
24
24
|
`
|
|
25
25
|
}
|
|
@@ -14,13 +14,13 @@ export class PropertyEditorScenarioStepInput extends OxPropertyEditor {
|
|
|
14
14
|
return [...OxPropertyEditor.styles]
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
editorTemplate(
|
|
17
|
+
editorTemplate(value, spec) {
|
|
18
18
|
/* context must be a datagrid(grist) instance, and host must be a record */
|
|
19
|
-
const { context: grid, host: record } =
|
|
19
|
+
const { context: grid, host: record } = spec
|
|
20
20
|
const steps = grid?.dirtyData.records.filter(rec => rec.name !== record.name).map(rec => rec.name) || []
|
|
21
21
|
|
|
22
22
|
return html`
|
|
23
|
-
<input id="editor" .value=${
|
|
23
|
+
<input id="editor" .value=${value || ''} list="step-list" />
|
|
24
24
|
<datalist id="step-list">${steps.map(id => html` <option value=${id}></option> `)}</datalist>
|
|
25
25
|
`
|
|
26
26
|
}
|
|
@@ -33,13 +33,9 @@ export class PropertyEditorHttpHeaders extends OxPropertyEditor {
|
|
|
33
33
|
return [...OxPropertyEditor.styles]
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
editorTemplate(
|
|
36
|
+
editorTemplate(value, spec) {
|
|
37
37
|
return html`
|
|
38
|
-
<things-editor-http-headers
|
|
39
|
-
id="editor"
|
|
40
|
-
.value=${props.value}
|
|
41
|
-
.properties=${props.property}
|
|
42
|
-
></things-editor-http-headers>
|
|
38
|
+
<things-editor-http-headers id="editor" .value=${value} .properties=${spec.property}></things-editor-http-headers>
|
|
43
39
|
`
|
|
44
40
|
}
|
|
45
41
|
}
|
|
@@ -51,12 +47,12 @@ export class PropertyEditorHttpParameters extends OxPropertyEditor {
|
|
|
51
47
|
return [...OxPropertyEditor.styles]
|
|
52
48
|
}
|
|
53
49
|
|
|
54
|
-
editorTemplate(
|
|
50
|
+
editorTemplate(value, spec) {
|
|
55
51
|
return html`
|
|
56
52
|
<things-editor-http-parameters
|
|
57
53
|
id="editor"
|
|
58
|
-
.value=${
|
|
59
|
-
.properties=${
|
|
54
|
+
.value=${value}
|
|
55
|
+
.properties=${spec.property}
|
|
60
56
|
></things-editor-http-parameters>
|
|
61
57
|
`
|
|
62
58
|
}
|
|
@@ -69,13 +65,9 @@ export class PropertyEditorHttpBody extends OxPropertyEditor {
|
|
|
69
65
|
return [...OxPropertyEditor.styles]
|
|
70
66
|
}
|
|
71
67
|
|
|
72
|
-
editorTemplate(
|
|
68
|
+
editorTemplate(value, spec) {
|
|
73
69
|
return html`
|
|
74
|
-
<things-editor-http-body
|
|
75
|
-
id="editor"
|
|
76
|
-
.value=${props.value}
|
|
77
|
-
.properties=${props.property}
|
|
78
|
-
></things-editor-http-body>
|
|
70
|
+
<things-editor-http-body id="editor" .value=${value} .properties=${spec.property}></things-editor-http-body>
|
|
79
71
|
`
|
|
80
72
|
}
|
|
81
73
|
}
|
|
@@ -78,7 +78,7 @@ export class Connection extends connect(store)(localize(i18next)(PageView)) {
|
|
|
78
78
|
.fetchHandler=${this.fetchHandler.bind(this)}
|
|
79
79
|
>
|
|
80
80
|
<div slot="headroom" id="filters">
|
|
81
|
-
<ox-filters-form></ox-filters-form>
|
|
81
|
+
<ox-filters-form autofocus></ox-filters-form>
|
|
82
82
|
</div>
|
|
83
83
|
</ox-grist>
|
|
84
84
|
`
|
package/client/pages/scenario.js
CHANGED
|
@@ -104,7 +104,7 @@ export class Scenario extends connect(store)(localize(i18next)(PageView)) {
|
|
|
104
104
|
.fetchHandler=${this.fetchHandler.bind(this)}
|
|
105
105
|
>
|
|
106
106
|
<div slot="headroom" id="filters">
|
|
107
|
-
<ox-filters-form></ox-filters-form>
|
|
107
|
+
<ox-filters-form autofocus></ox-filters-form>
|
|
108
108
|
</div>
|
|
109
109
|
</ox-grist>
|
|
110
110
|
`
|
|
@@ -418,7 +418,6 @@ export class Scenario extends connect(store)(localize(i18next)(PageView)) {
|
|
|
418
418
|
patchField[key] = dirtyFields[key].after
|
|
419
419
|
}
|
|
420
420
|
}
|
|
421
|
-
this._setDefaultFieldsValue(patchField)
|
|
422
421
|
patchField.cuFlag = patch.__dirty__
|
|
423
422
|
|
|
424
423
|
return patchField
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/integration-ui",
|
|
3
|
-
"version": "5.0.0-zeta.
|
|
3
|
+
"version": "5.0.0-zeta.20",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -24,20 +24,21 @@
|
|
|
24
24
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@operato/app": "^1.0.0-beta.
|
|
28
|
-
"@operato/data-grist": "1.0.0-beta.
|
|
29
|
-
"@operato/graphql": "1.0.0-beta.
|
|
30
|
-
"@operato/
|
|
31
|
-
"@operato/
|
|
32
|
-
"@operato/
|
|
33
|
-
"@operato/
|
|
34
|
-
"@operato/
|
|
35
|
-
"@operato/
|
|
36
|
-
"@
|
|
37
|
-
"@things-factory/
|
|
38
|
-
"@things-factory/
|
|
27
|
+
"@operato/app": "^1.0.0-beta.47",
|
|
28
|
+
"@operato/data-grist": "^1.0.0-beta.47",
|
|
29
|
+
"@operato/graphql": "^1.0.0-beta.47",
|
|
30
|
+
"@operato/grist-editor": "^1.0.0-beta.47",
|
|
31
|
+
"@operato/help": "^1.0.0-beta.47",
|
|
32
|
+
"@operato/i18n": "^1.0.0-beta.47",
|
|
33
|
+
"@operato/layout": "^1.0.0-beta.47",
|
|
34
|
+
"@operato/property-editor": "^1.0.0-beta.47",
|
|
35
|
+
"@operato/styles": "^1.0.0-beta.47",
|
|
36
|
+
"@operato/utils": "^1.0.0-beta.47",
|
|
37
|
+
"@things-factory/export-base": "^5.0.0-zeta.20",
|
|
38
|
+
"@things-factory/import-base": "^5.0.0-zeta.20",
|
|
39
|
+
"@things-factory/integration-base": "^5.0.0-zeta.20",
|
|
39
40
|
"moment-timezone": "^0.5.27",
|
|
40
41
|
"subscriptions-transport-ws": "^0.11.0"
|
|
41
42
|
},
|
|
42
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "34981af408c52ca2472fdbd70ea3b5fbe0ab4073"
|
|
43
44
|
}
|