goblin-desktop 2.0.0 → 2.0.2

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 (130) hide show
  1. package/README.md +108 -108
  2. package/builders/wizard.js +478 -478
  3. package/contexts.js +13 -13
  4. package/desktop-manager.js +10 -10
  5. package/desktop-window.js +13 -13
  6. package/desktop.js +13 -13
  7. package/lib/service.js +135 -135
  8. package/package.json +36 -36
  9. package/password-wizard.js +13 -13
  10. package/quest-run-wizard.js +13 -13
  11. package/taskbar.js +13 -13
  12. package/widgets/audio/sfx.js +177 -177
  13. package/widgets/board/view.js +37 -37
  14. package/widgets/board/widget.js +65 -65
  15. package/widgets/contexts/logic-handlers.js +36 -36
  16. package/widgets/contexts/service.js +40 -40
  17. package/widgets/contexts/view.js +22 -22
  18. package/widgets/contexts/widget.js +147 -147
  19. package/widgets/datagrid/datagrid-entity.js +82 -82
  20. package/widgets/datagrid/datagrid-headers.js +272 -272
  21. package/widgets/datagrid/datagrid-item.js +82 -82
  22. package/widgets/datagrid/styles.js +13 -13
  23. package/widgets/datagrid/widget.js +191 -191
  24. package/widgets/datagrid-cell/styles.js +52 -52
  25. package/widgets/datagrid-cell/widget.js +41 -41
  26. package/widgets/default/view.js +91 -91
  27. package/widgets/desktop/compensator.js +9 -9
  28. package/widgets/desktop/logic-handlers.js +237 -237
  29. package/widgets/desktop/service.js +816 -816
  30. package/widgets/desktop/styles.js +28 -28
  31. package/widgets/desktop/widget.js +175 -175
  32. package/widgets/desktop-clock/styles.js +69 -69
  33. package/widgets/desktop-clock/widget.js +387 -387
  34. package/widgets/desktop-clock-clock/styles.js +56 -56
  35. package/widgets/desktop-clock-clock/widget.js +96 -96
  36. package/widgets/desktop-clock-menu/styles.js +129 -129
  37. package/widgets/desktop-clock-menu/widget.js +63 -63
  38. package/widgets/desktop-connection-status/reducer.js +15 -15
  39. package/widgets/desktop-connection-status/styles.js +44 -44
  40. package/widgets/desktop-connection-status/widget.js +129 -129
  41. package/widgets/desktop-content/widget.js +68 -68
  42. package/widgets/desktop-footer/reducer.js +31 -31
  43. package/widgets/desktop-footer/styles.js +36 -36
  44. package/widgets/desktop-footer/widget.js +52 -52
  45. package/widgets/desktop-monitors/styles.js +155 -155
  46. package/widgets/desktop-monitors/widget.js +273 -273
  47. package/widgets/desktop-notebook/styles.js +155 -155
  48. package/widgets/desktop-notebook/widget.js +253 -253
  49. package/widgets/desktop-notifications/styles.js +147 -147
  50. package/widgets/desktop-notifications/widget.js +231 -231
  51. package/widgets/desktop-scale/reducer.js +15 -15
  52. package/widgets/desktop-scale/styles.js +48 -48
  53. package/widgets/desktop-scale/widget.js +172 -172
  54. package/widgets/desktop-state-monitor/styles.js +72 -72
  55. package/widgets/desktop-state-monitor/widget.js +123 -123
  56. package/widgets/desktop-taskbar/widget.js +57 -57
  57. package/widgets/desktop-themes-menu/widget.js +121 -121
  58. package/widgets/desktop-topbar/widget.js +201 -201
  59. package/widgets/desktop-window/service.js +56 -56
  60. package/widgets/desktop-window/styles.js +22 -22
  61. package/widgets/desktop-window/widget.js +70 -70
  62. package/widgets/detail/view.js +40 -40
  63. package/widgets/detail/widget.js +125 -125
  64. package/widgets/editor/widget.js +80 -80
  65. package/widgets/entity-alerts/styles.js +77 -77
  66. package/widgets/entity-alerts/widget.js +328 -328
  67. package/widgets/entity-list/view.js +36 -36
  68. package/widgets/entity-list/widget.js +209 -209
  69. package/widgets/entity-list-item/widget.js +68 -68
  70. package/widgets/entity-row/styles.js +104 -104
  71. package/widgets/entity-row/widget.js +523 -523
  72. package/widgets/entity-row-button/styles.js +46 -46
  73. package/widgets/entity-row-button/widget.js +57 -57
  74. package/widgets/entity-view/reducer.js +20 -20
  75. package/widgets/entity-view/styles.js +90 -90
  76. package/widgets/entity-view/widget.js +516 -516
  77. package/widgets/facet-checkbox/styles.js +17 -17
  78. package/widgets/facet-checkbox/widget.js +43 -43
  79. package/widgets/facet-filter/widget.js +94 -94
  80. package/widgets/facet-filter-add/styles.js +30 -30
  81. package/widgets/facet-filter-add/widget.js +105 -105
  82. package/widgets/facet-filter-button/styles.js +74 -74
  83. package/widgets/facet-filter-button/widget.js +214 -214
  84. package/widgets/facet-filter-list-dialog/styles.js +59 -59
  85. package/widgets/facet-filter-list-dialog/widget.js +253 -253
  86. package/widgets/facet-filter-list-dialog-footer/styles.js +22 -22
  87. package/widgets/facet-filter-list-dialog-footer/widget.js +105 -105
  88. package/widgets/facet-filter-range-dialog/styles.js +82 -82
  89. package/widgets/facet-filter-range-dialog/widget.js +398 -398
  90. package/widgets/facet-filter-range-dialog-footer/styles.js +22 -22
  91. package/widgets/facet-filter-range-dialog-footer/widget.js +182 -182
  92. package/widgets/gamepad/widget.js +75 -75
  93. package/widgets/helpers/facet-helpers.js +105 -105
  94. package/widgets/hinter/reducer.js +35 -35
  95. package/widgets/hinter/styles.js +79 -79
  96. package/widgets/hinter/view.js +31 -31
  97. package/widgets/hinter/widget.js +292 -292
  98. package/widgets/junction/styles.js +22 -22
  99. package/widgets/junction/widget.js +50 -50
  100. package/widgets/main-tab-menu/widget.js +136 -136
  101. package/widgets/map/view.js +49 -49
  102. package/widgets/map/widget.js +65 -65
  103. package/widgets/monitor/widget.js +66 -66
  104. package/widgets/navigating-layer/widget.js +25 -25
  105. package/widgets/notifications-button/widget.js +44 -44
  106. package/widgets/password-wizard/service.js +53 -53
  107. package/widgets/password-wizard/ui.js +66 -66
  108. package/widgets/plugin/styles.js +294 -294
  109. package/widgets/plugin/widget.js +636 -636
  110. package/widgets/quest-run-wizard/service.js +49 -49
  111. package/widgets/quest-run-wizard/ui.js +25 -25
  112. package/widgets/search/styles.js +80 -80
  113. package/widgets/search/widget.js +286 -284
  114. package/widgets/simple/view.js +29 -29
  115. package/widgets/status-filters/widget.js +121 -121
  116. package/widgets/tab/styles.js +16 -16
  117. package/widgets/tab/widget.js +88 -88
  118. package/widgets/tab-content/widget.js +35 -35
  119. package/widgets/tabs/widget.js +48 -48
  120. package/widgets/taskbar/service.js +99 -99
  121. package/widgets/taskbar/view.js +24 -24
  122. package/widgets/taskbar/widget.js +169 -169
  123. package/widgets/widget-doc-caller/widget.js +55 -55
  124. package/widgets/wizard/widget.js +299 -299
  125. package/widgets/wizard-buttons/widget.js +107 -107
  126. package/widgets/workitem/styles.js +281 -281
  127. package/widgets/workitem/view.js +62 -62
  128. package/widgets/workitem/widget.js +967 -940
  129. package/widgets/workitem-dialog/widget.js +86 -86
  130. package/widgets/workitem-fields/widget.js +63 -63
@@ -1,398 +1,398 @@
1
- import React from 'react';
2
- import Widget from 'goblin-laboratory/widgets/widget';
3
- import DialogModal from 'goblin-gadgets/widgets/dialog-modal/widget';
4
- import Label from 'goblin-gadgets/widgets/label/widget';
5
- import TextFieldTypedNC from 'goblin-gadgets/widgets/text-field-typed-nc/widget';
6
- import Slider from 'goblin-gadgets/widgets/slider/widget';
7
- import CheckList from 'goblin-gadgets/widgets/check-list/widget';
8
- import FacetFilterRangeDialogFooter from '../facet-filter-range-dialog-footer/widget.js';
9
- import Junction from '../junction/widget.js';
10
- import {date as DateConverters} from 'xcraft-core-converters';
11
- import T from 't';
12
- import {Unit} from 'goblin-theme';
13
- const px = Unit.toPx;
14
-
15
- /******************************************************************************/
16
-
17
- class FacetFilterRangeDialog extends Widget {
18
- constructor() {
19
- super(...arguments);
20
-
21
- this.setFilter = this.setFilter.bind(this);
22
- this.handleChangeUseRange = this.handleChangeUseRange.bind(this);
23
- this.handleFieldFrom = this.handleFieldFrom.bind(this);
24
- this.handleFieldTo = this.handleFieldTo.bind(this);
25
- this.handleSlider = this.handleSlider.bind(this);
26
- this.onClose = this.onClose.bind(this);
27
-
28
- this.width = 480;
29
- this.sliderThickness = 24; // according to lib\goblin-gadgets\widgets\slider\styles.js
30
- }
31
-
32
- onClose() {
33
- this.props.onClose();
34
- }
35
-
36
- handleChangeUseRange(value) {
37
- if (value === 'all') {
38
- this.doAs('list', 'clear-range', {
39
- filterName: this.props.name,
40
- });
41
- } else {
42
- this.setFilter(this.props.min, this.props.max);
43
- }
44
- }
45
-
46
- setFilter(from, to, mode) {
47
- from = this.externalToSlider(from);
48
- to = this.externalToSlider(to);
49
-
50
- const min = this.externalToSlider(this.props.min);
51
- const max = this.externalToSlider(this.props.max);
52
-
53
- from = Math.max(Math.min(from, max), min);
54
- to = Math.max(Math.min(to, max), min);
55
-
56
- from = this.sliderToExternal(from);
57
- to = this.sliderToExternal(to);
58
-
59
- this.doAs('list', 'set-range', {
60
- filterName: this.props.name,
61
- from,
62
- to,
63
- mode,
64
- });
65
- }
66
-
67
- handleFieldFrom(value) {
68
- const from = this.externalToSlider(value);
69
- const to = this.externalToSlider(this.props.to);
70
- this.setFilter(value, this.sliderToExternal(Math.max(from, to)));
71
- }
72
-
73
- handleFieldTo(value) {
74
- const from = this.externalToSlider(this.props.from);
75
- const to = this.externalToSlider(value);
76
- this.setFilter(this.sliderToExternal(Math.min(from, to)), value);
77
- }
78
-
79
- handleSlider(value) {
80
- const a = value.split(';');
81
- const from = this.sliderToExternal(a[0]);
82
- const to = this.sliderToExternal(a[1]);
83
- this.setFilter(from, to);
84
- }
85
-
86
- /******************************************************************************/
87
-
88
- get hasRange() {
89
- return this.props.min !== null && this.props.max !== null;
90
- }
91
-
92
- externalToDisplayed(value) {
93
- if (this.props.type === 'date') {
94
- return DateConverters.getDisplayed(value);
95
- } else {
96
- return value;
97
- }
98
- }
99
-
100
- externalToSlider(value) {
101
- if (this.props.type === 'date') {
102
- value = DateConverters.canonicalToJs(value);
103
- const min = DateConverters.canonicalToJs(this.props.min);
104
- const days = (value - min) / (1000 * 60 * 60 * 24);
105
- return Math.round(days);
106
- } else {
107
- return value - this.props.min;
108
- }
109
- }
110
-
111
- sliderToExternal(n) {
112
- if (this.props.type === 'date') {
113
- if (typeof n === 'string') {
114
- n = parseInt(n);
115
- }
116
- const date = DateConverters.canonicalToJs(this.props.min);
117
- date.setDate(date.getDate() + n);
118
- return DateConverters.jsToCanonical(date);
119
- } else {
120
- return n + this.props.min;
121
- }
122
- }
123
-
124
- /******************************************************************************/
125
-
126
- renderClose() {
127
- return null;
128
- //- return (
129
- //- <div className={this.styles.classNames.closeButton}>
130
- //- <Button
131
- //- border="none"
132
- //- glyph="solid/times"
133
- //- glyphSize="120%"
134
- //- height="32px"
135
- //- width="32px"
136
- //- onClick={this.onClose}
137
- //- />
138
- //- </div>
139
- //- );
140
- }
141
-
142
- renderRadios() {
143
- const list = [{name: 'all', description: T('Tout')}];
144
-
145
- if (this.hasRange) {
146
- list.push({name: 'range', description: T('Intervalle')});
147
- }
148
-
149
- return (
150
- <div className={this.styles.classNames.radios}>
151
- <div className={this.styles.classNames.checkList}>
152
- <CheckList
153
- kind="radio"
154
- direction="row"
155
- selectionMode="single"
156
- list={list}
157
- value={this.hasRange && this.props.useRange ? 'range' : 'all'}
158
- selectionChanged={this.handleChangeUseRange}
159
- />
160
- </div>
161
- </div>
162
- );
163
- }
164
-
165
- renderFields(parentRect) {
166
- if (!this.hasRange || !this.props.useRange) {
167
- return null;
168
- }
169
-
170
- let minDate, maxDate, min, max;
171
-
172
- if (this.props.type === 'date') {
173
- minDate = this.props.min;
174
- maxDate = this.props.max;
175
- } else {
176
- min = this.props.min;
177
- max = this.props.max;
178
- }
179
-
180
- return (
181
- <div className={this.styles.classNames.fields}>
182
- <TextFieldTypedNC
183
- parentRect={parentRect}
184
- type={this.props.type}
185
- minDate={minDate}
186
- maxDate={maxDate}
187
- min={min}
188
- max={max}
189
- mode="hard"
190
- value={this.props.from}
191
- onChange={this.handleFieldFrom}
192
- />
193
- <Label grow="1" />
194
- {this.props.max > this.props.min ? (
195
- <TextFieldTypedNC
196
- parentRect={parentRect}
197
- type={this.props.type}
198
- minDate={minDate}
199
- maxDate={maxDate}
200
- min={min}
201
- max={max}
202
- mode="hard"
203
- value={this.props.to}
204
- onChange={this.handleFieldTo}
205
- />
206
- ) : null}
207
- </div>
208
- );
209
- }
210
-
211
- renderJunction() {
212
- if (!this.hasRange || !this.props.useRange) {
213
- return null;
214
- }
215
-
216
- const min = this.externalToSlider(this.props.min);
217
- const max = this.externalToSlider(this.props.max);
218
- const from = Math.max(this.externalToSlider(this.props.from), min);
219
- const to = Math.min(this.externalToSlider(this.props.to), max);
220
-
221
- const w = this.width - 30 * 2;
222
-
223
- const fieldWidth = 150;
224
- let x1From = fieldWidth / 2;
225
- let x1To = w - fieldWidth / 2;
226
-
227
- const sliderWidth = w - this.sliderThickness;
228
- const x2From =
229
- this.sliderThickness / 2 +
230
- ((from - min) / Math.max(max - min, 1)) * sliderWidth;
231
- const x2To =
232
- this.sliderThickness / 2 +
233
- ((to - min) / Math.max(max - min, 1)) * sliderWidth;
234
-
235
- if (x2From > x1From - 20 && x2From < x1From + 20) {
236
- x1From = x2From;
237
- }
238
- if (x2To > x1To - 20 && x2To < x1To + 20) {
239
- x1To = x2To;
240
- }
241
-
242
- const h = 30;
243
- const shift = 3;
244
- let yFrom, yTo;
245
- if (x2To < x1From + shift && x2From !== x2To) {
246
- yFrom = h / 2 - shift;
247
- yTo = h / 2 + shift;
248
- } else if (x2From > x1To - shift && x2From !== x2To) {
249
- yFrom = h / 2 + shift;
250
- yTo = h / 2 - shift;
251
- } else {
252
- yFrom = h / 2;
253
- yTo = h / 2;
254
- }
255
-
256
- const color = this.context.theme.palette.buttonBorder;
257
-
258
- return (
259
- <div className={this.styles.classNames.junctions}>
260
- <Junction color={color} w={w} h={h} y={yFrom} x1={x1From} x2={x2From} />
261
- {this.props.max > this.props.min ? (
262
- <Junction color={color} w={w} h={h} y={yTo} x1={x1To} x2={x2To} />
263
- ) : null}
264
- </div>
265
- );
266
- }
267
-
268
- renderSliders() {
269
- if (!this.hasRange || !this.props.useRange) {
270
- return null;
271
- }
272
-
273
- const value1 = this.externalToSlider(this.props.from);
274
- const value2 = this.externalToSlider(this.props.to);
275
- const value = `${value1};${value2}`;
276
-
277
- return (
278
- <div className={this.styles.classNames.sliders}>
279
- <Slider
280
- grow="1"
281
- direction="horizontal"
282
- barColor="#0f0"
283
- barPosition="middle"
284
- disabled={this.props.max === this.props.min}
285
- min={0}
286
- max={this.externalToSlider(this.props.max)}
287
- step={1}
288
- value={value}
289
- changeMode="throttled"
290
- throttleDelay={200}
291
- onChange={this.handleSlider}
292
- />
293
- </div>
294
- );
295
- }
296
-
297
- renderMinMax() {
298
- if (!this.hasRange || !this.props.useRange) {
299
- return null;
300
- }
301
-
302
- const min = this.externalToDisplayed(this.props.min);
303
- const max = this.externalToDisplayed(this.props.max);
304
-
305
- return (
306
- <div className={this.styles.classNames.minmax}>
307
- <Label fontSize="70%" disabled={true} text={min} />
308
- <Label grow="1" />
309
- {this.props.max > this.props.min ? (
310
- <Label fontSize="70%" disabled={true} text={max} justify="end" />
311
- ) : null}
312
- </div>
313
- );
314
- }
315
-
316
- renderFooter() {
317
- return (
318
- <FacetFilterRangeDialogFooter
319
- id={this.props.id}
320
- name={this.props.name}
321
- type={this.props.type}
322
- min={this.props.min}
323
- max={this.props.max}
324
- from={this.props.from}
325
- to={this.props.to}
326
- useRange={this.hasRange && this.props.useRange}
327
- setFilter={this.setFilter}
328
- />
329
- );
330
- }
331
-
332
- // Build UI for range of dates or number.
333
- renderRange(parentRect) {
334
- return (
335
- <div className={this.styles.classNames.facetFilterDialog}>
336
- {this.renderRadios()}
337
- <div className={this.styles.classNames.content}>
338
- {this.renderFields(parentRect)}
339
- {this.renderJunction()}
340
- {this.renderSliders()}
341
- {this.renderMinMax()}
342
- </div>
343
- {this.renderFooter()}
344
- {this.renderClose()}
345
- </div>
346
- );
347
- }
348
-
349
- render() {
350
- if (this.props.loading) {
351
- return null;
352
- }
353
-
354
- const r = this.props.parentButtonRect;
355
- const centerY = r.top + r.height / 2;
356
- const width = this.width;
357
- const height = 280;
358
- const shiftY = 0;
359
-
360
- const parentRect = {
361
- left: r.right + 40,
362
- right: r.right + 40 + width,
363
- top: centerY - height / 2,
364
- bottom: centerY + height / 2,
365
- };
366
-
367
- return (
368
- <DialogModal
369
- width={px(width)}
370
- height={px(height)}
371
- left={px(r.right + 40)}
372
- center={px(centerY)}
373
- triangleShift={px(shiftY)}
374
- backgroundClose={true}
375
- close={this.onClose}
376
- >
377
- {this.renderRange(parentRect)}
378
- </DialogModal>
379
- );
380
- }
381
- }
382
-
383
- /******************************************************************************/
384
-
385
- export default Widget.connect((state, props) => {
386
- const range = state.get(`backend.${props.id}.ranges.${props.name}`);
387
- if (range) {
388
- const useRange = range.get('useRange', false);
389
- const min = range.get('min');
390
- const max = range.get('max');
391
- const from = range.get('from', min);
392
- const to = range.get('to', max);
393
-
394
- return {useRange, min, max, from, to};
395
- } else {
396
- return {loading: true};
397
- }
398
- })(FacetFilterRangeDialog);
1
+ import React from 'react';
2
+ import Widget from 'goblin-laboratory/widgets/widget';
3
+ import DialogModal from 'goblin-gadgets/widgets/dialog-modal/widget';
4
+ import Label from 'goblin-gadgets/widgets/label/widget';
5
+ import TextFieldTypedNC from 'goblin-gadgets/widgets/text-field-typed-nc/widget';
6
+ import Slider from 'goblin-gadgets/widgets/slider/widget';
7
+ import CheckList from 'goblin-gadgets/widgets/check-list/widget';
8
+ import FacetFilterRangeDialogFooter from '../facet-filter-range-dialog-footer/widget.js';
9
+ import Junction from '../junction/widget.js';
10
+ import {date as DateConverters} from 'xcraft-core-converters';
11
+ import T from 't';
12
+ import {Unit} from 'goblin-theme';
13
+ const px = Unit.toPx;
14
+
15
+ /******************************************************************************/
16
+
17
+ class FacetFilterRangeDialog extends Widget {
18
+ constructor() {
19
+ super(...arguments);
20
+
21
+ this.setFilter = this.setFilter.bind(this);
22
+ this.handleChangeUseRange = this.handleChangeUseRange.bind(this);
23
+ this.handleFieldFrom = this.handleFieldFrom.bind(this);
24
+ this.handleFieldTo = this.handleFieldTo.bind(this);
25
+ this.handleSlider = this.handleSlider.bind(this);
26
+ this.onClose = this.onClose.bind(this);
27
+
28
+ this.width = 480;
29
+ this.sliderThickness = 24; // according to lib\goblin-gadgets\widgets\slider\styles.js
30
+ }
31
+
32
+ onClose() {
33
+ this.props.onClose();
34
+ }
35
+
36
+ handleChangeUseRange(value) {
37
+ if (value === 'all') {
38
+ this.doAs('list', 'clear-range', {
39
+ filterName: this.props.name,
40
+ });
41
+ } else {
42
+ this.setFilter(this.props.min, this.props.max);
43
+ }
44
+ }
45
+
46
+ setFilter(from, to, mode) {
47
+ from = this.externalToSlider(from);
48
+ to = this.externalToSlider(to);
49
+
50
+ const min = this.externalToSlider(this.props.min);
51
+ const max = this.externalToSlider(this.props.max);
52
+
53
+ from = Math.max(Math.min(from, max), min);
54
+ to = Math.max(Math.min(to, max), min);
55
+
56
+ from = this.sliderToExternal(from);
57
+ to = this.sliderToExternal(to);
58
+
59
+ this.doAs('list', 'set-range', {
60
+ filterName: this.props.name,
61
+ from,
62
+ to,
63
+ mode,
64
+ });
65
+ }
66
+
67
+ handleFieldFrom(value) {
68
+ const from = this.externalToSlider(value);
69
+ const to = this.externalToSlider(this.props.to);
70
+ this.setFilter(value, this.sliderToExternal(Math.max(from, to)));
71
+ }
72
+
73
+ handleFieldTo(value) {
74
+ const from = this.externalToSlider(this.props.from);
75
+ const to = this.externalToSlider(value);
76
+ this.setFilter(this.sliderToExternal(Math.min(from, to)), value);
77
+ }
78
+
79
+ handleSlider(value) {
80
+ const a = value.split(';');
81
+ const from = this.sliderToExternal(a[0]);
82
+ const to = this.sliderToExternal(a[1]);
83
+ this.setFilter(from, to);
84
+ }
85
+
86
+ /******************************************************************************/
87
+
88
+ get hasRange() {
89
+ return this.props.min !== null && this.props.max !== null;
90
+ }
91
+
92
+ externalToDisplayed(value) {
93
+ if (this.props.type === 'date') {
94
+ return DateConverters.getDisplayed(value);
95
+ } else {
96
+ return value;
97
+ }
98
+ }
99
+
100
+ externalToSlider(value) {
101
+ if (this.props.type === 'date') {
102
+ value = DateConverters.canonicalToJs(value);
103
+ const min = DateConverters.canonicalToJs(this.props.min);
104
+ const days = (value - min) / (1000 * 60 * 60 * 24);
105
+ return Math.round(days);
106
+ } else {
107
+ return value - this.props.min;
108
+ }
109
+ }
110
+
111
+ sliderToExternal(n) {
112
+ if (this.props.type === 'date') {
113
+ if (typeof n === 'string') {
114
+ n = parseInt(n);
115
+ }
116
+ const date = DateConverters.canonicalToJs(this.props.min);
117
+ date.setDate(date.getDate() + n);
118
+ return DateConverters.jsToCanonical(date);
119
+ } else {
120
+ return n + this.props.min;
121
+ }
122
+ }
123
+
124
+ /******************************************************************************/
125
+
126
+ renderClose() {
127
+ return null;
128
+ //- return (
129
+ //- <div className={this.styles.classNames.closeButton}>
130
+ //- <Button
131
+ //- border="none"
132
+ //- glyph="solid/times"
133
+ //- glyphSize="120%"
134
+ //- height="32px"
135
+ //- width="32px"
136
+ //- onClick={this.onClose}
137
+ //- />
138
+ //- </div>
139
+ //- );
140
+ }
141
+
142
+ renderRadios() {
143
+ const list = [{name: 'all', description: T('Tout')}];
144
+
145
+ if (this.hasRange) {
146
+ list.push({name: 'range', description: T('Intervalle')});
147
+ }
148
+
149
+ return (
150
+ <div className={this.styles.classNames.radios}>
151
+ <div className={this.styles.classNames.checkList}>
152
+ <CheckList
153
+ kind="radio"
154
+ direction="row"
155
+ selectionMode="single"
156
+ list={list}
157
+ value={this.hasRange && this.props.useRange ? 'range' : 'all'}
158
+ selectionChanged={this.handleChangeUseRange}
159
+ />
160
+ </div>
161
+ </div>
162
+ );
163
+ }
164
+
165
+ renderFields(parentRect) {
166
+ if (!this.hasRange || !this.props.useRange) {
167
+ return null;
168
+ }
169
+
170
+ let minDate, maxDate, min, max;
171
+
172
+ if (this.props.type === 'date') {
173
+ minDate = this.props.min;
174
+ maxDate = this.props.max;
175
+ } else {
176
+ min = this.props.min;
177
+ max = this.props.max;
178
+ }
179
+
180
+ return (
181
+ <div className={this.styles.classNames.fields}>
182
+ <TextFieldTypedNC
183
+ parentRect={parentRect}
184
+ type={this.props.type}
185
+ minDate={minDate}
186
+ maxDate={maxDate}
187
+ min={min}
188
+ max={max}
189
+ mode="hard"
190
+ value={this.props.from}
191
+ onChange={this.handleFieldFrom}
192
+ />
193
+ <Label grow="1" />
194
+ {this.props.max > this.props.min ? (
195
+ <TextFieldTypedNC
196
+ parentRect={parentRect}
197
+ type={this.props.type}
198
+ minDate={minDate}
199
+ maxDate={maxDate}
200
+ min={min}
201
+ max={max}
202
+ mode="hard"
203
+ value={this.props.to}
204
+ onChange={this.handleFieldTo}
205
+ />
206
+ ) : null}
207
+ </div>
208
+ );
209
+ }
210
+
211
+ renderJunction() {
212
+ if (!this.hasRange || !this.props.useRange) {
213
+ return null;
214
+ }
215
+
216
+ const min = this.externalToSlider(this.props.min);
217
+ const max = this.externalToSlider(this.props.max);
218
+ const from = Math.max(this.externalToSlider(this.props.from), min);
219
+ const to = Math.min(this.externalToSlider(this.props.to), max);
220
+
221
+ const w = this.width - 30 * 2;
222
+
223
+ const fieldWidth = 150;
224
+ let x1From = fieldWidth / 2;
225
+ let x1To = w - fieldWidth / 2;
226
+
227
+ const sliderWidth = w - this.sliderThickness;
228
+ const x2From =
229
+ this.sliderThickness / 2 +
230
+ ((from - min) / Math.max(max - min, 1)) * sliderWidth;
231
+ const x2To =
232
+ this.sliderThickness / 2 +
233
+ ((to - min) / Math.max(max - min, 1)) * sliderWidth;
234
+
235
+ if (x2From > x1From - 20 && x2From < x1From + 20) {
236
+ x1From = x2From;
237
+ }
238
+ if (x2To > x1To - 20 && x2To < x1To + 20) {
239
+ x1To = x2To;
240
+ }
241
+
242
+ const h = 30;
243
+ const shift = 3;
244
+ let yFrom, yTo;
245
+ if (x2To < x1From + shift && x2From !== x2To) {
246
+ yFrom = h / 2 - shift;
247
+ yTo = h / 2 + shift;
248
+ } else if (x2From > x1To - shift && x2From !== x2To) {
249
+ yFrom = h / 2 + shift;
250
+ yTo = h / 2 - shift;
251
+ } else {
252
+ yFrom = h / 2;
253
+ yTo = h / 2;
254
+ }
255
+
256
+ const color = this.context.theme.palette.buttonBorder;
257
+
258
+ return (
259
+ <div className={this.styles.classNames.junctions}>
260
+ <Junction color={color} w={w} h={h} y={yFrom} x1={x1From} x2={x2From} />
261
+ {this.props.max > this.props.min ? (
262
+ <Junction color={color} w={w} h={h} y={yTo} x1={x1To} x2={x2To} />
263
+ ) : null}
264
+ </div>
265
+ );
266
+ }
267
+
268
+ renderSliders() {
269
+ if (!this.hasRange || !this.props.useRange) {
270
+ return null;
271
+ }
272
+
273
+ const value1 = this.externalToSlider(this.props.from);
274
+ const value2 = this.externalToSlider(this.props.to);
275
+ const value = `${value1};${value2}`;
276
+
277
+ return (
278
+ <div className={this.styles.classNames.sliders}>
279
+ <Slider
280
+ grow="1"
281
+ direction="horizontal"
282
+ barColor="#0f0"
283
+ barPosition="middle"
284
+ disabled={this.props.max === this.props.min}
285
+ min={0}
286
+ max={this.externalToSlider(this.props.max)}
287
+ step={1}
288
+ value={value}
289
+ changeMode="throttled"
290
+ throttleDelay={200}
291
+ onChange={this.handleSlider}
292
+ />
293
+ </div>
294
+ );
295
+ }
296
+
297
+ renderMinMax() {
298
+ if (!this.hasRange || !this.props.useRange) {
299
+ return null;
300
+ }
301
+
302
+ const min = this.externalToDisplayed(this.props.min);
303
+ const max = this.externalToDisplayed(this.props.max);
304
+
305
+ return (
306
+ <div className={this.styles.classNames.minmax}>
307
+ <Label fontSize="70%" disabled={true} text={min} />
308
+ <Label grow="1" />
309
+ {this.props.max > this.props.min ? (
310
+ <Label fontSize="70%" disabled={true} text={max} justify="end" />
311
+ ) : null}
312
+ </div>
313
+ );
314
+ }
315
+
316
+ renderFooter() {
317
+ return (
318
+ <FacetFilterRangeDialogFooter
319
+ id={this.props.id}
320
+ name={this.props.name}
321
+ type={this.props.type}
322
+ min={this.props.min}
323
+ max={this.props.max}
324
+ from={this.props.from}
325
+ to={this.props.to}
326
+ useRange={this.hasRange && this.props.useRange}
327
+ setFilter={this.setFilter}
328
+ />
329
+ );
330
+ }
331
+
332
+ // Build UI for range of dates or number.
333
+ renderRange(parentRect) {
334
+ return (
335
+ <div className={this.styles.classNames.facetFilterDialog}>
336
+ {this.renderRadios()}
337
+ <div className={this.styles.classNames.content}>
338
+ {this.renderFields(parentRect)}
339
+ {this.renderJunction()}
340
+ {this.renderSliders()}
341
+ {this.renderMinMax()}
342
+ </div>
343
+ {this.renderFooter()}
344
+ {this.renderClose()}
345
+ </div>
346
+ );
347
+ }
348
+
349
+ render() {
350
+ if (this.props.loading) {
351
+ return null;
352
+ }
353
+
354
+ const r = this.props.parentButtonRect;
355
+ const centerY = r.top + r.height / 2;
356
+ const width = this.width;
357
+ const height = 280;
358
+ const shiftY = 0;
359
+
360
+ const parentRect = {
361
+ left: r.right + 40,
362
+ right: r.right + 40 + width,
363
+ top: centerY - height / 2,
364
+ bottom: centerY + height / 2,
365
+ };
366
+
367
+ return (
368
+ <DialogModal
369
+ width={px(width)}
370
+ height={px(height)}
371
+ left={px(r.right + 40)}
372
+ center={px(centerY)}
373
+ triangleShift={px(shiftY)}
374
+ backgroundClose={true}
375
+ close={this.onClose}
376
+ >
377
+ {this.renderRange(parentRect)}
378
+ </DialogModal>
379
+ );
380
+ }
381
+ }
382
+
383
+ /******************************************************************************/
384
+
385
+ export default Widget.connect((state, props) => {
386
+ const range = state.get(`backend.${props.id}.ranges.${props.name}`);
387
+ if (range) {
388
+ const useRange = range.get('useRange', false);
389
+ const min = range.get('min');
390
+ const max = range.get('max');
391
+ const from = range.get('from', min);
392
+ const to = range.get('to', max);
393
+
394
+ return {useRange, min, max, from, to};
395
+ } else {
396
+ return {loading: true};
397
+ }
398
+ })(FacetFilterRangeDialog);