@operato/input 1.0.0-alpha.4 → 1.0.0-alpha.42
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/CHANGELOG.md +327 -0
- package/README.md +9 -6
- package/assets/images/icon-editor-gradient-direction.png +0 -0
- package/assets/images/icon-properties-label.png +0 -0
- package/assets/images/icon-properties-line-type.png +0 -0
- package/assets/images/icon-properties-table.png +0 -0
- package/demo/index-color-gradient.html +35 -0
- package/demo/index-color-stops.html +62 -0
- package/demo/index-color.html +35 -0
- package/demo/index-crontab.html +36 -0
- package/demo/index-file.html +41 -0
- package/demo/index-image.html +1 -1
- package/demo/index-multiple-colors.html +37 -0
- package/demo/index-options.html +43 -0
- package/demo/index-partition-keys.html +71 -0
- package/demo/index-range.html +40 -0
- package/demo/index-select.html +21 -14
- package/demo/index-table.html +39 -0
- package/demo/index-value-map.html +80 -0
- package/demo/index-value-ranges.html +80 -0
- package/demo/index.html +23 -54
- package/dist/src/index.d.ts +21 -11
- package/dist/src/index.js +21 -11
- package/dist/src/index.js.map +1 -1
- package/dist/src/ox-checkbox.d.ts +1 -1
- package/dist/src/ox-checkbox.js +2 -2
- package/dist/src/ox-checkbox.js.map +1 -1
- package/dist/src/ox-input-code.d.ts +4 -4
- package/dist/src/ox-input-code.js +8 -8
- package/dist/src/ox-input-code.js.map +1 -1
- package/dist/src/ox-input-color-gradient.d.ts +26 -0
- package/dist/src/ox-input-color-gradient.js +318 -0
- package/dist/src/ox-input-color-gradient.js.map +1 -0
- package/dist/src/ox-input-color-stops.d.ts +71 -0
- package/dist/src/ox-input-color-stops.js +445 -0
- package/dist/src/ox-input-color-stops.js.map +1 -0
- package/dist/src/ox-input-color.d.ts +176 -0
- package/dist/src/ox-input-color.js +298 -0
- package/dist/src/ox-input-color.js.map +1 -0
- package/dist/src/ox-input-crontab.d.ts +23 -0
- package/dist/src/ox-input-crontab.js +560 -0
- package/dist/src/ox-input-crontab.js.map +1 -0
- package/dist/src/ox-input-data.d.ts +2 -2
- package/dist/src/ox-input-data.js +2 -2
- package/dist/src/ox-input-data.js.map +1 -1
- package/dist/src/ox-input-file.d.ts +2 -0
- package/dist/src/ox-input-file.js +6 -1
- package/dist/src/ox-input-file.js.map +1 -1
- package/dist/src/ox-input-layout/ox-input-card-layout.d.ts +4 -0
- package/dist/src/ox-input-layout/ox-input-card-layout.js +57 -0
- package/dist/src/ox-input-layout/ox-input-card-layout.js.map +1 -0
- package/dist/src/ox-input-layout/ox-input-grid-layout.d.ts +4 -0
- package/dist/src/ox-input-layout/ox-input-grid-layout.js +63 -0
- package/dist/src/ox-input-layout/ox-input-grid-layout.js.map +1 -0
- package/dist/src/ox-input-layout/ox-input-layout.d.ts +5 -0
- package/dist/src/ox-input-layout/ox-input-layout.js +73 -0
- package/dist/src/ox-input-layout/ox-input-layout.js.map +1 -0
- package/dist/src/ox-input-multiple-colors.d.ts +28 -0
- package/dist/src/ox-input-multiple-colors.js +113 -0
- package/dist/src/ox-input-multiple-colors.js.map +1 -0
- package/dist/src/ox-input-options.d.ts +22 -0
- package/dist/src/ox-input-options.js +137 -0
- package/dist/src/ox-input-options.js.map +1 -0
- package/dist/src/ox-input-partition-keys.d.ts +36 -0
- package/dist/src/ox-input-partition-keys.js +204 -0
- package/dist/src/ox-input-partition-keys.js.map +1 -0
- package/dist/src/ox-input-range.d.ts +4 -0
- package/dist/src/ox-input-range.js +161 -0
- package/dist/src/ox-input-range.js.map +1 -0
- package/dist/src/ox-input-scene-component-id.d.ts +11 -0
- package/dist/src/ox-input-scene-component-id.js +68 -0
- package/dist/src/ox-input-scene-component-id.js.map +1 -0
- package/dist/src/ox-input-stack.d.ts +1 -1
- package/dist/src/ox-input-stack.js +1 -1
- package/dist/src/ox-input-stack.js.map +1 -1
- package/dist/src/ox-input-table.d.ts +8 -0
- package/dist/src/ox-input-table.js +379 -0
- package/dist/src/ox-input-table.js.map +1 -0
- package/dist/src/ox-input-value-map.d.ts +41 -0
- package/dist/src/ox-input-value-map.js +279 -0
- package/dist/src/ox-input-value-map.js.map +1 -0
- package/dist/src/ox-input-value-ranges.d.ts +41 -0
- package/dist/src/ox-input-value-ranges.js +298 -0
- package/dist/src/ox-input-value-ranges.js.map +1 -0
- package/dist/src/ox-select.d.ts +3 -0
- package/dist/src/ox-select.js +28 -3
- package/dist/src/ox-select.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +25 -7
- package/src/index.ts +21 -11
- package/src/ox-checkbox.ts +3 -3
- package/src/ox-input-code.ts +9 -10
- package/src/ox-input-color-gradient.ts +343 -0
- package/src/ox-input-color-stops.ts +499 -0
- package/src/ox-input-color.ts +323 -0
- package/src/ox-input-crontab.ts +560 -0
- package/src/ox-input-data.ts +5 -5
- package/src/ox-input-file.ts +8 -3
- package/src/ox-input-layout/ox-input-card-layout.ts +58 -0
- package/src/ox-input-layout/ox-input-grid-layout.ts +64 -0
- package/src/ox-input-layout/ox-input-layout.ts +77 -0
- package/src/ox-input-multiple-colors.ts +113 -0
- package/src/ox-input-options.ts +165 -0
- package/src/ox-input-partition-keys.ts +243 -0
- package/src/ox-input-range.ts +147 -0
- package/src/{ox-input-id.ts → ox-input-scene-component-id.ts} +1 -1
- package/src/ox-input-stack.ts +1 -1
- package/src/ox-input-table.ts +404 -0
- package/src/{ox-input-keyvalues.ts.ing → ox-input-value-map.ts} +125 -94
- package/src/ox-input-value-ranges.ts +325 -0
- package/src/ox-select.ts +31 -5
- package/translations/en.json +1 -0
- package/translations/ko.json +1 -0
- package/translations/ms.json +1 -0
- package/translations/zh.json +1 -0
- package/src/ox-input-ranges.ts.ing +0 -292
package/src/ox-select.ts
CHANGED
@@ -5,16 +5,30 @@
|
|
5
5
|
import '@material/mwc-icon'
|
6
6
|
import '@operato/popup/ox-popup-list.js'
|
7
7
|
|
8
|
-
import { css, html } from 'lit'
|
9
|
-
import { customElement, property } from 'lit/decorators.js'
|
8
|
+
import { PropertyValues, css, html } from 'lit'
|
9
|
+
import { customElement, property, query, state } from 'lit/decorators.js'
|
10
10
|
|
11
|
+
import { OxFormField } from './ox-form-field.js'
|
11
12
|
import { OxPopupList } from '@operato/popup'
|
13
|
+
import { TooltipStyles } from '@operato/styles'
|
14
|
+
import { detectOverflow } from '@operato/utils'
|
12
15
|
|
13
|
-
|
16
|
+
function onmouseover(e: Event) {
|
17
|
+
const element = e.target as HTMLSpanElement
|
18
|
+
if (detectOverflow(element)) {
|
19
|
+
element.setAttribute('data-tooltip', element.textContent!)
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
function onmouseout(e: Event) {
|
24
|
+
const element = e.target as HTMLSpanElement
|
25
|
+
element.removeAttribute('data-tooltip')
|
26
|
+
}
|
14
27
|
|
15
28
|
@customElement('ox-select')
|
16
29
|
export class Select extends OxFormField {
|
17
30
|
static styles = [
|
31
|
+
TooltipStyles,
|
18
32
|
css`
|
19
33
|
:host {
|
20
34
|
display: block;
|
@@ -54,12 +68,14 @@ export class Select extends OxFormField {
|
|
54
68
|
@property({ type: String }) name: string = ''
|
55
69
|
@property({ type: String }) placeholder: string = ''
|
56
70
|
|
71
|
+
@state() label: string | string[] = ''
|
72
|
+
|
57
73
|
render() {
|
58
|
-
const label = (this.
|
74
|
+
const label = (this.label instanceof Array ? this.label.join(', ') : this.label?.trim()) || this.placeholder || ''
|
59
75
|
|
60
76
|
return html`
|
61
77
|
<div @click=${this.expand}>
|
62
|
-
<span>${label}</span>
|
78
|
+
<span @mouseover=${onmouseover} @mouseout=${onmouseout}>${label}</span>
|
63
79
|
<mwc-icon>expand_more</mwc-icon>
|
64
80
|
</div>
|
65
81
|
|
@@ -93,6 +109,16 @@ export class Select extends OxFormField {
|
|
93
109
|
})
|
94
110
|
}
|
95
111
|
|
112
|
+
async updated(changes: PropertyValues<this>) {
|
113
|
+
if (changes.has('value')) {
|
114
|
+
const popupList = this.querySelector('ox-popup-list') as OxPopupList
|
115
|
+
popupList.value = this.value
|
116
|
+
|
117
|
+
await this.requestUpdate()
|
118
|
+
this.label = popupList.getSelectedLabels()
|
119
|
+
}
|
120
|
+
}
|
121
|
+
|
96
122
|
expand() {
|
97
123
|
const popupList = this.querySelector('ox-popup-list') as OxPopupList
|
98
124
|
|
@@ -0,0 +1 @@
|
|
1
|
+
{}
|
@@ -0,0 +1 @@
|
|
1
|
+
{}
|
@@ -0,0 +1 @@
|
|
1
|
+
{}
|
@@ -0,0 +1 @@
|
|
1
|
+
{}
|
@@ -1,292 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* @license Copyright © HatioLab Inc. All rights reserved.
|
3
|
-
*/
|
4
|
-
|
5
|
-
import { LitElement, html, css } from 'lit'
|
6
|
-
|
7
|
-
import './things-editor-color'
|
8
|
-
|
9
|
-
/**
|
10
|
-
range value editor element
|
11
|
-
|
12
|
-
Example:
|
13
|
-
|
14
|
-
<things-editor-value-range range=${range}
|
15
|
-
rangetype=${type}
|
16
|
-
valuetype=${valuetype}>
|
17
|
-
</things-editor-value-range>
|
18
|
-
*/
|
19
|
-
export default class ThingsEditorValueRange extends LitElement {
|
20
|
-
static get is() {
|
21
|
-
return 'things-editor-value-range'
|
22
|
-
}
|
23
|
-
|
24
|
-
static get properties() {
|
25
|
-
return {
|
26
|
-
value: Object,
|
27
|
-
valuetype: String
|
28
|
-
}
|
29
|
-
}
|
30
|
-
|
31
|
-
static get styles() {
|
32
|
-
return [
|
33
|
-
css`
|
34
|
-
:host {
|
35
|
-
display: flex;
|
36
|
-
flex-direction: column;
|
37
|
-
align-content: center;
|
38
|
-
|
39
|
-
width: 100%;
|
40
|
-
overflow: hidden;
|
41
|
-
border: 1px solid #ccc;
|
42
|
-
}
|
43
|
-
|
44
|
-
div {
|
45
|
-
display: flex;
|
46
|
-
flex-flow: row nowrap;
|
47
|
-
align-items: center;
|
48
|
-
|
49
|
-
border-bottom: 1px solid #c0c0c0;
|
50
|
-
}
|
51
|
-
|
52
|
-
div:last-child {
|
53
|
-
border-bottom: none;
|
54
|
-
}
|
55
|
-
|
56
|
-
div > * {
|
57
|
-
min-width: 0px;
|
58
|
-
margin: 2px;
|
59
|
-
padding: 0;
|
60
|
-
}
|
61
|
-
|
62
|
-
button {
|
63
|
-
width: 20px;
|
64
|
-
text-align: center;
|
65
|
-
}
|
66
|
-
|
67
|
-
input,
|
68
|
-
things-editor-color {
|
69
|
-
flex: 1;
|
70
|
-
}
|
71
|
-
|
72
|
-
things-editor-color {
|
73
|
-
--things-editor-color-input-color: {
|
74
|
-
margin: 2px;
|
75
|
-
}
|
76
|
-
--things-editor-color-input-span: {
|
77
|
-
width: 12px;
|
78
|
-
height: 12px;
|
79
|
-
}
|
80
|
-
}
|
81
|
-
|
82
|
-
[placeholder='value'] {
|
83
|
-
flex: 2;
|
84
|
-
}
|
85
|
-
|
86
|
-
div {
|
87
|
-
border-bottom: 1px solid #c0c0c0;
|
88
|
-
}
|
89
|
-
|
90
|
-
div:last-child {
|
91
|
-
border-bottom: none;
|
92
|
-
}
|
93
|
-
|
94
|
-
input[type='checkbox'] {
|
95
|
-
width: initial;
|
96
|
-
}
|
97
|
-
`
|
98
|
-
]
|
99
|
-
}
|
100
|
-
|
101
|
-
constructor() {
|
102
|
-
super()
|
103
|
-
|
104
|
-
this.value = {}
|
105
|
-
this.valuetype = 'string'
|
106
|
-
this.rangetype = 'number'
|
107
|
-
}
|
108
|
-
|
109
|
-
firstUpdated() {
|
110
|
-
this.renderRoot.addEventListener('change', this._onChange.bind(this))
|
111
|
-
}
|
112
|
-
|
113
|
-
render() {
|
114
|
-
return html`
|
115
|
-
${this._toArray(this.value).map(
|
116
|
-
item => html`
|
117
|
-
<div data-record>
|
118
|
-
<input type="text" data-from placeholder="<=" .value=${item.from} />
|
119
|
-
<input type="text" data-to placeholder=">" .value=${item.to} />
|
120
|
-
|
121
|
-
${this.valuetype == 'boolean'
|
122
|
-
? html` <input type="checkbox" data-value .checked=${item.value} data-value-type=${this.valuetype} /> `
|
123
|
-
: this.valuetype == 'color'
|
124
|
-
? html` <things-editor-color data-value .value=${item.value}> </things-editor-color> `
|
125
|
-
: html`
|
126
|
-
<input
|
127
|
-
type="text"
|
128
|
-
data-value
|
129
|
-
placeholder="value"
|
130
|
-
.value=${item.value}
|
131
|
-
data-value-type=${this.valuetype}
|
132
|
-
/>
|
133
|
-
`} <button class="record-action" @click=${e => this._delete(e)} tabindex="-1">-</button>
|
134
|
-
</div>
|
135
|
-
`
|
136
|
-
)}
|
137
|
-
|
138
|
-
<div data-record-new>
|
139
|
-
<input type="text" data-from placeholder="<=" value="" />
|
140
|
-
<input type="text" data-to placeholder=">" value="" />
|
141
|
-
|
142
|
-
${this.valuetype == 'boolean'
|
143
|
-
? html` <input type="checkbox" data-value data-value-type=${this.valuetype} /> `
|
144
|
-
: this.valuetype == 'color'
|
145
|
-
? html` <things-editor-color data-value value="" placeholder="value"> </things-editor-color> `
|
146
|
-
: html` <input type="text" data-value placeholder="value" value="" data-value-type=${this.valuetype} /> `}
|
147
|
-
<button class="record-action" @click=${e => this._add(e)} tabindex="-1">+</button>
|
148
|
-
</div>
|
149
|
-
|
150
|
-
<div data-record>
|
151
|
-
<input type="text" data-from data-default="" disabled value="default" />
|
152
|
-
<input type="text" data-to placeholder=">" value="" hidden />
|
153
|
-
|
154
|
-
${this.valuetype == 'boolean'
|
155
|
-
? html`
|
156
|
-
<input
|
157
|
-
type="checkbox"
|
158
|
-
data-value
|
159
|
-
.checked=${this.value && this.value.default}
|
160
|
-
data-value-type=${this.valuetype}
|
161
|
-
/>
|
162
|
-
`
|
163
|
-
: this.valuetype == 'color'
|
164
|
-
? html`
|
165
|
-
<things-editor-color data-value .value=${(this.value && this.value.default) || ''} placeholder="value">
|
166
|
-
</things-editor-color>
|
167
|
-
`
|
168
|
-
: html`
|
169
|
-
<input
|
170
|
-
type="text"
|
171
|
-
data-value
|
172
|
-
.value=${(this.value && this.value.default) || ''}
|
173
|
-
placeholder="value"
|
174
|
-
class="default-value"
|
175
|
-
data-value-type=${this.valuetype}
|
176
|
-
/>
|
177
|
-
`} <button class="record-action" @click="${e => this._sort(e)}">></button>
|
178
|
-
</div>
|
179
|
-
`
|
180
|
-
}
|
181
|
-
|
182
|
-
_defaultValue(type) {
|
183
|
-
switch (type || this.valuetype) {
|
184
|
-
case 'color':
|
185
|
-
return '#000000'
|
186
|
-
case 'boolean':
|
187
|
-
case 'checkbox':
|
188
|
-
return false
|
189
|
-
default:
|
190
|
-
return ''
|
191
|
-
}
|
192
|
-
}
|
193
|
-
|
194
|
-
_onChange(e) {
|
195
|
-
if (this._changingNow) return
|
196
|
-
|
197
|
-
this._changingNow = true
|
198
|
-
|
199
|
-
var input = e.target
|
200
|
-
var value
|
201
|
-
if (input.type == 'checkbox') value = Boolean(input.checked)
|
202
|
-
else value = input.value
|
203
|
-
var div = input.parentElement
|
204
|
-
if (input.hasAttribute('data-value')) {
|
205
|
-
var dataList = div.querySelectorAll('[data-value]:not([hidden])')
|
206
|
-
for (var i = 0; i < dataList.length; i++) if (dataList[i] !== input) dataList[i].value = value
|
207
|
-
}
|
208
|
-
if (div.hasAttribute('data-record')) this._build()
|
209
|
-
else if (div.hasAttribute('data-record-new') && input.hasAttribute('data-value')) this._add()
|
210
|
-
|
211
|
-
this._changingNow = false
|
212
|
-
}
|
213
|
-
|
214
|
-
_build(includeNewRecord) {
|
215
|
-
if (includeNewRecord) var records = this.renderRoot.querySelectorAll('[data-record],[data-record-new]')
|
216
|
-
else var records = this.renderRoot.querySelectorAll('[data-record]')
|
217
|
-
var newrange = {}
|
218
|
-
for (var i = 0; i < records.length; i++) {
|
219
|
-
var record = records[i]
|
220
|
-
var from = record.querySelector('[data-from]').value
|
221
|
-
var to = record.querySelector('[data-to]').value
|
222
|
-
var inputs = record.querySelectorAll('[data-value]:not([style*="display: none"])')
|
223
|
-
if (!inputs || inputs.length == 0) continue
|
224
|
-
var input = inputs[inputs.length - 1]
|
225
|
-
var value
|
226
|
-
if (input.type == 'checkbox') value = Boolean(input.checked)
|
227
|
-
else value = input.value
|
228
|
-
if (from) {
|
229
|
-
if (from === 'default') newrange['default'] = value || (this.valuetype == 'color' ? '#000000' : '')
|
230
|
-
else newrange[`${from}~${to}`] = value
|
231
|
-
}
|
232
|
-
}
|
233
|
-
|
234
|
-
this.value = newrange
|
235
|
-
this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }))
|
236
|
-
}
|
237
|
-
|
238
|
-
/* default를 제외한 range아이템들을 template(dom-repeat)용 배열로 변환하는 함수 */
|
239
|
-
_toArray(range) {
|
240
|
-
var array = []
|
241
|
-
for (var key in range) {
|
242
|
-
if (key == 'default') continue
|
243
|
-
var fromto = key.split('~')
|
244
|
-
array.push({
|
245
|
-
from: fromto[0],
|
246
|
-
to: fromto[1],
|
247
|
-
value: range[key]
|
248
|
-
})
|
249
|
-
}
|
250
|
-
return array
|
251
|
-
}
|
252
|
-
|
253
|
-
_sort(e) {
|
254
|
-
var sorter =
|
255
|
-
this.rangetype === 'number'
|
256
|
-
? function (a, b) {
|
257
|
-
return parseFloat(b.from) < parseFloat(a.from)
|
258
|
-
}
|
259
|
-
: function (a, b) {
|
260
|
-
return b.from < a.from
|
261
|
-
}
|
262
|
-
var range = this._toArray(this.value)
|
263
|
-
.sort(sorter)
|
264
|
-
.reduce(function (sum, i) {
|
265
|
-
sum[`${i.from}~${i.to}`] = i.value
|
266
|
-
return sum
|
267
|
-
}, {})
|
268
|
-
range.default = this.value.default
|
269
|
-
|
270
|
-
this.value = range
|
271
|
-
this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }))
|
272
|
-
}
|
273
|
-
|
274
|
-
_add(e) {
|
275
|
-
this._build(true)
|
276
|
-
var inputs = this.renderRoot.querySelectorAll('[data-record-new] input:not([style*="display: none"])')
|
277
|
-
for (var i = 0; i < inputs.length; i++) {
|
278
|
-
let input = inputs[i]
|
279
|
-
if (input.type == 'checkbox') input.checked = false
|
280
|
-
else input.value = this._defaultValue(input.type)
|
281
|
-
}
|
282
|
-
inputs[0].focus()
|
283
|
-
}
|
284
|
-
|
285
|
-
_delete(e) {
|
286
|
-
var record = e.target.parentElement
|
287
|
-
record.querySelector('[data-from]').value = ''
|
288
|
-
this._build()
|
289
|
-
}
|
290
|
-
}
|
291
|
-
|
292
|
-
customElements.define(ThingsEditorValueRange.is, ThingsEditorValueRange)
|