@schukai/monster 3.65.0 → 3.65.20
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +82 -327
- package/README.md +44 -40
- package/package.json +1 -48
- package/source/components/constants.mjs +10 -3
- package/source/components/datatable/change-button.mjs +12 -5
- package/source/components/datatable/columnbar.mjs +10 -1
- package/source/components/datatable/constants.mjs +11 -4
- package/source/components/datatable/dataset.mjs +10 -1
- package/source/components/datatable/datasource/dom.mjs +14 -1
- package/source/components/datatable/datasource/rest.mjs +10 -1
- package/source/components/datatable/datasource.mjs +10 -1
- package/source/components/datatable/datatable/header.mjs +220 -218
- package/source/components/datatable/datatable.mjs +757 -752
- package/source/components/datatable/embedded-pagination.mjs +10 -1
- package/source/components/datatable/filter/abstract-base.mjs +10 -1
- package/source/components/datatable/filter/date-range.mjs +10 -1
- package/source/components/datatable/filter/input.mjs +10 -1
- package/source/components/datatable/filter/range.mjs +10 -1
- package/source/components/datatable/filter/select.mjs +11 -4
- package/source/components/datatable/filter/settings.mjs +14 -0
- package/source/components/datatable/filter/util.mjs +14 -0
- package/source/components/datatable/filter-button.mjs +10 -1
- package/source/components/datatable/filter.mjs +11 -3
- package/source/components/datatable/pagination.mjs +14 -5
- package/source/components/datatable/save-button.mjs +279 -270
- package/source/components/datatable/status.mjs +10 -1
- package/source/components/datatable/stylesheet/change-button.mjs +16 -7
- package/source/components/datatable/stylesheet/column-bar.mjs +16 -7
- package/source/components/datatable/stylesheet/dataset.mjs +16 -7
- package/source/components/datatable/stylesheet/datasource.mjs +16 -7
- package/source/components/datatable/stylesheet/datatable.mjs +16 -7
- package/source/components/datatable/stylesheet/embedded-pagination.mjs +16 -7
- package/source/components/datatable/stylesheet/filter-button.mjs +16 -7
- package/source/components/datatable/stylesheet/filter-controls-defaults.mjs +16 -7
- package/source/components/datatable/stylesheet/filter-date-range.mjs +16 -7
- package/source/components/datatable/stylesheet/filter-range.mjs +16 -7
- package/source/components/datatable/stylesheet/filter.mjs +16 -7
- package/source/components/datatable/stylesheet/pagination.mjs +16 -7
- package/source/components/datatable/stylesheet/save-button.mjs +16 -7
- package/source/components/datatable/stylesheet/select-filter.mjs +16 -7
- package/source/components/datatable/stylesheet/status.mjs +16 -7
- package/source/components/datatable/util.mjs +16 -8
- package/source/components/form/action-button.mjs +11 -3
- package/source/components/form/api-button.mjs +11 -3
- package/source/components/form/button-bar.mjs +11 -3
- package/source/components/form/button.mjs +254 -249
- package/source/components/form/confirm-button.mjs +11 -3
- package/source/components/form/constants.mjs +10 -3
- package/source/components/form/context-error.mjs +69 -52
- package/source/components/form/context-help.mjs +11 -3
- package/source/components/form/field-set.mjs +10 -15
- package/source/components/form/form.mjs +12 -4
- package/source/components/form/message-state-button.mjs +11 -3
- package/source/components/form/popper-button.mjs +11 -3
- package/source/components/form/popper.mjs +6 -6
- package/source/components/form/reload.mjs +12 -4
- package/source/components/form/select.mjs +44 -33
- package/source/components/form/shadow-reload.mjs +11 -3
- package/source/components/form/state-button.mjs +11 -3
- package/source/components/form/stylesheet/action-button.mjs +16 -7
- package/source/components/form/stylesheet/api-button.mjs +16 -7
- package/source/components/form/stylesheet/button-bar.mjs +16 -7
- package/source/components/form/stylesheet/button.mjs +16 -7
- package/source/components/form/stylesheet/confirm-button.mjs +16 -7
- package/source/components/form/stylesheet/context-error.mjs +16 -7
- package/source/components/form/stylesheet/context-help.mjs +16 -7
- package/source/components/form/stylesheet/field-set.mjs +16 -7
- package/source/components/form/stylesheet/form.mjs +16 -7
- package/source/components/form/stylesheet/message-state-button.mjs +16 -7
- package/source/components/form/stylesheet/popper-button.mjs +16 -7
- package/source/components/form/stylesheet/select.mjs +16 -7
- package/source/components/form/stylesheet/state-button.mjs +16 -7
- package/source/components/form/stylesheet/toggle-switch.mjs +16 -7
- package/source/components/form/stylesheet/tree-select.mjs +16 -7
- package/source/components/form/tabs.mjs +12 -8
- package/source/components/form/template.mjs +11 -3
- package/source/components/form/toggle-switch.mjs +12 -8
- package/source/components/form/tree-select.mjs +10 -3
- package/source/components/form/types/state.mjs +10 -3
- package/source/components/form/util/fetch.mjs +10 -3
- package/source/components/form/util/floating-ui.mjs +10 -3
- package/source/components/form/util/popper.mjs +10 -3
- package/source/components/host/call-button.mjs +10 -1
- package/source/components/host/collapse.mjs +4 -6
- package/source/components/host/config-manager.mjs +2 -0
- package/source/components/host/constants.mjs +2 -0
- package/source/components/host/details.mjs +5 -8
- package/source/components/host/host.mjs +10 -1
- package/source/components/host/overlay.mjs +10 -1
- package/source/components/host/stylesheet/call-button.mjs +16 -7
- package/source/components/host/stylesheet/config-manager.mjs +16 -7
- package/source/components/host/stylesheet/host.mjs +16 -7
- package/source/components/host/stylesheet/overlay.mjs +16 -7
- package/source/components/host/stylesheet/toggle-button.mjs +16 -7
- package/source/components/host/stylesheet/viewer.mjs +16 -7
- package/source/components/host/toggle-button.mjs +10 -1
- package/source/components/host/util.mjs +14 -0
- package/source/components/host/viewer.mjs +10 -1
- package/source/components/layout/collapse.mjs +4 -3
- package/source/components/layout/details.mjs +2 -0
- package/source/components/layout/panel.mjs +179 -169
- package/source/components/layout/popper.mjs +324 -320
- package/source/components/layout/split-panel.mjs +329 -303
- package/source/components/layout/stylesheet/collapse.mjs +16 -7
- package/source/components/layout/stylesheet/details.mjs +16 -7
- package/source/components/layout/stylesheet/panel.mjs +16 -7
- package/source/components/layout/stylesheet/popper.mjs +16 -7
- package/source/components/layout/stylesheet/split-panel.mjs +16 -7
- package/source/components/layout/stylesheet/tabs.mjs +16 -7
- package/source/components/layout/stylesheet/width-toggle.mjs +16 -7
- package/source/components/layout/tabs.mjs +39 -24
- package/source/components/layout/width-toggle.mjs +148 -138
- package/source/components/navigation/style/table-of-content.pcss +20 -5
- package/source/components/navigation/stylesheet/table-of-content.mjs +17 -8
- package/source/components/navigation/table-of-content.mjs +394 -266
- package/source/components/notify/constants.mjs +10 -3
- package/source/components/notify/message.mjs +16 -9
- package/source/components/notify/notify.mjs +11 -4
- package/source/components/notify/stylesheet/message.mjs +16 -7
- package/source/components/notify/stylesheet/notify.mjs +16 -7
- package/source/components/state/log/entry.mjs +10 -1
- package/source/components/state/log.mjs +10 -1
- package/source/components/state/state.mjs +10 -1
- package/source/components/state/stylesheet/log.mjs +16 -7
- package/source/components/state/stylesheet/state.mjs +16 -7
- package/source/components/style/mixin/form.pcss +0 -1
- package/source/components/stylesheet/badge.mjs +16 -7
- package/source/components/stylesheet/border.mjs +16 -7
- package/source/components/stylesheet/button.mjs +16 -7
- package/source/components/stylesheet/card.mjs +16 -7
- package/source/components/stylesheet/color.mjs +16 -7
- package/source/components/stylesheet/common.mjs +16 -7
- package/source/components/stylesheet/control.mjs +16 -7
- package/source/components/stylesheet/data-grid.mjs +16 -7
- package/source/components/stylesheet/display.mjs +16 -7
- package/source/components/stylesheet/floating-ui.mjs +16 -7
- package/source/components/stylesheet/form.mjs +16 -7
- package/source/components/stylesheet/host.mjs +16 -7
- package/source/components/stylesheet/icons.mjs +16 -7
- package/source/components/stylesheet/link.mjs +16 -7
- package/source/components/stylesheet/mixin/badge.mjs +16 -7
- package/source/components/stylesheet/mixin/button.mjs +16 -7
- package/source/components/stylesheet/mixin/form.mjs +16 -7
- package/source/components/stylesheet/mixin/hover.mjs +16 -7
- package/source/components/stylesheet/mixin/icon.mjs +16 -7
- package/source/components/stylesheet/mixin/media.mjs +16 -7
- package/source/components/stylesheet/mixin/property.mjs +16 -7
- package/source/components/stylesheet/mixin/skeleton.mjs +16 -7
- package/source/components/stylesheet/mixin/spinner.mjs +16 -7
- package/source/components/stylesheet/mixin/typography.mjs +16 -7
- package/source/components/stylesheet/normalize.mjs +16 -7
- package/source/components/stylesheet/popper.mjs +16 -7
- package/source/components/stylesheet/property.mjs +16 -7
- package/source/components/stylesheet/ripple.mjs +16 -7
- package/source/components/stylesheet/skeleton.mjs +16 -7
- package/source/components/stylesheet/space.mjs +16 -7
- package/source/components/stylesheet/spinner.mjs +16 -7
- package/source/components/stylesheet/table.mjs +16 -7
- package/source/components/stylesheet/theme.mjs +16 -7
- package/source/components/stylesheet/tree-menu.mjs +10 -3
- package/source/components/stylesheet/typography.mjs +16 -7
- package/source/components/tree-menu/stylesheet/tree-menu.mjs +16 -7
- package/source/components/tree-menu/tree-menu.mjs +19 -8
- package/source/constants.mjs +10 -6
- package/source/constraints/abstract.mjs +10 -3
- package/source/constraints/abstractoperator.mjs +10 -3
- package/source/constraints/andoperator.mjs +10 -3
- package/source/constraints/invalid.mjs +10 -3
- package/source/constraints/isarray.mjs +10 -3
- package/source/constraints/isobject.mjs +10 -3
- package/source/constraints/oroperator.mjs +10 -3
- package/source/constraints/valid.mjs +10 -3
- package/source/data/buildmap.mjs +10 -3
- package/source/data/buildtree.mjs +10 -3
- package/source/data/datasource/dom.mjs +10 -3
- package/source/data/datasource/server/restapi/data-fetch-error.mjs +10 -3
- package/source/data/datasource/server/restapi/writeerror.mjs +10 -3
- package/source/data/datasource/server/restapi.mjs +10 -3
- package/source/data/datasource/server/webconnect.mjs +10 -3
- package/source/data/datasource/server.mjs +10 -3
- package/source/data/datasource/storage/localstorage.mjs +10 -3
- package/source/data/datasource/storage/sessionstorage.mjs +10 -3
- package/source/data/datasource/storage.mjs +10 -3
- package/source/data/datasource.mjs +10 -3
- package/source/data/diff.mjs +10 -3
- package/source/data/extend.mjs +10 -3
- package/source/data/pathfinder.mjs +10 -3
- package/source/data/pipe.mjs +10 -3
- package/source/data/transformer.mjs +34 -10
- package/source/dom/assembler.mjs +10 -3
- package/source/dom/attributes.mjs +10 -3
- package/source/dom/constants.mjs +10 -3
- package/source/dom/customcontrol.mjs +11 -4
- package/source/dom/customelement.mjs +31 -17
- package/source/dom/dimension.mjs +10 -3
- package/source/dom/events.mjs +10 -3
- package/source/dom/focusmanager.mjs +10 -3
- package/source/dom/locale.mjs +10 -3
- package/source/dom/ready.mjs +2 -1
- package/source/dom/resource/data.mjs +10 -3
- package/source/dom/resource/link/stylesheet.mjs +10 -3
- package/source/dom/resource/link.mjs +10 -3
- package/source/dom/resource/script.mjs +10 -3
- package/source/dom/resource.mjs +10 -3
- package/source/dom/resourcemanager.mjs +10 -3
- package/source/dom/slotted.mjs +14 -0
- package/source/dom/template.mjs +124 -136
- package/source/dom/theme.mjs +10 -3
- package/source/dom/updater.mjs +10 -3
- package/source/dom/util/extract-keys.mjs +10 -3
- package/source/dom/util/init-options-from-attributes.mjs +68 -61
- package/source/dom/util/set-option-from-attribute.mjs +10 -3
- package/source/dom/util.mjs +11 -4
- package/source/dom/worker/factory.mjs +10 -3
- package/source/i18n/formatter.mjs +10 -3
- package/source/i18n/locale.mjs +10 -3
- package/source/i18n/provider.mjs +10 -3
- package/source/i18n/providers/embed.mjs +10 -3
- package/source/i18n/providers/fetch.mjs +10 -3
- package/source/i18n/translations.mjs +10 -3
- package/source/logging/handler/console.mjs +10 -3
- package/source/logging/handler.mjs +10 -3
- package/source/logging/logentry.mjs +10 -3
- package/source/logging/logger.mjs +10 -3
- package/source/math/random.mjs +10 -3
- package/source/monster.mjs +3 -9
- package/source/net/webconnect/message.mjs +10 -3
- package/source/net/webconnect.mjs +20 -5
- package/source/text/bracketed-key-value-hash.mjs +10 -3
- package/source/text/formatter.mjs +10 -3
- package/source/text/generate-range-comparison-expression.mjs +10 -3
- package/source/text/util.mjs +14 -0
- package/source/types/base.mjs +10 -3
- package/source/types/basewithoptions.mjs +10 -3
- package/source/types/binary.mjs +10 -3
- package/source/types/dataurl.mjs +10 -3
- package/source/types/global.mjs +14 -7
- package/source/types/id.mjs +10 -3
- package/source/types/internal.mjs +11 -3
- package/source/types/is.mjs +10 -3
- package/source/types/mediatype.mjs +10 -3
- package/source/types/node.mjs +10 -3
- package/source/types/nodelist.mjs +10 -3
- package/source/types/noderecursiveiterator.mjs +10 -3
- package/source/types/observablequeue.mjs +10 -3
- package/source/types/observer.mjs +10 -3
- package/source/types/observerlist.mjs +10 -3
- package/source/types/proxyobserver.mjs +10 -3
- package/source/types/queue.mjs +10 -3
- package/source/types/randomid.mjs +10 -3
- package/source/types/regex.mjs +10 -3
- package/source/types/stack.mjs +10 -3
- package/source/types/tokenlist.mjs +10 -3
- package/source/types/typeof.mjs +10 -3
- package/source/types/uniquequeue.mjs +10 -3
- package/source/types/uuid.mjs +10 -3
- package/source/types/validate.mjs +10 -3
- package/source/types/version.mjs +10 -3
- package/source/util/clone.mjs +10 -3
- package/source/util/comparator.mjs +10 -3
- package/source/util/deadmansswitch.mjs +10 -3
- package/source/util/freeze.mjs +10 -3
- package/source/util/processing.mjs +10 -3
- package/source/util/runtime.mjs +10 -7
- package/source/util/sleep.mjs +10 -10
- package/source/util/trimspaces.mjs +10 -3
- package/test/cases/data/datasource/server/websocket.mjs +7 -9
- package/test/cases/data/transformer.mjs +47 -15
- package/test/cases/dom/customcontrol.mjs +0 -1
- package/test/cases/dom/customelement.mjs +1 -3
- package/test/cases/dom/template.mjs +3 -1
- package/test/util/jsdom.mjs +8 -7
- package/test/util/websocket.mjs +5 -1
- package/test/web/import.js +2 -1
- package/test/web/puppeteer.mjs +111 -0
- package/test/web/test.html +2 -2
- package/test/web/tests.js +2036 -1189
- package/example/components/form/button.mjs +0 -10
- package/example/components/form/field-set.mjs +0 -4
- package/example/components/form/select.mjs +0 -25
- package/example/components/form/toggle-switch.mjs +0 -7
- package/example/components/form/tree-select.mjs +0 -27
- package/example/components/host/host.mjs +0 -0
- package/example/components/notify/message.mjs +0 -4
- package/example/components/notify/notify.mjs +0 -4
- package/example/components/state/log.mjs +0 -0
- package/example/components/state/state.mjs +0 -0
- package/example/constraints/andoperator.mjs +0 -17
- package/example/constraints/invalid.mjs +0 -6
- package/example/constraints/isarray.mjs +0 -11
- package/example/constraints/isobject.mjs +0 -12
- package/example/constraints/oroperator.mjs +0 -15
- package/example/constraints/valid.mjs +0 -6
- package/example/data/buildmap.mjs +0 -67
- package/example/data/datasource/server/restapi.mjs +0 -20
- package/example/data/datasource/server/webconnect.mjs +0 -9
- package/example/data/datasource.mjs +0 -7
- package/example/data/diff.mjs +0 -39
- package/example/data/pathfinder-1.mjs +0 -23
- package/example/data/pathfinder-2.mjs +0 -19
- package/example/data/pipe.mjs +0 -14
- package/example/data/transformer.mjs +0 -9
- package/example/dom/customelement.mjs +0 -14
- package/example/dom/theme.mjs +0 -5
- package/example/dom/updater.mjs +0 -23
- package/example/i18n/formatter.mjs +0 -10
- package/example/i18n/providers/embed.mjs +0 -5
- package/example/i18n/providers/fetch.mjs +0 -5
- package/example/i18n/translations.mjs +0 -20
- package/example/net/webconnect.mjs +0 -16
- package/example/types/basewithoptions.mjs +0 -10
- package/example/types/is-1.mjs +0 -5
- package/example/types/is-10.mjs +0 -6
- package/example/types/is-2.mjs +0 -4
- package/example/types/is-3.mjs +0 -4
- package/example/types/is-4.mjs +0 -5
- package/example/types/is-5.mjs +0 -4
- package/example/types/is-6.mjs +0 -4
- package/example/types/is-7.mjs +0 -4
- package/example/types/is-8.mjs +0 -4
- package/example/types/is-9.mjs +0 -6
- package/example/types/noderecursiveiterator.mjs +0 -32
- package/example/types/observer.mjs +0 -9
- package/example/types/proxyobserver.mjs +0 -25
- package/example/types/queue.mjs +0 -20
- package/example/types/tokenlist-1.mjs +0 -4
- package/example/types/tokenlist-2.mjs +0 -7
- package/example/types/tokenlist-3.mjs +0 -5
- package/example/types/tokenlist-4.mjs +0 -5
- package/example/types/tokenlist-5.mjs +0 -5
- package/example/types/typeof.mjs +0 -9
- package/example/types/version-1.mjs +0 -6
- package/example/types/version-2.mjs +0 -3
- package/example/util/comparator.mjs +0 -10
- package/example/util/deadmansswitch.mjs +0 -9
- package/example/util/processing.mjs +0 -17
- package/source/components/datatable/datasource/namespace.mjs +0 -13
- package/source/components/datatable/datatable/namespace.mjs +0 -13
- package/source/components/datatable/events.mjs +0 -24
- package/source/components/datatable/filter/namespace.mjs +0 -13
- package/source/components/datatable/namespace.mjs +0 -11
- package/source/components/datatable/stylesheet/namespace.mjs +0 -13
- package/source/components/events.mjs +0 -17
- package/source/components/form/events.mjs +0 -108
- package/source/components/form/namespace.mjs +0 -13
- package/source/components/form/stylesheet/namespace.mjs +0 -13
- package/source/components/form/types/namespace.mjs +0 -13
- package/source/components/form/util/namespace.mjs +0 -13
- package/source/components/host/events.mjs +0 -131
- package/source/components/host/namespace.mjs +0 -13
- package/source/components/host/stylesheet/namespace.mjs +0 -13
- package/source/components/layout/events.mjs +0 -30
- package/source/components/layout/namespace.mjs +0 -13
- package/source/components/namespace.mjs +0 -14
- package/source/components/notify/events.mjs +0 -15
- package/source/components/notify/namespace.mjs +0 -15
- package/source/components/notify/stylesheet/namespace.mjs +0 -15
- package/source/components/state/log/namespace.mjs +0 -13
- package/source/components/state/namespace.mjs +0 -13
- package/source/components/stylesheet/namespace.mjs +0 -13
- package/source/components/tree-menu/namespace.mjs +0 -13
- package/source/components/tree-menu/stylesheet/namespace.mjs +0 -13
- package/source/constraints/namespace.mjs +0 -13
- package/source/data/datasource/namespace.mjs +0 -13
- package/source/data/datasource/server/namespace.mjs +0 -13
- package/source/data/datasource/server/restapi/namespace.mjs +0 -13
- package/source/data/datasource/storage/namespace.mjs +0 -13
- package/source/data/namespace.mjs +0 -13
- package/source/dom/namespace.mjs +0 -13
- package/source/dom/resource/link/namespace.mjs +0 -13
- package/source/dom/resource/namespace.mjs +0 -13
- package/source/dom/util/namespace.mjs +0 -13
- package/source/dom/worker/namespace.mjs +0 -13
- package/source/i18n/namespace.mjs +0 -13
- package/source/i18n/providers/namespace.mjs +0 -13
- package/source/logging/handler/namespace.mjs +0 -11
- package/source/logging/namespace.mjs +0 -13
- package/source/math/namespace.mjs +0 -13
- package/source/net/namespace.mjs +0 -13
- package/source/net/webconnect/namespace.mjs +0 -13
- package/source/text/namespace.mjs +0 -13
- package/source/types/namespace.mjs +0 -13
- package/source/util/namespace.mjs +0 -13
@@ -1,10 +0,0 @@
|
|
1
|
-
import {Button} from '@schukai/monster/source/components/form/button.js';
|
2
|
-
|
3
|
-
const button = document.createElement('monster-button');
|
4
|
-
// set label
|
5
|
-
button.setOption('labels.button', 'Click')
|
6
|
-
// add action for click
|
7
|
-
button.setOption('actions.click', function (e) {
|
8
|
-
console.log(e);
|
9
|
-
})
|
10
|
-
document.body.appendChild(button)
|
@@ -1,25 +0,0 @@
|
|
1
|
-
import '@schukai/component-form/source/select.js';
|
2
|
-
|
3
|
-
const select = document.createElement('monster-select');
|
4
|
-
select.setOption('mapping.labelTemplate', '${name} (${alpha-2})')
|
5
|
-
select.setOption('mapping.valueTemplate', '${country-code}')
|
6
|
-
select.importOptions([
|
7
|
-
{
|
8
|
-
"name": "United Kingdom",
|
9
|
-
"alpha-2": "GB",
|
10
|
-
"country-code": "826",
|
11
|
-
},
|
12
|
-
{
|
13
|
-
"name": "Sweden",
|
14
|
-
"alpha-2": "SE",
|
15
|
-
"country-code": "752",
|
16
|
-
|
17
|
-
},
|
18
|
-
{
|
19
|
-
"name": "Germany",
|
20
|
-
"alpha-2": "DE",
|
21
|
-
"country-code": "276",
|
22
|
-
}
|
23
|
-
]);
|
24
|
-
|
25
|
-
document.body.appendChild(select);
|
@@ -1,27 +0,0 @@
|
|
1
|
-
import {TreeSelect} from '@schukai/component-form/source/tree-select.mjs';
|
2
|
-
|
3
|
-
const treeSelect = document.createElement('monster-tree-select');
|
4
|
-
treeSelect.setOption('mapping.valueTemplate', '${name} (${alpha-2})')
|
5
|
-
treeSelect.setOption('mapping.labelTemplate', '${country-code}')
|
6
|
-
treeSelect.importOptions([
|
7
|
-
{
|
8
|
-
"name": "United Kingdom",
|
9
|
-
"alpha-2": "GB",
|
10
|
-
"country-code": "826",
|
11
|
-
"parent": undefined
|
12
|
-
},
|
13
|
-
{
|
14
|
-
"name": "Sweden",
|
15
|
-
"alpha-2": "SE",
|
16
|
-
"country-code": "752",
|
17
|
-
"parent": undefined
|
18
|
-
},
|
19
|
-
{
|
20
|
-
"name": "Germany",
|
21
|
-
"alpha-2": "DE",
|
22
|
-
"country-code": "276",
|
23
|
-
"parent": undefined
|
24
|
-
}
|
25
|
-
]);
|
26
|
-
|
27
|
-
document.body.appendChild(treeSelect);
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,17 +0,0 @@
|
|
1
|
-
import {Valid} from '@schukai/monster/source/constraints/valid.mjs';
|
2
|
-
import {Invalid} from '@schukai/monster/source/constraints/invalid.mjs';
|
3
|
-
import {AndOperator} from '@schukai/monster/source/constraints/andoperator.mjs';
|
4
|
-
|
5
|
-
new AndOperator(
|
6
|
-
new Valid(), new Valid()).isValid()
|
7
|
-
.then(() => console.log(true))
|
8
|
-
.catch(() => console.log(false));
|
9
|
-
// ↦ true
|
10
|
-
|
11
|
-
new AndOperator(
|
12
|
-
new Invalid(), new Valid()).isValid()
|
13
|
-
.then(() => console.log(true))
|
14
|
-
.catch(() => console.log(false));
|
15
|
-
// ↦ false
|
16
|
-
|
17
|
-
|
@@ -1,15 +0,0 @@
|
|
1
|
-
import {Valid} from '@schukai/monster/source/constraints/valid.mjs';
|
2
|
-
import {Invalid} from '@schukai/monster/source/constraints/invalid.mjs';
|
3
|
-
import {OrOperator} from '@schukai/monster/source/constraints/oroperator.mjs';
|
4
|
-
|
5
|
-
new OrOperator(
|
6
|
-
new Valid(), new Invalid()).isValid()
|
7
|
-
.then(() => console.log(true))
|
8
|
-
.catch(() => console.log(false));
|
9
|
-
// ↦ true
|
10
|
-
|
11
|
-
new OrOperator(
|
12
|
-
new Invalid(), new Invalid()).isValid()
|
13
|
-
.then(() => console.log(true))
|
14
|
-
.catch(() => console.log(false));
|
15
|
-
// ↦ false
|
@@ -1,67 +0,0 @@
|
|
1
|
-
import {buildMap} from '@schukai/monster/source/data/buildmap.mjs';
|
2
|
-
// a typical data structure as reported by an api
|
3
|
-
|
4
|
-
let map;
|
5
|
-
let obj = {
|
6
|
-
"data": [
|
7
|
-
{
|
8
|
-
"id": 10,
|
9
|
-
"name": "Cassandra",
|
10
|
-
"address": {
|
11
|
-
"street": "493-4105 Vulputate Street",
|
12
|
-
"city": "Saumur",
|
13
|
-
"zip": "52628"
|
14
|
-
}
|
15
|
-
},
|
16
|
-
{
|
17
|
-
"id": 20,
|
18
|
-
"name": "Holly",
|
19
|
-
"address": {
|
20
|
-
"street": "1762 Eget Rd.",
|
21
|
-
"city": "Schwalbach",
|
22
|
-
"zip": "952340"
|
23
|
-
}
|
24
|
-
},
|
25
|
-
{
|
26
|
-
"id": 30,
|
27
|
-
"name": "Guy",
|
28
|
-
"address": {
|
29
|
-
"street": "957-388 Sollicitudin Avenue",
|
30
|
-
"city": "Panchià",
|
31
|
-
"zip": "420729"
|
32
|
-
}
|
33
|
-
}
|
34
|
-
]
|
35
|
-
};
|
36
|
-
|
37
|
-
// The function is passed this data structure and with the help of the selector `'data.*'` the data to be considered are selected.
|
38
|
-
// The key is given by a simple definition `'id'` and the value is given by a template `'${name} (${address.zip} ${address.city})'`.
|
39
|
-
map = buildMap(obj, 'data.*', '${name} (${address.zip} ${address.city})', 'id');
|
40
|
-
console.log(map);
|
41
|
-
|
42
|
-
// ↦ Map(3) {
|
43
|
-
// '10' => 'Cassandra (52628 Saumur)',
|
44
|
-
// '20' => 'Holly (952340 Schwalbach)',
|
45
|
-
// '30' => 'Guy (420729 Panchià)'
|
46
|
-
// }
|
47
|
-
|
48
|
-
// If no key is specified, the key from the selection, here the array index, is taken.
|
49
|
-
map = buildMap(obj, 'data.*', '${name} (${address.zip} ${address.city})');
|
50
|
-
console.log(map);
|
51
|
-
|
52
|
-
// ↦ Map(3) {
|
53
|
-
// '0' => 'Cassandra (52628 Saumur)',
|
54
|
-
// '1' => 'Holly (952340 Schwalbach)',
|
55
|
-
// '2' => 'Guy (420729 Panchià)'
|
56
|
-
// }
|
57
|
-
|
58
|
-
// a filter (function(value, key) {}) can be specified to accept only defined entries.
|
59
|
-
map = buildMap(obj, 'data.*', '${name} (${address.zip} ${address.city})', 'id', function (value, key) {
|
60
|
-
return (value['id'] >= 20) ? true : false
|
61
|
-
});
|
62
|
-
console.log(map);
|
63
|
-
|
64
|
-
// ↦ Map(2) {
|
65
|
-
// 20 => 'Holly (952340 Schwalbach)',
|
66
|
-
// 30 => 'Guy (420729 Panchià)'
|
67
|
-
// }
|
@@ -1,20 +0,0 @@
|
|
1
|
-
import {RestAPI} from '@schukai/monster/source/data/datasource/server/restapi.mjs';
|
2
|
-
|
3
|
-
const ds = new RestAPI({
|
4
|
-
write: {
|
5
|
-
url: 'https://httpbin.org/get'
|
6
|
-
},
|
7
|
-
read: {
|
8
|
-
url: 'https://httpbin.org/get',
|
9
|
-
init: {
|
10
|
-
method: "GET",
|
11
|
-
headers: {
|
12
|
-
"Accept": "application/json",
|
13
|
-
},
|
14
|
-
},
|
15
|
-
}
|
16
|
-
});
|
17
|
-
|
18
|
-
ds.set({flag: true})
|
19
|
-
ds.write().then(() => console.log('done'));
|
20
|
-
ds.read().then(() => console.log('done'));
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import {WebConnect} from '@schukai/monster/source/data/datasource/server/webconnect.mjs';
|
2
|
-
|
3
|
-
const ds = new WebConnect({
|
4
|
-
url: 'https://httpbin.org/get'
|
5
|
-
});
|
6
|
-
|
7
|
-
ds.set({flag: true})
|
8
|
-
ds.write().then(() => console.log('done'));
|
9
|
-
ds.read().then(() => console.log('done'));
|
package/example/data/diff.mjs
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
import {Diff} from '@schukai/monster/source/data/diff.mjs';
|
2
|
-
|
3
|
-
// given are two objects x and y.
|
4
|
-
|
5
|
-
let x = {
|
6
|
-
a: 1,
|
7
|
-
b: "Hello!"
|
8
|
-
}
|
9
|
-
|
10
|
-
let y = {
|
11
|
-
a: 2,
|
12
|
-
c: true
|
13
|
-
}
|
14
|
-
|
15
|
-
// These two objects can be compared with each other.
|
16
|
-
|
17
|
-
console.log(Diff(x, y));
|
18
|
-
|
19
|
-
// the result is then the following
|
20
|
-
|
21
|
-
//
|
22
|
-
// [
|
23
|
-
// {
|
24
|
-
// operator: 'update',
|
25
|
-
// path: [ 'a' ],
|
26
|
-
// first: { value: 1, type: 'number' },
|
27
|
-
// second: { value: 2, type: 'number' }
|
28
|
-
// },
|
29
|
-
// {
|
30
|
-
// operator: 'delete',
|
31
|
-
// path: [ 'b' ],
|
32
|
-
// first: { value: 'Hello!', type: 'string' }
|
33
|
-
// },
|
34
|
-
// {
|
35
|
-
// operator: 'add',
|
36
|
-
// path: [ 'c' ],
|
37
|
-
// second: { value: true, type: 'boolean' }
|
38
|
-
// }
|
39
|
-
// ]
|
@@ -1,23 +0,0 @@
|
|
1
|
-
import {Pathfinder} from '@schukai/monster/source/data/pathfinder.mjs';
|
2
|
-
|
3
|
-
let value = new Pathfinder({
|
4
|
-
a: {
|
5
|
-
b: {
|
6
|
-
f: [
|
7
|
-
{
|
8
|
-
g: false,
|
9
|
-
}
|
10
|
-
],
|
11
|
-
}
|
12
|
-
}
|
13
|
-
}).getVia("a.b.f.0.g");
|
14
|
-
|
15
|
-
console.log(value);
|
16
|
-
// ↦ false
|
17
|
-
|
18
|
-
try {
|
19
|
-
new Pathfinder({}).getVia("a.b.f.0.g");
|
20
|
-
} catch (e) {
|
21
|
-
console.log(e.toString());
|
22
|
-
// ↦ Error: the journey is not at its end (b.f.0.g)
|
23
|
-
}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
import {Pathfinder} from '@schukai/monster/source/data/pathfinder.mjs';
|
2
|
-
|
3
|
-
let p = new Pathfinder({
|
4
|
-
a: {
|
5
|
-
x: [
|
6
|
-
{c: 1}, {c: 2}
|
7
|
-
],
|
8
|
-
y: true
|
9
|
-
},
|
10
|
-
b: {
|
11
|
-
x: [
|
12
|
-
{c: 1, d: false}, {c: 2}
|
13
|
-
],
|
14
|
-
y: true
|
15
|
-
},
|
16
|
-
});
|
17
|
-
|
18
|
-
let r = p.getVia("*.x.*.c");
|
19
|
-
console.log(r);
|
package/example/data/pipe.mjs
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
import {CustomElement} from '@schukai/monster/source/dom/CustomElement';
|
2
|
-
// In the example the user can use his own template by creating a template in the DOM with the ID `my-custom-element`.
|
3
|
-
// You can also specify a theme (for example `mytheme`), then it will search for the ID `my-custom-element-mytheme` and
|
4
|
-
// if not available for the ID `my-custom-element`.
|
5
|
-
|
6
|
-
class MyCustomElement extends CustomElement {
|
7
|
-
|
8
|
-
static getTag() {
|
9
|
-
return "my-custom-element"
|
10
|
-
}
|
11
|
-
|
12
|
-
}
|
13
|
-
|
14
|
-
// ↦ <my-custom-element></my-custom-element>
|
package/example/dom/theme.mjs
DELETED
package/example/dom/updater.mjs
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
import {Updater} from '@schukai/monster/source/dom/updater.mjs';
|
2
|
-
|
3
|
-
// First we prepare the html document.
|
4
|
-
// This is done here via script, but can also be inserted into the document as pure html.
|
5
|
-
// To do this, simply insert the tag <h1 data-monster-replace="path:headline"></h1>.
|
6
|
-
const body = document.querySelector('body');
|
7
|
-
const headline = document.createElement('h1');
|
8
|
-
headline.setAttribute('data-monster-replace', 'path:headline')
|
9
|
-
body.appendChild(headline);
|
10
|
-
|
11
|
-
// the data structure
|
12
|
-
let obj = {
|
13
|
-
headline: "Hello World",
|
14
|
-
};
|
15
|
-
|
16
|
-
// Now comes the real magic. we pass the updater the parent HTMLElement
|
17
|
-
// and the desired data structure.
|
18
|
-
const updater = new Updater(body, obj);
|
19
|
-
updater.run();
|
20
|
-
|
21
|
-
// Now you can change the data structure and the HTML will follow these changes.
|
22
|
-
const subject = updater.getSubject();
|
23
|
-
subject['headline'] = "Hello World!"
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import {Formatter} from '@schukai/monster/source/i18n/formatter.mjs';
|
2
|
-
import {Translations} from '@schukai/monster/source/i18n/translations.mjs';
|
3
|
-
|
4
|
-
const translations = new Translations('en')
|
5
|
-
.assignTranslations({
|
6
|
-
thekey: "${animal} has eaten the ${food}!"
|
7
|
-
});
|
8
|
-
|
9
|
-
new Formatter({}, translations).format("thekey:animal=dog::food=cake")
|
10
|
-
// ↦ dog has eaten the cake!
|
@@ -1,20 +0,0 @@
|
|
1
|
-
import {Translations} from '@schukai/monster/source/i18n/translations.mjs';
|
2
|
-
import {parseLocale} from '@schukai/monster/source/i18n/locale.mjs';
|
3
|
-
|
4
|
-
const translation = new Translations(parseLocale('en-GB'));
|
5
|
-
|
6
|
-
translation.assignTranslations({
|
7
|
-
text1: "click",
|
8
|
-
text2: {
|
9
|
-
'one': 'click once',
|
10
|
-
'other': 'click n times'
|
11
|
-
}
|
12
|
-
});
|
13
|
-
|
14
|
-
console.log(translation.getText('text1'));
|
15
|
-
// ↦ click
|
16
|
-
|
17
|
-
console.log(translation.getPluralRuleText('text2', 1));
|
18
|
-
// -> click once
|
19
|
-
console.log(translation.getPluralRuleText('text2', 2));
|
20
|
-
// -> click n times
|
@@ -1,16 +0,0 @@
|
|
1
|
-
import {WebConnect} from '@schukai/monster/source/net/webconnect.mjs';
|
2
|
-
|
3
|
-
const connection = new WebConnect({
|
4
|
-
url: 'https://httpbin.org/get'
|
5
|
-
});
|
6
|
-
|
7
|
-
connection.connect().then(()=>{
|
8
|
-
|
9
|
-
connection.send({message:"Hello World!"}).then((response)=>{
|
10
|
-
console.log(response);
|
11
|
-
});
|
12
|
-
|
13
|
-
const message = connection.poll()
|
14
|
-
|
15
|
-
|
16
|
-
})
|
package/example/types/is-1.mjs
DELETED
package/example/types/is-10.mjs
DELETED
package/example/types/is-2.mjs
DELETED
package/example/types/is-3.mjs
DELETED
package/example/types/is-4.mjs
DELETED
package/example/types/is-5.mjs
DELETED
package/example/types/is-6.mjs
DELETED
package/example/types/is-7.mjs
DELETED
package/example/types/is-8.mjs
DELETED
package/example/types/is-9.mjs
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
import {Node} from '@schukai/monster/source/types/node.mjs';
|
2
|
-
import {NodeRecursiveIterator} from '@schukai/monster/source/types/noderecursiveiterator.mjs';
|
3
|
-
|
4
|
-
const node = new Node('1')
|
5
|
-
|
6
|
-
// 1
|
7
|
-
// 2
|
8
|
-
// ├ 2.1
|
9
|
-
// ├ 2.2
|
10
|
-
// └ 2.3
|
11
|
-
// 3
|
12
|
-
// 4
|
13
|
-
// ├ 4.1
|
14
|
-
// └ 4.2
|
15
|
-
node.appendChild(
|
16
|
-
(new Node('2'))
|
17
|
-
.appendChild(new Node('2.1'))
|
18
|
-
.appendChild(new Node('2.2'))
|
19
|
-
.appendChild(new Node('2.3')))
|
20
|
-
.appendChild(new Node('3'))
|
21
|
-
.appendChild(new Node('4')
|
22
|
-
.appendChild(new Node('4.1'))
|
23
|
-
.appendChild(new Node('4.2')));
|
24
|
-
|
25
|
-
const iterator = new NodeRecursiveIterator(node);
|
26
|
-
|
27
|
-
const result = [];
|
28
|
-
for (const n of iterator) {
|
29
|
-
result.push(n.value);
|
30
|
-
}
|
31
|
-
|
32
|
-
// ↦ ['1', '2', '2.1', '2.2', '2.3', '3', '4', '4.1', '4.2']
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import {Observer} from '@schukai/monster/source/types/observer.mjs';
|
2
|
-
|
3
|
-
const observer = new Observer(function (a, b, c) {
|
4
|
-
console.log(this, a, b, c); // ↦ "a", 2, true
|
5
|
-
}, "a", 2, true);
|
6
|
-
|
7
|
-
observer.update({value: true}).then(() => {
|
8
|
-
});
|
9
|
-
// ↦ {value: true} "a" 2 true
|