x4js 1.6.5 → 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.
- package/README.md +3 -14
- package/lib/README.txt +3 -14
- package/lib/esm/x4.css +1 -0
- package/lib/esm/x4.js +1 -0
- package/lib/src/assets/house-light.svg +1 -0
- package/lib/src/assets/radio.svg +4 -0
- package/lib/src/components/base.scss +26 -0
- package/lib/src/components/boxes/boxes.module.scss +37 -0
- package/lib/src/components/boxes/boxes.ts +125 -0
- package/lib/src/components/btngroup/btngroup.module.scss +29 -0
- package/lib/src/components/btngroup/btngroup.ts +106 -0
- package/lib/src/components/button/button.module.scss +154 -0
- package/lib/src/components/button/button.ts +117 -0
- package/lib/src/components/calendar/calendar-check-sharp-light.svg +1 -0
- package/lib/src/components/calendar/calendar.module.scss +163 -0
- package/lib/src/{calendar.ts → components/calendar/calendar.ts} +81 -83
- package/lib/src/components/calendar/chevron-left-sharp-light.svg +1 -0
- package/lib/src/components/calendar/chevron-right-sharp-light.svg +1 -0
- package/lib/src/components/checkbox/check.svg +4 -0
- package/lib/src/components/checkbox/checkbox.module.scss +142 -0
- package/lib/src/components/checkbox/checkbox.ts +125 -0
- package/lib/src/components/colorinput/colorinput.module.scss +65 -0
- package/lib/src/components/colorinput/colorinput.ts +88 -0
- package/lib/src/components/colorinput/crosshairs-simple-sharp-light.svg +1 -0
- package/lib/src/components/colorpicker/colorpicker.module.scss +133 -0
- package/lib/src/components/colorpicker/colorpicker.ts +477 -0
- package/lib/src/components/combobox/combobox.module.scss +121 -0
- package/lib/src/components/combobox/combobox.ts +190 -0
- package/lib/src/components/combobox/updown.svg +4 -0
- package/lib/src/components/dialog/dialog.module.scss +71 -0
- package/lib/src/components/dialog/dialog.ts +91 -0
- package/lib/src/components/dialog/xmark-sharp-light.svg +1 -0
- package/lib/src/components/form/form.module.scss +34 -0
- package/lib/src/components/form/form.ts +36 -0
- package/lib/src/components/header/header.module.scss +40 -0
- package/lib/src/components/header/header.ts +124 -0
- package/lib/src/components/icon/icon.module.scss +30 -0
- package/lib/src/components/icon/icon.ts +134 -0
- package/lib/src/components/image/image.module.scss +21 -0
- package/lib/src/components/image/image.ts +67 -0
- package/lib/src/components/input/input.module.scss +69 -0
- package/lib/src/components/input/input.ts +274 -0
- package/lib/src/components/label/label.module.scss +52 -0
- package/lib/src/components/label/label.ts +55 -0
- package/lib/src/components/listbox/listbox.module.scss +103 -0
- package/lib/src/components/listbox/listbox.ts +427 -0
- package/lib/src/components/menu/caret-right-solid.svg +1 -0
- package/lib/src/components/menu/menu.module.scss +108 -0
- package/lib/src/components/menu/menu.ts +168 -0
- package/lib/src/components/messages/circle-exclamation.svg +1 -0
- package/lib/src/components/messages/messages.module.scss +47 -0
- package/lib/src/components/messages/messages.ts +64 -0
- package/lib/src/components/normalize.scss +386 -0
- package/lib/src/components/notification/circle-check-solid.svg +1 -0
- package/lib/src/components/notification/circle-exclamation-solid.svg +1 -0
- package/lib/src/components/notification/circle-notch-light.svg +1 -0
- package/lib/src/components/notification/notification.module.scss +82 -0
- package/lib/src/components/notification/notification.ts +108 -0
- package/lib/src/components/notification/xmark-sharp-light.svg +1 -0
- package/lib/src/components/panel/panel.module.scss +48 -0
- package/lib/src/components/panel/panel.ts +57 -0
- package/lib/src/components/popup/popup.module.scss +43 -0
- package/lib/src/components/popup/popup.ts +395 -0
- package/lib/src/components/progress/progress.module.scss +57 -0
- package/lib/src/components/progress/progress.ts +43 -0
- package/lib/src/components/rating/rating.module.scss +23 -0
- package/lib/src/components/rating/rating.ts +125 -0
- package/lib/src/components/rating/star-sharp-light.svg +1 -0
- package/lib/src/components/rating/star-sharp-solid.svg +1 -0
- package/lib/src/components/shared.scss +76 -0
- package/lib/src/components/sizers/sizer.module.scss +90 -0
- package/lib/src/components/sizers/sizer.ts +120 -0
- package/lib/src/components/slider/slider.module.scss +71 -0
- package/lib/src/components/slider/slider.ts +143 -0
- package/lib/src/components/switch/switch.module.scss +127 -0
- package/lib/src/components/switch/switch.ts +56 -0
- package/lib/src/components/tabs/tabs.module.scss +46 -0
- package/lib/src/components/tabs/tabs.ts +157 -0
- package/lib/src/components/textarea/textarea.module.scss +59 -0
- package/lib/src/components/textarea/textarea.ts +54 -0
- package/lib/src/components/textedit/textedit.module.scss +114 -0
- package/lib/src/components/textedit/textedit.ts +82 -0
- package/lib/src/components/themes.scss +77 -0
- package/lib/src/components/tooltips/circle-info-sharp-light.svg +1 -0
- package/lib/src/components/tooltips/tooltips.scss +51 -0
- package/lib/src/components/tooltips/tooltips.ts +103 -0
- package/lib/src/components/treeview/chevron-down-light.svg +1 -0
- package/lib/src/components/treeview/treeview.module.scss +116 -0
- package/lib/src/components/treeview/treeview.ts +403 -0
- package/lib/src/components/viewport/viewport.module.scss +25 -0
- package/lib/src/components/viewport/viewport.ts +38 -0
- package/lib/src/core/component.ts +979 -0
- package/lib/src/core/core_colors.ts +250 -0
- package/lib/src/{dom_events.ts → core/core_dom.ts} +195 -39
- package/lib/src/{drag_manager.ts → core/core_dragdrop.ts} +29 -44
- package/lib/src/core/core_element.ts +98 -0
- package/lib/src/core/core_events.ts +149 -0
- package/lib/src/{i18n.ts → core/core_i18n.ts} +43 -42
- package/lib/src/{router.ts → core/core_router.ts} +27 -40
- package/lib/src/core/core_styles.ts +215 -0
- package/lib/src/core/core_svg.ts +550 -0
- package/lib/src/core/core_tools.ts +673 -0
- package/lib/src/demo/assets/house-light.svg +1 -0
- package/lib/src/demo/assets/radio.svg +4 -0
- package/lib/src/demo/index.html +12 -0
- package/lib/src/demo/main.scss +21 -0
- package/lib/src/demo/main.tsx +323 -0
- package/lib/src/main.scss +21 -0
- package/lib/src/main.tsx +323 -0
- package/lib/src/x4.scss +19 -0
- package/lib/src/x4.ts +60 -0
- package/lib/types/x4.d.ts +26548 -0
- package/package.json +68 -59
- package/scripts/build.mjs +351 -0
- package/scripts/prepack.mjs +43 -0
- package/src/components/base.scss +26 -0
- package/src/components/boxes/boxes.module.scss +37 -0
- package/src/components/boxes/boxes.ts +125 -0
- package/src/components/btngroup/btngroup.module.scss +29 -0
- package/src/components/btngroup/btngroup.ts +106 -0
- package/src/components/button/button.module.scss +154 -0
- package/src/components/button/button.ts +117 -0
- package/src/components/calendar/calendar-check-sharp-light.svg +1 -0
- package/src/components/calendar/calendar.module.scss +163 -0
- package/src/components/calendar/calendar.ts +326 -0
- package/src/components/calendar/chevron-left-sharp-light.svg +1 -0
- package/src/components/calendar/chevron-right-sharp-light.svg +1 -0
- package/src/components/checkbox/check.svg +4 -0
- package/src/components/checkbox/checkbox.module.scss +142 -0
- package/src/components/checkbox/checkbox.ts +125 -0
- package/src/components/colorinput/colorinput.module.scss +65 -0
- package/src/components/colorinput/colorinput.ts +88 -0
- package/src/components/colorinput/crosshairs-simple-sharp-light.svg +1 -0
- package/src/components/colorpicker/colorpicker.module.scss +133 -0
- package/src/components/colorpicker/colorpicker.ts +477 -0
- package/src/components/combobox/combobox.module.scss +121 -0
- package/src/components/combobox/combobox.ts +190 -0
- package/src/components/combobox/updown.svg +4 -0
- package/src/components/dialog/dialog.module.scss +71 -0
- package/src/components/dialog/dialog.ts +91 -0
- package/src/components/dialog/xmark-sharp-light.svg +1 -0
- package/src/components/form/form.module.scss +34 -0
- package/src/components/form/form.ts +36 -0
- package/src/components/header/header.module.scss +40 -0
- package/src/components/header/header.ts +124 -0
- package/src/components/icon/icon.module.scss +30 -0
- package/src/components/icon/icon.ts +134 -0
- package/src/components/image/image.module.scss +21 -0
- package/src/components/image/image.ts +67 -0
- package/src/components/input/input.module.scss +69 -0
- package/src/components/input/input.ts +274 -0
- package/src/components/label/label.module.scss +52 -0
- package/src/components/label/label.ts +55 -0
- package/src/components/listbox/listbox.module.scss +103 -0
- package/src/components/listbox/listbox.ts +427 -0
- package/src/components/menu/caret-right-solid.svg +1 -0
- package/src/components/menu/menu.module.scss +108 -0
- package/src/components/menu/menu.ts +168 -0
- package/src/components/messages/circle-exclamation.svg +1 -0
- package/src/components/messages/messages.module.scss +47 -0
- package/src/components/messages/messages.ts +64 -0
- package/src/components/normalize.scss +386 -0
- package/src/components/notification/circle-check-solid.svg +1 -0
- package/src/components/notification/circle-exclamation-solid.svg +1 -0
- package/src/components/notification/circle-notch-light.svg +1 -0
- package/src/components/notification/notification.module.scss +82 -0
- package/src/components/notification/notification.ts +108 -0
- package/src/components/notification/xmark-sharp-light.svg +1 -0
- package/src/components/panel/panel.module.scss +48 -0
- package/src/components/panel/panel.ts +57 -0
- package/src/components/popup/popup.module.scss +43 -0
- package/src/components/popup/popup.ts +395 -0
- package/src/components/progress/progress.module.scss +57 -0
- package/src/components/progress/progress.ts +43 -0
- package/src/components/rating/rating.module.scss +23 -0
- package/src/components/rating/rating.ts +125 -0
- package/src/components/rating/star-sharp-light.svg +1 -0
- package/src/components/rating/star-sharp-solid.svg +1 -0
- package/src/components/shared.scss +76 -0
- package/src/components/sizers/sizer.module.scss +90 -0
- package/src/components/sizers/sizer.ts +120 -0
- package/src/components/slider/slider.module.scss +71 -0
- package/src/components/slider/slider.ts +143 -0
- package/src/components/switch/switch.module.scss +127 -0
- package/src/components/switch/switch.ts +56 -0
- package/src/components/tabs/tabs.module.scss +46 -0
- package/src/components/tabs/tabs.ts +157 -0
- package/src/components/textarea/textarea.module.scss +59 -0
- package/src/components/textarea/textarea.ts +54 -0
- package/src/components/textedit/textedit.module.scss +114 -0
- package/src/components/textedit/textedit.ts +82 -0
- package/src/components/themes.scss +77 -0
- package/src/components/tooltips/circle-info-sharp-light.svg +1 -0
- package/src/components/tooltips/tooltips.scss +51 -0
- package/src/components/tooltips/tooltips.ts +103 -0
- package/src/components/treeview/chevron-down-light.svg +1 -0
- package/src/components/treeview/treeview.module.scss +116 -0
- package/src/components/treeview/treeview.ts +403 -0
- package/src/components/viewport/viewport.module.scss +25 -0
- package/src/components/viewport/viewport.ts +38 -0
- package/src/core/component.ts +979 -0
- package/src/core/core_colors.ts +250 -0
- package/src/core/core_dom.ts +471 -0
- package/src/core/core_dragdrop.ts +201 -0
- package/src/core/core_element.ts +98 -0
- package/src/core/core_events.ts +149 -0
- package/src/core/core_i18n.ts +377 -0
- package/src/core/core_router.ts +221 -0
- package/src/core/core_styles.ts +215 -0
- package/src/core/core_svg.ts +550 -0
- package/src/core/core_tools.ts +673 -0
- package/src/demo/assets/house-light.svg +1 -0
- package/src/demo/assets/radio.svg +4 -0
- package/src/demo/index.html +12 -0
- package/src/demo/main.scss +21 -0
- package/src/demo/main.tsx +323 -0
- package/src/x4.scss +19 -0
- package/src/x4.ts +60 -0
- package/tsconfig.json +14 -0
- package/types/scss.d.ts +4 -0
- package/types/svg.d.ts +4 -0
- package/types/x4react.d.ts +9 -0
- package/lib/changelog.txt +0 -23
- package/lib/cjs/x4js.js +0 -39
- package/lib/cjs/x4js.js.map +0 -7
- package/lib/esm/x4js.mjs +0 -15972
- package/lib/esm/x4js.mjs.map +0 -7
- package/lib/licence.md +0 -21
- package/lib/src/MIT-license.md +0 -14
- package/lib/src/action.ts +0 -88
- package/lib/src/alpha.jpg +0 -0
- package/lib/src/app_sockets.ts +0 -81
- package/lib/src/application.ts +0 -262
- package/lib/src/autocomplete.ts +0 -232
- package/lib/src/base64.ts +0 -166
- package/lib/src/base_component.ts +0 -152
- package/lib/src/button.ts +0 -355
- package/lib/src/canvas.ts +0 -510
- package/lib/src/cardview.ts +0 -228
- package/lib/src/checkbox.ts +0 -188
- package/lib/src/color.ts +0 -752
- package/lib/src/colorpicker.ts +0 -1649
- package/lib/src/combobox.ts +0 -512
- package/lib/src/component.ts +0 -2367
- package/lib/src/copyright.txt +0 -27
- package/lib/src/datastore.ts +0 -1302
- package/lib/src/dialog.ts +0 -656
- package/lib/src/drawtext.ts +0 -355
- package/lib/src/fileupload.ts +0 -213
- package/lib/src/form.ts +0 -413
- package/lib/src/formatters.ts +0 -105
- package/lib/src/gridview.ts +0 -1185
- package/lib/src/icon.ts +0 -362
- package/lib/src/image.ts +0 -225
- package/lib/src/index.ts +0 -89
- package/lib/src/input.ts +0 -297
- package/lib/src/label.ts +0 -153
- package/lib/src/layout.ts +0 -442
- package/lib/src/link.ts +0 -86
- package/lib/src/listview.ts +0 -765
- package/lib/src/md5.ts +0 -438
- package/lib/src/menu.ts +0 -425
- package/lib/src/messagebox.ts +0 -224
- package/lib/src/panel.ts +0 -86
- package/lib/src/popup.ts +0 -494
- package/lib/src/property_editor.ts +0 -337
- package/lib/src/radiobtn.ts +0 -197
- package/lib/src/rating.ts +0 -135
- package/lib/src/request.ts +0 -300
- package/lib/src/settings.ts +0 -77
- package/lib/src/sidebarview.ts +0 -108
- package/lib/src/spreadsheet.ts +0 -1449
- package/lib/src/styles.ts +0 -343
- package/lib/src/svgcomponent.ts +0 -592
- package/lib/src/tabbar.ts +0 -151
- package/lib/src/tabview.ts +0 -110
- package/lib/src/textarea.ts +0 -235
- package/lib/src/textedit.ts +0 -533
- package/lib/src/toaster.ts +0 -80
- package/lib/src/tools.ts +0 -1473
- package/lib/src/tooltips.ts +0 -191
- package/lib/src/treeview.ts +0 -716
- package/lib/src/version.ts +0 -30
- package/lib/src/x4.less +0 -2242
- package/lib/src/x4dom.ts +0 -57
- package/lib/src/x4events.ts +0 -585
- package/lib/src/x4js.ts +0 -89
- package/lib/src/x4react.ts +0 -90
- package/lib/styles/x4.css +0 -1785
- package/lib/styles/x4.less +0 -2242
- package/lib/types/x4js.d.ts +0 -6728
- package/license.md +0 -21
package/lib/src/textedit.ts
DELETED
|
@@ -1,533 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* ___ ___ __
|
|
3
|
-
* \ \_/ / / _
|
|
4
|
-
* \ / /_| |_
|
|
5
|
-
* / _ \____ _|
|
|
6
|
-
* /__/ \__\ |_|
|
|
7
|
-
*
|
|
8
|
-
* @file textedit.ts
|
|
9
|
-
* @author Etienne Cochard
|
|
10
|
-
*
|
|
11
|
-
* Copyright (c) 2019-2023 R-libre ingenierie
|
|
12
|
-
*
|
|
13
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14
|
-
* of this software and associated documentation files (the "Software"), to deal
|
|
15
|
-
* in the Software without restriction, including without limitation the rights
|
|
16
|
-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
17
|
-
* of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
18
|
-
* subject to the following conditions:
|
|
19
|
-
* The above copyright notice and this permission notice shall be included in all copies
|
|
20
|
-
* or substantial portions of the Software.
|
|
21
|
-
*
|
|
22
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
23
|
-
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
24
|
-
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
25
|
-
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
26
|
-
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
27
|
-
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
28
|
-
**/
|
|
29
|
-
|
|
30
|
-
import { x4document } from './x4dom'
|
|
31
|
-
|
|
32
|
-
import { Component, EvFocus, HtmlString } from './component'
|
|
33
|
-
import { Input, InputProps, InputEventMap, EditType } from './input'
|
|
34
|
-
import { IconID } from './icon'
|
|
35
|
-
import { Button } from './button'
|
|
36
|
-
import { HLayout } from './layout'
|
|
37
|
-
import { Label } from './label'
|
|
38
|
-
import { PopupCalendar } from './calendar'
|
|
39
|
-
import { sprintf, parseIntlDate, formatIntlDate } from './tools';
|
|
40
|
-
import { Tooltip } from './tooltips'
|
|
41
|
-
import { EvClick, EvChange, EventCallback } from './x4events';
|
|
42
|
-
|
|
43
|
-
import { _tr } from './i18n'
|
|
44
|
-
|
|
45
|
-
// throw in case of error
|
|
46
|
-
// return the corrected
|
|
47
|
-
type ValidationFunction = (value: string) => string;
|
|
48
|
-
|
|
49
|
-
/** @ignore */
|
|
50
|
-
const reEmail = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
|
51
|
-
|
|
52
|
-
// ============================================================================
|
|
53
|
-
// [TEXTEDIT]
|
|
54
|
-
// ============================================================================
|
|
55
|
-
|
|
56
|
-
interface TextEditEventMap extends InputEventMap {
|
|
57
|
-
click: EvClick;
|
|
58
|
-
change: EvChange;
|
|
59
|
-
focus: EvFocus;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
export interface TextEditProps extends InputProps<TextEditEventMap> {
|
|
63
|
-
label?: string | HtmlString;
|
|
64
|
-
labelWidth?: number; // <0 for flex -> -3 mean flex: 3
|
|
65
|
-
labelAlign?: 'left' | 'right' | 'top';
|
|
66
|
-
required?: boolean;
|
|
67
|
-
spellcheck?: boolean;
|
|
68
|
-
icon?: IconID;
|
|
69
|
-
pattern?: string;
|
|
70
|
-
uppercase?: boolean;
|
|
71
|
-
format?: string | 'native'; // default store format on type date.
|
|
72
|
-
autosel?: boolean; // select content on focus
|
|
73
|
-
|
|
74
|
-
// by default mysql format without time 'YYYY-MM-DD'
|
|
75
|
-
// use 'native' to work on real Date object (get/set value)
|
|
76
|
-
|
|
77
|
-
gadgets?: Component[];
|
|
78
|
-
|
|
79
|
-
validator?: ValidationFunction;
|
|
80
|
-
|
|
81
|
-
change?: EventCallback<EvChange>; // shortcut to events: { change: ... }
|
|
82
|
-
click?: EventCallback<EvClick>; // shortcut to events: { click: ... }
|
|
83
|
-
focus?: EventCallback<EvFocus>; // shortcut to events: { focus: ... }
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
/**
|
|
89
|
-
* TextEdit is a single line editor, it can have a label and an error descriptor.
|
|
90
|
-
*/
|
|
91
|
-
|
|
92
|
-
export class TextEdit<T extends TextEditProps = TextEditProps, E extends TextEditEventMap = TextEditEventMap > extends Component<T, E> {
|
|
93
|
-
|
|
94
|
-
private m_cal_popup: PopupCalendar;
|
|
95
|
-
protected m_ui_input: Input;
|
|
96
|
-
|
|
97
|
-
constructor(props: T) {
|
|
98
|
-
super(props);
|
|
99
|
-
this.addClass( '@hlayout' );
|
|
100
|
-
this.mapPropEvents( props, 'change', 'click', 'focus' );
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
componentCreated() {
|
|
104
|
-
super.componentCreated( );
|
|
105
|
-
|
|
106
|
-
if (this.m_props.autoFocus) {
|
|
107
|
-
this.focus();
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
focus() {
|
|
112
|
-
this.m_ui_input.focus();
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
/** @ignore */
|
|
116
|
-
render(props: TextEditProps) {
|
|
117
|
-
|
|
118
|
-
let eprops: InputProps = {
|
|
119
|
-
flex: 1,
|
|
120
|
-
dom_events: {
|
|
121
|
-
focus: ( ) => this._focus( ),
|
|
122
|
-
focusout: ( ) => this._blur( ),
|
|
123
|
-
input: ( ) => this._change( )
|
|
124
|
-
},
|
|
125
|
-
value: props.value,
|
|
126
|
-
name: props.name,
|
|
127
|
-
type: props.type,
|
|
128
|
-
placeHolder: props.placeHolder,
|
|
129
|
-
autoFocus: props.autoFocus,
|
|
130
|
-
readOnly: props.readOnly,
|
|
131
|
-
value_hook: props.value_hook,
|
|
132
|
-
uppercase: props.uppercase,
|
|
133
|
-
spellcheck: props.spellcheck,
|
|
134
|
-
tabIndex: props.tabIndex === undefined ? true : props.tabIndex,
|
|
135
|
-
attrs: props.attrs,
|
|
136
|
-
min: props.min,
|
|
137
|
-
max: props.max,
|
|
138
|
-
autosel: props.autosel,
|
|
139
|
-
};
|
|
140
|
-
|
|
141
|
-
// date is handled manually with popupcalendar
|
|
142
|
-
|
|
143
|
-
if (props.type == 'date') {
|
|
144
|
-
props.format = props.format ?? 'Y-M-D';
|
|
145
|
-
eprops.type = 'text';
|
|
146
|
-
|
|
147
|
-
let def_hook = {
|
|
148
|
-
get: ( ) => this._date_get_hook(),
|
|
149
|
-
set: (e) => this._date_set_hook(e)
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
eprops.value_hook = props.value_hook ?? def_hook;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
this.m_ui_input = new Input(eprops);
|
|
156
|
-
|
|
157
|
-
// button
|
|
158
|
-
let button = undefined;
|
|
159
|
-
if (props.icon) {
|
|
160
|
-
button = new Button({
|
|
161
|
-
icon: props.icon,
|
|
162
|
-
click: () => this._btnClick(),
|
|
163
|
-
tabIndex: false
|
|
164
|
-
});
|
|
165
|
-
}
|
|
166
|
-
else if (props.type == 'date') {
|
|
167
|
-
|
|
168
|
-
button = new Button({
|
|
169
|
-
cls: 'gadget',
|
|
170
|
-
icon: 'var( --x4-icon-calendar-days )',
|
|
171
|
-
tabIndex: false,
|
|
172
|
-
click: () => this._showDatePicker(button)
|
|
173
|
-
});
|
|
174
|
-
|
|
175
|
-
if (!props.validator) {
|
|
176
|
-
props.validator = this._date_validator;
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
let ag = props.gadgets ?? [];
|
|
181
|
-
ag.forEach( b => {
|
|
182
|
-
b.addClass( 'gadget' );
|
|
183
|
-
});
|
|
184
|
-
|
|
185
|
-
let gadgets = [button, ...ag];
|
|
186
|
-
|
|
187
|
-
this.setClass('@required', props.required);
|
|
188
|
-
if (props.gadgets && props.gadgets.length) {
|
|
189
|
-
this.addClass('with-gadgets');
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
let width = undefined,
|
|
193
|
-
flex = undefined,
|
|
194
|
-
labelWidth = props.labelWidth;
|
|
195
|
-
|
|
196
|
-
if (labelWidth > 0) {
|
|
197
|
-
width = labelWidth;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
if (labelWidth < 0) {
|
|
201
|
-
flex = -labelWidth;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
let label = undefined;
|
|
205
|
-
let labelAlign = props.labelAlign;
|
|
206
|
-
let top = false;
|
|
207
|
-
|
|
208
|
-
if (props.label) {
|
|
209
|
-
|
|
210
|
-
if (labelAlign == 'top') {
|
|
211
|
-
labelAlign = 'left';
|
|
212
|
-
top = true;
|
|
213
|
-
flex = 1;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
label = new Label({
|
|
217
|
-
ref: 'label',
|
|
218
|
-
tag: 'label',
|
|
219
|
-
cls: 'label1' + (props.label ? '' : ' @hidden'), // todo: why 'label1' class name ?
|
|
220
|
-
text: props.label ?? '',
|
|
221
|
-
width,
|
|
222
|
-
flex,
|
|
223
|
-
align: labelAlign
|
|
224
|
-
});
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
if (top) {
|
|
228
|
-
this.removeClass('@hlayout');
|
|
229
|
-
this.addClass('@vlayout vertical');
|
|
230
|
-
|
|
231
|
-
this.setContent([
|
|
232
|
-
label,
|
|
233
|
-
new HLayout({ width, content: [this.m_ui_input, ...gadgets] })
|
|
234
|
-
]);
|
|
235
|
-
}
|
|
236
|
-
else {
|
|
237
|
-
this.addClass('@hlayout');
|
|
238
|
-
this.setContent([label, this.m_ui_input, ...gadgets]);
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
enable(ena?: boolean) {
|
|
243
|
-
if (ena === true) {
|
|
244
|
-
this.m_ui_input.enable();
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
super.enable(ena);
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
disable() {
|
|
251
|
-
this.m_ui_input.disable();
|
|
252
|
-
super.disable();
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
private _btnClick() {
|
|
256
|
-
this.emit('click', EvClick(this.value) );
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
/**
|
|
260
|
-
* select the value format for input/output on textedit of type date
|
|
261
|
-
* cf. formatIntlDate / parseIntlDate
|
|
262
|
-
* @param fmt
|
|
263
|
-
*/
|
|
264
|
-
public setDateStoreFormat(fmt: string) {
|
|
265
|
-
this.m_props.format = fmt;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
public setStoreValue(value: any) {
|
|
269
|
-
this.m_ui_input.setStoreValue(value);
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
public getStoreValue(): any {
|
|
273
|
-
return this.m_ui_input.getStoreValue();
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
private _date_get_hook() {
|
|
277
|
-
let date = parseIntlDate(this.value);
|
|
278
|
-
let props = this.m_props;
|
|
279
|
-
if (props.format == 'native') {
|
|
280
|
-
return date;
|
|
281
|
-
}
|
|
282
|
-
else {
|
|
283
|
-
return date ? formatIntlDate(date, props.format) : null;
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
private _date_set_hook(dte) {
|
|
288
|
-
let props = this.m_props;
|
|
289
|
-
|
|
290
|
-
if (props.format == 'native') {
|
|
291
|
-
this.value = formatIntlDate(dte);
|
|
292
|
-
}
|
|
293
|
-
else if (dte) {
|
|
294
|
-
let date = parseIntlDate(dte, props.format);
|
|
295
|
-
this.value = formatIntlDate(date);
|
|
296
|
-
}
|
|
297
|
-
else {
|
|
298
|
-
this.value = '';
|
|
299
|
-
}
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
public showError(text: string) {
|
|
303
|
-
this.m_ui_input.showError( text );
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
public clearError() {
|
|
307
|
-
this.m_ui_input.clearError( );
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
public get value(): string {
|
|
311
|
-
return this.getValue( );
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
public getValue( ) : string {
|
|
315
|
-
if (this.m_ui_input) {
|
|
316
|
-
return this.m_ui_input.value;
|
|
317
|
-
}
|
|
318
|
-
else {
|
|
319
|
-
return this.m_props.value;
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
/**
|
|
324
|
-
*
|
|
325
|
-
*/
|
|
326
|
-
|
|
327
|
-
public set value(value: string) {
|
|
328
|
-
this.setValue( value );
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
public setValue( value: string ) {
|
|
332
|
-
if (this.m_ui_input) {
|
|
333
|
-
this.m_ui_input.value = value;
|
|
334
|
-
}
|
|
335
|
-
else {
|
|
336
|
-
this.m_props.value = value;
|
|
337
|
-
}
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
/**
|
|
341
|
-
* select all the text
|
|
342
|
-
*/
|
|
343
|
-
|
|
344
|
-
public selectAll() {
|
|
345
|
-
this.m_ui_input.selectAll();
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
public select(start: number, length: number = 9999): void {
|
|
349
|
-
this.m_ui_input.select(start, length);
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
public getSelection() {
|
|
353
|
-
return this.m_ui_input.getSelection();
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
set readOnly(ro: boolean) {
|
|
357
|
-
this.m_ui_input.readOnly = ro;
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
get label() {
|
|
361
|
-
return this.itemWithRef<Label>('label')?.text;
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
set label(text) {
|
|
365
|
-
this.itemWithRef<Label>('label').text = text;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
/**
|
|
369
|
-
* content changed
|
|
370
|
-
* todo: should move into Input
|
|
371
|
-
*/
|
|
372
|
-
|
|
373
|
-
private _change() {
|
|
374
|
-
let value = this.m_ui_input.value;
|
|
375
|
-
this.emit('change', EvChange(value));
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
/**
|
|
379
|
-
* getting focus
|
|
380
|
-
*/
|
|
381
|
-
|
|
382
|
-
private _focus() {
|
|
383
|
-
this.clearError();
|
|
384
|
-
this.emit('focus', EvFocus(true));
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
/**
|
|
388
|
-
* loosing focus
|
|
389
|
-
* @param value
|
|
390
|
-
*/
|
|
391
|
-
|
|
392
|
-
private _blur() {
|
|
393
|
-
this._validate(this.m_ui_input.value);
|
|
394
|
-
this.emit('focus', EvFocus(false));
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
/**
|
|
398
|
-
* todo: should move into Input
|
|
399
|
-
* @returns
|
|
400
|
-
*/
|
|
401
|
-
public validate(): boolean {
|
|
402
|
-
return this._validate(this.value);
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
protected _validate(value: string): boolean {
|
|
406
|
-
let props = this.m_props;
|
|
407
|
-
let update = false;
|
|
408
|
-
|
|
409
|
-
if (props.required && value.length == 0) {
|
|
410
|
-
this.showError(_tr.global.required_field);
|
|
411
|
-
return false;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
if (value != '') {
|
|
415
|
-
let pattern = this.getAttribute('pattern');
|
|
416
|
-
if (pattern) {
|
|
417
|
-
let re = new RegExp(pattern);
|
|
418
|
-
if (re && !re.test(value)) {
|
|
419
|
-
this.showError(_tr.global.invalid_format);
|
|
420
|
-
return false;
|
|
421
|
-
}
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
if (props.type == 'email') {
|
|
425
|
-
if (!reEmail.test(value.toLowerCase())) {
|
|
426
|
-
this.showError(_tr.global.invalid_email);
|
|
427
|
-
return false;
|
|
428
|
-
}
|
|
429
|
-
}
|
|
430
|
-
else if (props.type == 'number') {
|
|
431
|
-
|
|
432
|
-
const v = parseFloat(value);
|
|
433
|
-
if (isNaN(v)) {
|
|
434
|
-
this.showError(_tr.global.invalid_number);
|
|
435
|
-
return false;
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
let min = parseFloat(this.m_ui_input.getAttribute('min'));
|
|
439
|
-
if (min !== undefined && v < min) {
|
|
440
|
-
value = '' + min;
|
|
441
|
-
update = true;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
let max = parseFloat(this.m_ui_input.getAttribute('max'));
|
|
445
|
-
if (max !== undefined && v > max) {
|
|
446
|
-
value = '' + max;
|
|
447
|
-
update = true;
|
|
448
|
-
}
|
|
449
|
-
}
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
if (props.validator) {
|
|
454
|
-
try {
|
|
455
|
-
this.value = props.validator(value);
|
|
456
|
-
}
|
|
457
|
-
catch (err) {
|
|
458
|
-
this.showError(err instanceof Error ? err.message : err as string);
|
|
459
|
-
return false;
|
|
460
|
-
}
|
|
461
|
-
}
|
|
462
|
-
else if (update) {
|
|
463
|
-
this.value = value;
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
return true;
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
_date_validator(value: string): string {
|
|
470
|
-
|
|
471
|
-
value = value.trim();
|
|
472
|
-
if (value == '') {
|
|
473
|
-
return '';
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
let date: Date;
|
|
477
|
-
if (value == '@') {
|
|
478
|
-
date = new Date();
|
|
479
|
-
}
|
|
480
|
-
else {
|
|
481
|
-
date = parseIntlDate(value);
|
|
482
|
-
if (!date) {
|
|
483
|
-
throw sprintf(_tr.global.invalid_date, _tr.global.date_format);
|
|
484
|
-
}
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
return formatIntlDate(date);
|
|
488
|
-
}
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
//onKeyDown( e ) {
|
|
492
|
-
// if( this.readOnly ) {
|
|
493
|
-
// if( this.type=='date' && (e.key==' ' || e.key=='Enter') ) {
|
|
494
|
-
// this.showDatePicker( );
|
|
495
|
-
// e.stopPropagation( );
|
|
496
|
-
// e.preventDefault( );
|
|
497
|
-
// }
|
|
498
|
-
// }
|
|
499
|
-
//}
|
|
500
|
-
|
|
501
|
-
//onClick( e ) {
|
|
502
|
-
// if( this.readOnly ) {
|
|
503
|
-
// if( this.type=='date' ) {
|
|
504
|
-
// this.showDatePicker( );
|
|
505
|
-
// e.stopPropagation( );
|
|
506
|
-
// e.preventDefault( );
|
|
507
|
-
// }
|
|
508
|
-
// }
|
|
509
|
-
//}
|
|
510
|
-
|
|
511
|
-
private _showDatePicker(btn: Component) {
|
|
512
|
-
|
|
513
|
-
if (!this.m_cal_popup) {
|
|
514
|
-
this.m_cal_popup = new PopupCalendar({
|
|
515
|
-
change: (ev: EvChange) => {
|
|
516
|
-
this.value = formatIntlDate(ev.value as Date);
|
|
517
|
-
this.m_cal_popup.close();
|
|
518
|
-
}
|
|
519
|
-
});
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
let rc = this.m_ui_input.getBoundingRect();
|
|
523
|
-
this.m_cal_popup.displayAt(rc.left, rc.bottom, 'top left');
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
get input() {
|
|
527
|
-
return this.m_ui_input;
|
|
528
|
-
}
|
|
529
|
-
|
|
530
|
-
get type(): EditType {
|
|
531
|
-
return this.m_props.type;
|
|
532
|
-
}
|
|
533
|
-
}
|
package/lib/src/toaster.ts
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* ___ ___ __
|
|
3
|
-
* \ \_/ / / _
|
|
4
|
-
* \ / /_| |_
|
|
5
|
-
* / _ \____ _|
|
|
6
|
-
* /__/ \__\ |_|
|
|
7
|
-
*
|
|
8
|
-
* @file toaster.ts
|
|
9
|
-
* @author Etienne Cochard
|
|
10
|
-
*
|
|
11
|
-
* Copyright (c) 2019-2023 R-libre ingenierie
|
|
12
|
-
*
|
|
13
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14
|
-
* of this software and associated documentation files (the "Software"), to deal
|
|
15
|
-
* in the Software without restriction, including without limitation the rights
|
|
16
|
-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
17
|
-
* of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
18
|
-
* subject to the following conditions:
|
|
19
|
-
* The above copyright notice and this permission notice shall be included in all copies
|
|
20
|
-
* or substantial portions of the Software.
|
|
21
|
-
*
|
|
22
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
23
|
-
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
24
|
-
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
25
|
-
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
26
|
-
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
27
|
-
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
28
|
-
**/
|
|
29
|
-
|
|
30
|
-
import { IconID } from './icon';
|
|
31
|
-
import { Label } from "./label";
|
|
32
|
-
import { Popup, PopupProps} from './popup';
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
export interface ToasterProps extends PopupProps {
|
|
36
|
-
message: string;
|
|
37
|
-
icon?: IconID;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
export class Toaster extends Popup<ToasterProps> {
|
|
41
|
-
|
|
42
|
-
private m_message: string;
|
|
43
|
-
private m_icon: IconID;
|
|
44
|
-
|
|
45
|
-
constructor( props: ToasterProps ) {
|
|
46
|
-
super( props );
|
|
47
|
-
|
|
48
|
-
this.m_message = props.message;
|
|
49
|
-
this.m_icon = props.icon;
|
|
50
|
-
this.enableMask( false );
|
|
51
|
-
this.addClass( '@non-maskable' );
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
/** @ignore */
|
|
55
|
-
render( ) {
|
|
56
|
-
this.addClass( '@hlayout' );
|
|
57
|
-
this.setContent( [
|
|
58
|
-
new Label( { icon: this.m_icon, text: this.m_message } )
|
|
59
|
-
]);
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
show( ) {
|
|
63
|
-
this.show = super.show;
|
|
64
|
-
this.displayAt( 9999, 9999, 'br', {x:0,y:-24} );
|
|
65
|
-
|
|
66
|
-
let opacity = 1.0;
|
|
67
|
-
|
|
68
|
-
this.startTimer( 'fadeout', 2000, false, ( ) => {
|
|
69
|
-
|
|
70
|
-
this.startTimer( 'opacity', 100, true, ( ) => {
|
|
71
|
-
this.setStyleValue( 'opacity', opacity );
|
|
72
|
-
opacity -= 0.1;
|
|
73
|
-
|
|
74
|
-
if( opacity<0 ) {
|
|
75
|
-
this.dispose( );
|
|
76
|
-
}
|
|
77
|
-
});
|
|
78
|
-
} );
|
|
79
|
-
}
|
|
80
|
-
}
|