@operato/process 8.0.0-beta.0 → 8.0.0-beta.1

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.
Files changed (53) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +14 -14
  3. package/.storybook/main.js +0 -3
  4. package/.storybook/preview.js +0 -52
  5. package/.storybook/server.mjs +0 -8
  6. package/src/data-storage/data-storage.ts +0 -47
  7. package/src/graphql/data-subscription.ts +0 -30
  8. package/src/graphql/favorite-process.ts +0 -25
  9. package/src/graphql/index.ts +0 -3
  10. package/src/graphql/process-group.ts +0 -138
  11. package/src/graphql/process.ts +0 -141
  12. package/src/graphql/scenario.ts +0 -79
  13. package/src/index.ts +0 -8
  14. package/src/modeller/component-toolbar/component-detail.ts +0 -58
  15. package/src/modeller/component-toolbar/component-menu.ts +0 -193
  16. package/src/modeller/component-toolbar/component-toolbar.ts +0 -196
  17. package/src/modeller/component-toolbar/mode-icons.ts +0 -88
  18. package/src/modeller/edit-toolbar-style.ts +0 -229
  19. package/src/modeller/edit-toolbar.ts +0 -576
  20. package/src/modeller/property-sidebar/abstract-property.ts +0 -69
  21. package/src/modeller/property-sidebar/data-binding/data-binding-mapper.ts +0 -475
  22. package/src/modeller/property-sidebar/data-binding/data-binding.ts +0 -479
  23. package/src/modeller/property-sidebar/effects/effects-shared-style.ts +0 -62
  24. package/src/modeller/property-sidebar/effects/effects.ts +0 -52
  25. package/src/modeller/property-sidebar/effects/property-event-hover.ts +0 -201
  26. package/src/modeller/property-sidebar/effects/property-event-tap.ts +0 -212
  27. package/src/modeller/property-sidebar/effects/property-event.ts +0 -76
  28. package/src/modeller/property-sidebar/effects/property-shadow.ts +0 -114
  29. package/src/modeller/property-sidebar/effects/value-converter.ts +0 -23
  30. package/src/modeller/property-sidebar/inspector/inspector.ts +0 -408
  31. package/src/modeller/property-sidebar/property-shared-style.ts +0 -136
  32. package/src/modeller/property-sidebar/property-sidebar.ts +0 -342
  33. package/src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts +0 -94
  34. package/src/modeller/property-sidebar/shapes/shapes.ts +0 -410
  35. package/src/modeller/property-sidebar/specifics/specific-properties-builder.ts +0 -147
  36. package/src/modeller/property-sidebar/specifics/specifics.ts +0 -81
  37. package/src/modeller/property-sidebar/styles/styles.ts +0 -577
  38. package/src/ox-editor-process-selector.ts +0 -91
  39. package/src/ox-process-list.ts +0 -401
  40. package/src/ox-process-modeller.ts +0 -432
  41. package/src/ox-process-template-list.ts +0 -272
  42. package/src/ox-process-template-viewer.ts +0 -198
  43. package/src/ox-process-viewer.ts +0 -575
  44. package/src/ox-property-editor-process-selector.ts +0 -23
  45. package/src/selector/ox-process-creation-card.ts +0 -95
  46. package/src/selector/ox-process-selector.ts +0 -324
  47. package/src/selector/process-creation-popup.ts +0 -151
  48. package/src/selector/process-thumbnail-card.ts +0 -175
  49. package/src/types.ts +0 -57
  50. package/stories/index.stories.ts +0 -54
  51. package/tsconfig.json +0 -24
  52. package/web-dev-server.config.mjs +0 -30
  53. package/web-test-runner.config.mjs +0 -29
@@ -1,198 +0,0 @@
1
- import '@material/web/icon/icon.js'
2
- import '@material/web/fab/fab.js'
3
-
4
- import { css, html, LitElement, PropertyValues } from 'lit'
5
- import { customElement, property, query, state } from 'lit/decorators.js'
6
-
7
- import { create, SCENE_MODE } from '@hatiolab/things-scene'
8
- import { ScrollbarStyles } from '@operato/styles'
9
-
10
- @customElement('ox-process-template-viewer')
11
- export class ProcessTemplateViewer extends LitElement {
12
- static styles = [
13
- ScrollbarStyles,
14
- css`
15
- :host {
16
- display: flex;
17
- flex-direction: column;
18
-
19
- position: relative;
20
-
21
- width: 100%; /* 전체화면보기를 위해서 필요함. */
22
- overflow: hidden;
23
- }
24
-
25
- #target {
26
- flex: 1;
27
-
28
- width: 100%; /* 전체화면보기를 위해서 필요함. */
29
- height: 100%;
30
-
31
- outline: 0;
32
- }
33
-
34
- @media print {
35
- md-fab,
36
- md-icon {
37
- display: none;
38
- }
39
- }
40
- `
41
- ]
42
-
43
- @property({ type: Object }) processTemplate: any = {}
44
-
45
- @state() _scene: any = null
46
-
47
- @query('#target') _target!: HTMLElement
48
-
49
- render() {
50
- return html` <div id="target"></div> `
51
- }
52
-
53
- private resizeHandler = () => {
54
- this._scene && this._scene.fit()
55
- }
56
-
57
- connectedCallback() {
58
- super.connectedCallback()
59
-
60
- window.addEventListener('resize', this.resizeHandler)
61
-
62
- window.addEventListener('orientationchange', this.resizeHandler)
63
- }
64
-
65
- disconnectedCallback() {
66
- window.removeEventListener('resize', this.resizeHandler)
67
- window.removeEventListener('orientationchange', this.resizeHandler)
68
-
69
- super.disconnectedCallback()
70
-
71
- this.closeScene()
72
- }
73
-
74
- updated(changes: PropertyValues<this>) {
75
- if (changes.has('processTemplate')) {
76
- this.closeScene()
77
-
78
- if (this.processTemplate && this.processTemplate.id) {
79
- this.initScene()
80
- }
81
- }
82
- }
83
-
84
- initScene() {
85
- if (!this.processTemplate || !this.processTemplate.id) return
86
-
87
- this._scene = create({
88
- model: {
89
- ...this.processTemplate.model
90
- },
91
- mode: SCENE_MODE.VIEW
92
- })
93
-
94
- this.setupScene({ id: this.processTemplate.id, scene: this._scene })
95
- }
96
-
97
- closeScene() {
98
- if (this._scene) {
99
- this._scene.target = null
100
- this._scene.release && this._scene.release()
101
-
102
- this._scene = null
103
- }
104
- }
105
-
106
- releaseScene() {
107
- this.closeScene()
108
- }
109
-
110
- setupScene({ id, scene }: { id: string; scene: any }) {
111
- this._scene = scene
112
-
113
- const backgroundColor = this._scene?.root.state.fillStyle
114
- if (typeof backgroundColor === 'string') {
115
- this.style.backgroundColor = backgroundColor
116
- } else {
117
- this.style.backgroundColor = 'initial'
118
- }
119
-
120
- /* scene의 기존 target을 보관한다. */
121
-
122
- this._scene.fit(this._scene.fitMode)
123
- this._scene.target = this._target
124
- }
125
-
126
- /* event handlers */
127
- async getSceneImageData(base64 = false) {
128
- if (!this._scene) {
129
- return
130
- }
131
-
132
- var { width, height } = this._scene.model
133
- var pixelRatio = window.devicePixelRatio
134
-
135
- // 1. Scene의 바운드에 근거하여, 오프스크린 캔바스를 만든다.
136
- var canvas = document.createElement('canvas')
137
- canvas.width = Number(width)
138
- canvas.height = Number(height)
139
-
140
- var root = this._scene.root
141
- // 2. 모델레이어의 원래 위치와 스케일을 저장한다.
142
- var translate = root.get('translate')
143
- var scale = root.get('scale')
144
-
145
- // 3. 위치와 스케일 기본 설정.
146
- root.set('translate', { x: 0, y: 0 })
147
- root.set('scale', { x: 1 / pixelRatio, y: 1 / pixelRatio })
148
-
149
- // 4. 오프스크린 캔바스의 Context2D를 구한뒤, 모델레이어를 그 위에 그린다.
150
- var context = canvas.getContext('2d')
151
-
152
- root.draw(context)
153
-
154
- root.set('translate', translate)
155
- root.set('scale', scale)
156
-
157
- var data = base64 ? canvas.toDataURL() : context!.getImageData(0, 0, width, height).data
158
-
159
- return {
160
- width,
161
- height,
162
- data
163
- }
164
- }
165
-
166
- async printTrick(image: string) {
167
- var viewTarget: HTMLElement | null = null
168
- var printTarget: HTMLImageElement | null = null
169
-
170
- if (!image) {
171
- image = (await this.getSceneImageData(true))?.data as string
172
- }
173
-
174
- printTarget = document.createElement('img')
175
- printTarget.id = 'target'
176
- printTarget.src = image
177
- printTarget.style.width = '100%'
178
- printTarget.style.height = '100%'
179
-
180
- const x = (mql: MediaQueryListEvent) => {
181
- if (mql.matches) {
182
- if (!viewTarget) {
183
- viewTarget = (this.renderRoot as ShadowRoot)!.getElementById('target')
184
- this.renderRoot.replaceChild(printTarget!, viewTarget!)
185
- }
186
- } else {
187
- this.renderRoot.replaceChild(viewTarget!, printTarget!)
188
- printTarget!.remove()
189
- mediaQueryList.removeEventListener('change', x)
190
- }
191
- }
192
-
193
- if (window.matchMedia) {
194
- var mediaQueryList = window.matchMedia('print')
195
- mediaQueryList.addEventListener('change', x)
196
- }
197
- }
198
- }