@jetbrains/ring-ui 4.1.0-beta.9 → 4.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/README.md +17 -15
- package/babel.config.js +3 -2
- package/components/alert/alert.js +9 -3
- package/components/alert/container.css +1 -1
- package/components/alert-service/alert-service.examples.css +18 -0
- package/components/alert-service/alert-service.examples.js +21 -0
- package/components/alert-service/alert-service.js +10 -3
- package/components/analytics/analytics__fus-plugin.js +1 -1
- package/components/auth/auth.test.js +14 -7
- package/components/auth/auth__core.js +64 -33
- package/components/auth-dialog/auth-dialog.js +1 -0
- package/components/avatar/avatar.css +4 -1
- package/components/avatar/avatar.examples.js +3 -2
- package/components/avatar/avatar.js +31 -6
- package/components/avatar/fallback-avatar.js +136 -0
- package/components/avatar-editor-ng/avatar-editor-ng.css +2 -2
- package/components/avatar-editor-ng/avatar-editor-ng.js +2 -1
- package/components/avatar-editor-ng/{avatar-editor-ng.html → avatar-editor-ng__template.js} +2 -2
- package/components/button/button.css +2 -2
- package/components/button/button.js +4 -1
- package/components/button-group/button-group.js +1 -1
- package/components/button-group/caption.js +1 -1
- package/components/button-ng/button-ng.js +1 -1
- package/components/button-set-ng/button-set-ng.js +3 -1
- package/components/checkbox/checkbox.css +1 -1
- package/components/code/code.js +1 -1
- package/components/confirm/confirm.js +1 -0
- package/components/confirm-service/confirm-service.js +5 -5
- package/components/content-layout/content-layout.css +1 -1
- package/components/data-list/data-list.css +1 -1
- package/components/date-picker/date-input.js +5 -4
- package/components/date-picker/date-picker.css +34 -22
- package/components/date-picker/date-picker.js +16 -14
- package/components/date-picker/date-popup.js +22 -7
- package/components/date-picker/month-names.js +8 -5
- package/components/date-picker/month.js +6 -2
- package/components/date-picker/weekdays.js +10 -2
- package/components/dialog/dialog.examples.js +3 -1
- package/components/dialog/dialog.js +5 -2
- package/components/dialog/dialog.test.js +1 -1
- package/components/dialog/dialog__body-scroll-preventer.js +2 -2
- package/components/dialog-ng/dialog-ng.js +7 -8
- package/components/dialog-ng/{dialog-ng.html → dialog-ng__template.js} +2 -2
- package/components/dropdown/dropdown.examples.js +36 -1
- package/components/dropdown-menu/dropdown-menu.examples.js +47 -0
- package/components/dropdown-menu/dropdown-menu.js +117 -0
- package/components/dropdown-menu/dropdown-menu.test.js +76 -0
- package/components/error-bubble/error-bubble-legacy.css +1 -1
- package/components/error-bubble/error-bubble.css +1 -1
- package/components/error-bubble/error-bubble.examples.js +1 -1
- package/components/error-page/error-page.css +2 -2
- package/components/footer-ng/footer-ng.js +13 -3
- package/components/form/form.css +2 -2
- package/components/form-ng/form-ng.js +3 -1
- package/components/global/global.css +1 -1
- package/components/global/theme.js +1 -1
- package/components/global/variables.css +8 -1
- package/components/grid/grid.css +10 -9
- package/components/header/header.css +1 -1
- package/components/header/header.examples.js +7 -8
- package/components/header/profile.js +10 -11
- package/components/http/http.js +1 -1
- package/components/icon/icon.css +5 -4
- package/components/island/island.css +4 -3
- package/components/island-legacy/island-legacy.css +3 -1
- package/components/list/list.js +6 -1
- package/components/list/list__custom.js +9 -3
- package/components/list/list__item.js +8 -2
- package/components/list/list__link.js +2 -1
- package/components/loader-inline/loader-inline.css +1 -1
- package/components/loader-screen/loader-screen.css +1 -1
- package/components/message/message.css +1 -1
- package/components/message/message.examples.js +8 -5
- package/components/pager/pager.js +5 -3
- package/components/permissions/permissions.js +1 -1
- package/components/progress-bar/progress-bar.css +1 -1
- package/components/progress-bar/progress-bar.examples.js +3 -3
- package/components/progress-bar/progress-bar.js +5 -2
- package/components/progress-bar/progress-bar.test.js +12 -13
- package/components/progress-bar-ng/progress-bar-ng.examples.js +3 -3
- package/components/query-assist/query-assist.css +13 -3
- package/components/query-assist/query-assist.examples.js +3 -1
- package/components/query-assist/query-assist.js +56 -12
- package/components/query-assist/query-assist.test.js +37 -5
- package/components/save-field-ng/save-field-ng.css +0 -3
- package/components/save-field-ng/save-field-ng.js +3 -1
- package/components/save-field-ng/{save-field-ng.html → save-field-ng__template.js} +2 -2
- package/components/select/select.css +12 -7
- package/components/select/select.examples.js +13 -0
- package/components/select/select.js +30 -43
- package/components/select/select.test.js +4 -5
- package/components/shortcuts-hint-ng/shortcuts-hint-ng.css +1 -1
- package/components/shortcuts-hint-ng/shortcuts-hint-ng.js +1 -1
- package/components/shortcuts-hint-ng/{shortcuts-hint-ng.html → shortcuts-hint-ng__template.js} +2 -2
- package/components/sidebar/sidebar.css +1 -0
- package/components/sidebar-ng/sidebar-ng.js +6 -2
- package/components/sidebar-ng/{sidebar-ng__button.html → sidebar-ng__button-template.js} +2 -2
- package/components/sidebar-ng/{sidebar-ng.html → sidebar-ng__template.js} +2 -2
- package/components/table/row.js +2 -1
- package/components/table/table.css +2 -1
- package/components/table-legacy/table-legacy.css +2 -2
- package/components/table-legacy/table-legacy__toolbar.css +2 -2
- package/components/table-legacy-ng/table-legacy-ng.js +38 -5
- package/components/table-legacy-ng/table-legacy-ng__pager.js +7 -1
- package/components/tabs/collapsible-tab.js +2 -2
- package/components/tabs/collapsible-tabs.js +4 -8
- package/components/tabs/tab-link.js +4 -2
- package/components/tabs/tabs.css +27 -0
- package/components/tabs-ng/tabs-ng.js +4 -2
- package/components/tabs-ng/{tabs-ng.html → tabs-ng__template.js} +6 -2
- package/components/tag/tag.css +5 -2
- package/components/tag/tag.examples.js +3 -0
- package/components/tag/tag.js +19 -16
- package/components/tags-input/tag-input.examples.js +1 -1
- package/components/tags-input/tags-input.js +5 -2
- package/components/template-ng/template-ng.js +1 -1
- package/components/tooltip/tooltip.js +7 -2
- package/components/user-agreement/user-agreement.css +1 -1
- package/components/user-agreement/user-agreement.examples.js +7 -4
- package/components/user-agreement/user-agreement.js +1 -0
- package/package.json +75 -78
- package/webpack.config.js +14 -10
- package/components/button-set-ng/button-set-ng.html +0 -1
- package/components/footer-ng/footer-ng.html +0 -13
- package/components/form-ng/form-ng__error-bubble.html +0 -3
- package/components/table-legacy-ng/table-legacy-ng.html +0 -4
- package/components/table-legacy-ng/table-legacy-ng__column.html +0 -12
- package/components/table-legacy-ng/table-legacy-ng__header.html +0 -4
- package/components/table-legacy-ng/table-legacy-ng__pager.html +0 -7
- package/components/table-legacy-ng/table-legacy-ng__row.html +0 -12
- package/components/table-legacy-ng/table-legacy-ng__title.html +0 -9
- package/dist/_helpers/_rollupPluginBabelHelpers.js +0 -127
- package/dist/_helpers/anchor.js +0 -33
- package/dist/_helpers/badge.js +0 -3
- package/dist/_helpers/button__classes.js +0 -39
- package/dist/_helpers/caption.js +0 -25
- package/dist/_helpers/card.js +0 -77
- package/dist/_helpers/date-picker.js +0 -3
- package/dist/_helpers/dialog__body-scroll-preventer.js +0 -56
- package/dist/_helpers/grid.js +0 -3
- package/dist/_helpers/header.js +0 -3
- package/dist/_helpers/icon__svg.js +0 -83
- package/dist/_helpers/inject-styles.js +0 -22
- package/dist/_helpers/island.js +0 -3
- package/dist/_helpers/list.js +0 -3
- package/dist/_helpers/query-assist__suggestions.js +0 -95
- package/dist/_helpers/select__filter.js +0 -78
- package/dist/_helpers/services-link.js +0 -42
- package/dist/_helpers/sidebar.js +0 -127
- package/dist/_helpers/table.js +0 -3
- package/dist/_helpers/tabs.js +0 -3
- package/dist/_helpers/title.js +0 -99
- package/dist/alert/alert.js +0 -254
- package/dist/alert/container.js +0 -50
- package/dist/alert-service/alert-service.js +0 -159
- package/dist/analytics/analytics.js +0 -116
- package/dist/analytics/analytics__custom-plugin.js +0 -127
- package/dist/analytics/analytics__fus-plugin.js +0 -101
- package/dist/analytics/analytics__ga-plugin.js +0 -66
- package/dist/analytics/analytics__plugin-utils.js +0 -79
- package/dist/auth/auth.js +0 -90
- package/dist/auth/auth__core.js +0 -987
- package/dist/auth/background-flow.js +0 -123
- package/dist/auth/down-notification.js +0 -111
- package/dist/auth/iframe-flow.js +0 -147
- package/dist/auth/landing-entry.js +0 -5
- package/dist/auth/landing.js +0 -84
- package/dist/auth/request-builder.js +0 -75
- package/dist/auth/response-parser.js +0 -117
- package/dist/auth/storage.js +0 -279
- package/dist/auth/token-validator.js +0 -176
- package/dist/auth/window-flow.js +0 -133
- package/dist/auth-dialog/auth-dialog.js +0 -132
- package/dist/auth-dialog-service/auth-dialog-service.js +0 -67
- package/dist/avatar/avatar-example-datauri.js +0 -26
- package/dist/avatar/avatar.js +0 -155
- package/dist/badge/badge.js +0 -52
- package/dist/button/button.js +0 -117
- package/dist/button/button__classes.js +0 -5
- package/dist/button-group/button-group.js +0 -30
- package/dist/button-group/caption.js +0 -5
- package/dist/button-set/button-set.js +0 -27
- package/dist/button-toolbar/button-toolbar.js +0 -30
- package/dist/caret/caret.js +0 -264
- package/dist/checkbox/checkbox.js +0 -110
- package/dist/confirm/confirm.js +0 -122
- package/dist/confirm-service/confirm-service.js +0 -112
- package/dist/content-layout/content-layout.js +0 -67
- package/dist/content-layout/sidebar.js +0 -6
- package/dist/contenteditable/contenteditable.js +0 -81
- package/dist/data-list/data-list.js +0 -203
- package/dist/data-list/data-list.mock.js +0 -190
- package/dist/data-list/item.js +0 -225
- package/dist/data-list/selection.js +0 -101
- package/dist/data-list/title.js +0 -16
- package/dist/date-picker/consts.js +0 -70
- package/dist/date-picker/date-input.js +0 -169
- package/dist/date-picker/date-picker.js +0 -356
- package/dist/date-picker/date-popup.js +0 -459
- package/dist/date-picker/day.js +0 -119
- package/dist/date-picker/formats.js +0 -3
- package/dist/date-picker/month-names.js +0 -92
- package/dist/date-picker/month-slider.js +0 -83
- package/dist/date-picker/month.js +0 -48
- package/dist/date-picker/months.js +0 -121
- package/dist/date-picker/weekdays.js +0 -24
- package/dist/date-picker/years.js +0 -109
- package/dist/dialog/dialog.js +0 -197
- package/dist/dialog/dialog__body-scroll-preventer.js +0 -2
- package/dist/dropdown/anchor.js +0 -16
- package/dist/dropdown/dropdown.js +0 -236
- package/dist/error-bubble/error-bubble.js +0 -59
- package/dist/error-message/error-message.js +0 -55
- package/dist/footer/footer.js +0 -127
- package/dist/global/angular-component-factory.js +0 -83
- package/dist/global/compose.js +0 -9
- package/dist/global/composeRefs.js +0 -15
- package/dist/global/conic-gradient.js +0 -37
- package/dist/global/create-stateful-context.js +0 -54
- package/dist/global/data-tests.js +0 -22
- package/dist/global/dom.js +0 -124
- package/dist/global/focus-sensor-hoc.js +0 -147
- package/dist/global/fuzzy-highlight.js +0 -67
- package/dist/global/get-event-key.js +0 -111
- package/dist/global/get-uid.js +0 -15
- package/dist/global/inject-styles.js +0 -17
- package/dist/global/linear-function.js +0 -18
- package/dist/global/listeners.js +0 -42
- package/dist/global/memoize.js +0 -18
- package/dist/global/normalize-indent.js +0 -28
- package/dist/global/promise-with-timeout.js +0 -13
- package/dist/global/radial-gradient-mask.js +0 -49
- package/dist/global/react-dom-renderer.js +0 -45
- package/dist/global/rerender-hoc.js +0 -53
- package/dist/global/ring-angular-component.js +0 -24
- package/dist/global/schedule-raf.js +0 -31
- package/dist/global/sniffer.js +0 -6
- package/dist/global/supports-css.js +0 -20
- package/dist/global/theme.js +0 -56
- package/dist/global/trivial-template-tag.js +0 -15
- package/dist/global/url.js +0 -163
- package/dist/global/variables_dark.js +0 -57
- package/dist/grid/col.js +0 -62
- package/dist/grid/grid.js +0 -35
- package/dist/grid/row.js +0 -66
- package/dist/group/group.js +0 -34
- package/dist/header/header.js +0 -144
- package/dist/header/logo.js +0 -39
- package/dist/header/profile.js +0 -212
- package/dist/header/services-link.js +0 -10
- package/dist/header/services.js +0 -135
- package/dist/header/smart-profile.js +0 -227
- package/dist/header/smart-services.js +0 -159
- package/dist/header/tray-icon.js +0 -45
- package/dist/header/tray.js +0 -33
- package/dist/heading/heading.js +0 -76
- package/dist/http/http.js +0 -216
- package/dist/http/http.mock.js +0 -65
- package/dist/hub-source/hub-source.js +0 -130
- package/dist/hub-source/hub-source__user.js +0 -28
- package/dist/hub-source/hub-source__users-groups.js +0 -62
- package/dist/icon/icon.js +0 -105
- package/dist/icon/icon__constants.js +0 -33
- package/dist/icon/icon__svg.js +0 -6
- package/dist/icon/index.js +0 -9
- package/dist/input/input.js +0 -231
- package/dist/island/adaptive-island-hoc.js +0 -48
- package/dist/island/content.js +0 -158
- package/dist/island/header.js +0 -85
- package/dist/island/island.js +0 -53
- package/dist/island-legacy/content-legacy.js +0 -28
- package/dist/island-legacy/header-legacy.js +0 -30
- package/dist/island-legacy/island-legacy.js +0 -30
- package/dist/link/clickableLink.js +0 -65
- package/dist/link/link.js +0 -118
- package/dist/list/consts.js +0 -26
- package/dist/list/list.js +0 -800
- package/dist/list/list__custom.js +0 -82
- package/dist/list/list__hint.js +0 -26
- package/dist/list/list__item.js +0 -197
- package/dist/list/list__link.js +0 -65
- package/dist/list/list__separator.js +0 -30
- package/dist/list/list__title.js +0 -39
- package/dist/list/list__users-groups-source.js +0 -124
- package/dist/loader/loader.js +0 -72
- package/dist/loader/loader__core.js +0 -272
- package/dist/loader-inline/inject-styles.js +0 -11
- package/dist/loader-inline/loader-inline.js +0 -58
- package/dist/loader-screen/loader-screen.js +0 -46
- package/dist/login-dialog/login-dialog.js +0 -184
- package/dist/login-dialog/service.js +0 -67
- package/dist/message/message.js +0 -232
- package/dist/old-browsers-message/old-browsers-message.js +0 -101
- package/dist/old-browsers-message/old-browsers-message__stop.js +0 -5
- package/dist/old-browsers-message/white-list.js +0 -34
- package/dist/pager/pager.js +0 -352
- package/dist/panel/panel.js +0 -34
- package/dist/permissions/permissions.js +0 -200
- package/dist/permissions/permissions__cache.js +0 -272
- package/dist/popup/popup.consts.js +0 -41
- package/dist/popup/popup.js +0 -389
- package/dist/popup/popup.target.js +0 -27
- package/dist/popup/position.js +0 -280
- package/dist/popup-menu/popup-menu.js +0 -108
- package/dist/progress-bar/progress-bar.js +0 -111
- package/dist/proxy-attrs/proxy-attrs.js +0 -19
- package/dist/query-assist/query-assist.js +0 -1023
- package/dist/query-assist/query-assist__suggestions.js +0 -43
- package/dist/radio/radio.js +0 -39
- package/dist/radio/radio__item.js +0 -82
- package/dist/select/select.js +0 -1335
- package/dist/select/select__filter.js +0 -49
- package/dist/select/select__popup.js +0 -541
- package/dist/shortcuts/core.js +0 -245
- package/dist/shortcuts/shortcut-title.js +0 -51
- package/dist/shortcuts/shortcuts-hoc.js +0 -43
- package/dist/shortcuts/shortcuts.js +0 -72
- package/dist/storage/storage.js +0 -55
- package/dist/storage/storage__fallback.js +0 -214
- package/dist/storage/storage__local.js +0 -150
- package/dist/style.css +0 -1
- package/dist/tab-trap/tab-trap.js +0 -178
- package/dist/table/cell.js +0 -25
- package/dist/table/disable-hover-hoc.js +0 -53
- package/dist/table/header-cell.js +0 -91
- package/dist/table/header.js +0 -189
- package/dist/table/multitable.js +0 -140
- package/dist/table/row-with-focus-sensor.js +0 -79
- package/dist/table/row.js +0 -270
- package/dist/table/selection-adapter.js +0 -14
- package/dist/table/selection-shortcuts-hoc.js +0 -212
- package/dist/table/selection.js +0 -221
- package/dist/table/smart-table.js +0 -113
- package/dist/table/table.js +0 -405
- package/dist/tabs/collapsible-more.js +0 -193
- package/dist/tabs/collapsible-tab.js +0 -90
- package/dist/tabs/collapsible-tabs.js +0 -361
- package/dist/tabs/custom-item.js +0 -13
- package/dist/tabs/dumb-tabs.js +0 -159
- package/dist/tabs/smart-tabs.js +0 -102
- package/dist/tabs/tab-link.js +0 -35
- package/dist/tabs/tab.js +0 -32
- package/dist/tabs/tabs.js +0 -65
- package/dist/tag/tag.js +0 -190
- package/dist/tags-input/tags-input.js +0 -474
- package/dist/tags-list/tags-list.js +0 -94
- package/dist/text/text.js +0 -38
- package/dist/toggle/toggle.js +0 -80
- package/dist/tooltip/tooltip.js +0 -205
- package/dist/user-card/card.js +0 -14
- package/dist/user-card/smart-user-card-tooltip.js +0 -112
- package/dist/user-card/tooltip.js +0 -91
- package/dist/user-card/user-card.js +0 -46
package/dist/shortcuts/core.js
DELETED
|
@@ -1,245 +0,0 @@
|
|
|
1
|
-
import { _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import Combokeys from 'combokeys';
|
|
3
|
-
import sniffr from '../global/sniffer.js';
|
|
4
|
-
import 'sniffr';
|
|
5
|
-
|
|
6
|
-
class Shortcuts {
|
|
7
|
-
constructor() {
|
|
8
|
-
_defineProperty(this, "ALLOW_SHORTCUTS_SELECTOR", '.ring-js-shortcuts');
|
|
9
|
-
|
|
10
|
-
_defineProperty(this, "ROOT_SCOPE", {
|
|
11
|
-
scopeId: 'ROOT',
|
|
12
|
-
options: {}
|
|
13
|
-
});
|
|
14
|
-
|
|
15
|
-
_defineProperty(this, "_scopes", {});
|
|
16
|
-
|
|
17
|
-
_defineProperty(this, "combokeys", new Combokeys(document.documentElement));
|
|
18
|
-
|
|
19
|
-
_defineProperty(this, "trigger", combo => this.combokeys.trigger(combo));
|
|
20
|
-
|
|
21
|
-
_defineProperty(this, "_dispatcher", (e, key) => {
|
|
22
|
-
let currentScope;
|
|
23
|
-
|
|
24
|
-
for (let i = this._scopeChain.length - 1; i >= 0; i--) {
|
|
25
|
-
const scopeInChain = this._scopeChain[i];
|
|
26
|
-
currentScope = this._scopes[scopeInChain.scopeId];
|
|
27
|
-
|
|
28
|
-
if (currentScope && currentScope[key]) {
|
|
29
|
-
const ret = currentScope[key](e, key, scopeInChain.scopeId); // Fall down in chain when returning true
|
|
30
|
-
|
|
31
|
-
if (ret !== true) {
|
|
32
|
-
return ret;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
if (scopeInChain.options.modal) {
|
|
37
|
-
return true;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
return undefined;
|
|
42
|
-
});
|
|
43
|
-
|
|
44
|
-
_defineProperty(this, "_defaultFilter", (e, element, key) => {
|
|
45
|
-
// if the element or its parents have the class "ring-js-shortcuts" then no need to stop
|
|
46
|
-
if (element === document || element.matches(this.ALLOW_SHORTCUTS_SELECTOR) || (element.dataset.enabledShortcuts != null ? element.dataset.enabledShortcuts.split(',').includes(key) : element.closest(this.ALLOW_SHORTCUTS_SELECTOR) != null)) {
|
|
47
|
-
return false;
|
|
48
|
-
} // stop for input, select, and textarea
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
return element.matches('input,select,textarea') || element.contentEditable && element.contentEditable === 'true';
|
|
52
|
-
});
|
|
53
|
-
|
|
54
|
-
this.setFilter();
|
|
55
|
-
this.setScope();
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
/**
|
|
59
|
-
* Binds a handler to a shortcut
|
|
60
|
-
*
|
|
61
|
-
* @param params.key {string | Array.<string>) Keys to bind
|
|
62
|
-
* @param params.handler {Function} Events handle
|
|
63
|
-
* @param params.scope {string} Scope (optional)
|
|
64
|
-
* @param params.type {string} Event type, will be passed to Combokeys (optional)
|
|
65
|
-
*/
|
|
66
|
-
bind(params) {
|
|
67
|
-
if (!(params instanceof Object) || typeof params.handler !== 'function') {
|
|
68
|
-
throw new Error('Shortcut handler should exist');
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
if (!params.scope) {
|
|
72
|
-
params.scope = this.ROOT_SCOPE.scopeId;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
if (Array.isArray(params.key)) {
|
|
76
|
-
for (let i = 0; i < params.key.length; i++) {
|
|
77
|
-
this.bind(Object.assign({}, params, {
|
|
78
|
-
key: params.key[i]
|
|
79
|
-
}));
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
return;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
if (typeof params.key !== 'string') {
|
|
86
|
-
throw new Error('Shortcut key should exist');
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
if (!this._scopes[params.scope]) {
|
|
90
|
-
this._scopes[params.scope] = {};
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
this._scopes[params.scope][params.key] = params.handler;
|
|
94
|
-
this.combokeys.bind(params.key, this._dispatcher, this._getKeyboardEventType(params));
|
|
95
|
-
}
|
|
96
|
-
/**
|
|
97
|
-
* Binds a map of shortcuts to handlers with common options
|
|
98
|
-
*
|
|
99
|
-
* @map {Object) Keys to handlers map
|
|
100
|
-
* @options.scope {string} Scope (optional)
|
|
101
|
-
* @options.type {string} Event type, will be passed to Combokeys (optional)
|
|
102
|
-
*/
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
bindMap(map, options) {
|
|
106
|
-
if (!(map instanceof Object)) {
|
|
107
|
-
throw new Error('Shortcuts map shouldn\'t be empty');
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
for (const key in map) {
|
|
111
|
-
if (map.hasOwnProperty(key)) {
|
|
112
|
-
this.bind(Object.assign({}, options || {}, {
|
|
113
|
-
key,
|
|
114
|
-
handler: map[key]
|
|
115
|
-
}));
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
unbindScope(scope) {
|
|
121
|
-
this._scopes[scope] = null;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
getScope() {
|
|
125
|
-
return this._scopeChain.slice(1);
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
hasScope(scopeId) {
|
|
129
|
-
return this.indexOfScope(scopeId) !== -1;
|
|
130
|
-
}
|
|
131
|
-
/**
|
|
132
|
-
* Adds a scope to the chain
|
|
133
|
-
* @param scopeId id of scope to add
|
|
134
|
-
* @param options options for pushing scope
|
|
135
|
-
* @param options.modal whether keys should fall through this scope or not.
|
|
136
|
-
* Useful for modals or overlays
|
|
137
|
-
*/
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
pushScope(scopeId) {
|
|
141
|
-
let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
142
|
-
|
|
143
|
-
if (scopeId) {
|
|
144
|
-
const position = this.indexOfScope(scopeId);
|
|
145
|
-
|
|
146
|
-
if (position !== -1) {
|
|
147
|
-
this._scopeChain.splice(position, 1);
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
this._scopeChain.push(this.wrapScope(scopeId, options));
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
popScope(scopeId) {
|
|
155
|
-
if (scopeId) {
|
|
156
|
-
const position = this.indexOfScope(scopeId);
|
|
157
|
-
|
|
158
|
-
if (position !== -1) {
|
|
159
|
-
return this._scopeChain.splice(position, this._scopeChain.length - 1);
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
return undefined;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
spliceScope(scopeId) {
|
|
167
|
-
if (scopeId) {
|
|
168
|
-
const position = this.indexOfScope(scopeId);
|
|
169
|
-
|
|
170
|
-
if (position !== -1) {
|
|
171
|
-
this._scopeChain.splice(position, 1);
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
setScope(scope) {
|
|
177
|
-
if (scope) {
|
|
178
|
-
let scopeChain;
|
|
179
|
-
|
|
180
|
-
if (typeof scope === 'string' || !Array.isArray(scope) && typeof scope === 'object' && scope !== null) {
|
|
181
|
-
scopeChain = [scope];
|
|
182
|
-
} else {
|
|
183
|
-
scopeChain = scope;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
if (!Array.isArray(scopeChain)) {
|
|
187
|
-
return;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
scopeChain = scopeChain.map(scopeItem => {
|
|
191
|
-
const isScopeId = typeof scopeItem === 'string';
|
|
192
|
-
return isScopeId ? this.wrapScope(scopeItem) : scopeItem;
|
|
193
|
-
});
|
|
194
|
-
this._scopeChain = [this.ROOT_SCOPE].concat(scopeChain);
|
|
195
|
-
} else {
|
|
196
|
-
this._scopeChain = [this.ROOT_SCOPE];
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
wrapScope(scopeId) {
|
|
201
|
-
let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
202
|
-
return {
|
|
203
|
-
scopeId,
|
|
204
|
-
options
|
|
205
|
-
};
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
hasKey(key, scope) {
|
|
209
|
-
return !!(this._scopes[scope] && this._scopes[scope][key]);
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
_getKeyboardEventType(params) {
|
|
213
|
-
if (!params.type && sniffr.os.name === 'windows') {
|
|
214
|
-
const isSystemShortcut = params.key.match(/ctrl/i) && params.key.match(/shift/i) && params.key.match(/[0-9]/);
|
|
215
|
-
/**
|
|
216
|
-
* Windows system shortcuts (ctrl+shift+[0-9] are caught by the OS on 'keydown', so let's use 'keyup'
|
|
217
|
-
*/
|
|
218
|
-
|
|
219
|
-
if (isSystemShortcut) {
|
|
220
|
-
return 'keyup';
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
return params.type;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
setFilter(fn) {
|
|
228
|
-
this.combokeys.stopCallback = typeof fn === 'function' ? fn : this._defaultFilter;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
indexOfScope(scopeId) {
|
|
232
|
-
return this._scopeChain.findIndex(scope => scope.scopeId === scopeId);
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
reset() {
|
|
236
|
-
this._scopes = {};
|
|
237
|
-
this.setScope();
|
|
238
|
-
this.combokeys.reset();
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
var shortcuts = new Shortcuts();
|
|
244
|
-
|
|
245
|
-
export default shortcuts;
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import sniffr from '../global/sniffer.js';
|
|
2
|
-
import 'sniffr';
|
|
3
|
-
|
|
4
|
-
const macSymbolsMap = {
|
|
5
|
-
enter: '⏎',
|
|
6
|
-
shift: '⇧',
|
|
7
|
-
meta: '⌘',
|
|
8
|
-
mod: '⌘',
|
|
9
|
-
alt: '⌥',
|
|
10
|
-
ctrl: '⌃',
|
|
11
|
-
backspace: '⌫',
|
|
12
|
-
esc: 'Esc',
|
|
13
|
-
tab: 'Tab',
|
|
14
|
-
del: 'Del',
|
|
15
|
-
home: 'Home',
|
|
16
|
-
end: 'End',
|
|
17
|
-
space: 'Space',
|
|
18
|
-
ins: 'Insert',
|
|
19
|
-
left: '←',
|
|
20
|
-
up: '↑',
|
|
21
|
-
right: '→',
|
|
22
|
-
down: '↓'
|
|
23
|
-
};
|
|
24
|
-
const winSymbolsMap = {
|
|
25
|
-
enter: 'Enter',
|
|
26
|
-
shift: 'Shift',
|
|
27
|
-
meta: 'Ctrl',
|
|
28
|
-
mod: 'Ctrl',
|
|
29
|
-
alt: 'Alt',
|
|
30
|
-
ctrl: 'Ctrl',
|
|
31
|
-
backspace: 'Backspace',
|
|
32
|
-
esc: 'Esc',
|
|
33
|
-
tab: 'Tab',
|
|
34
|
-
del: 'Delete',
|
|
35
|
-
home: 'Home',
|
|
36
|
-
end: 'End',
|
|
37
|
-
space: 'Space',
|
|
38
|
-
ins: 'Insert',
|
|
39
|
-
left: '←',
|
|
40
|
-
up: '↑',
|
|
41
|
-
right: '→',
|
|
42
|
-
down: '↓'
|
|
43
|
-
};
|
|
44
|
-
function getShortcutTitle(shortcut) {
|
|
45
|
-
const MAC_OS = sniffr.os.name === 'macos';
|
|
46
|
-
const KEY_SEPARATOR = MAC_OS ? '' : '+';
|
|
47
|
-
const symbolsMap = MAC_OS ? macSymbolsMap : winSymbolsMap;
|
|
48
|
-
return shortcut.split(/\+/g).map(symbol => symbolsMap[symbol] || symbol.toUpperCase()).join(KEY_SEPARATOR);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
export { getShortcutTitle };
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { _ as _defineProperty, a as _objectWithoutProperties } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import PropTypes from 'prop-types';
|
|
4
|
-
import getUID from '../global/get-uid.js';
|
|
5
|
-
import Shortcuts from './shortcuts.js';
|
|
6
|
-
import './core.js';
|
|
7
|
-
import 'combokeys';
|
|
8
|
-
import '../global/sniffer.js';
|
|
9
|
-
import 'sniffr';
|
|
10
|
-
|
|
11
|
-
function shortcutsHOC(ComposedComponent) {
|
|
12
|
-
var _class, _temp;
|
|
13
|
-
|
|
14
|
-
return _temp = _class = class WithShortcuts extends React.Component {
|
|
15
|
-
constructor() {
|
|
16
|
-
super(...arguments);
|
|
17
|
-
|
|
18
|
-
_defineProperty(this, "_shortcutsScopeUid", getUID('rg-shortcuts-'));
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
render() {
|
|
22
|
-
const _this$props = this.props,
|
|
23
|
-
{
|
|
24
|
-
rgShortcutsOptions,
|
|
25
|
-
rgShortcutsMap
|
|
26
|
-
} = _this$props,
|
|
27
|
-
props = _objectWithoutProperties(_this$props, ["rgShortcutsOptions", "rgShortcutsMap"]);
|
|
28
|
-
|
|
29
|
-
return /*#__PURE__*/React.createElement(Shortcuts, {
|
|
30
|
-
scope: this._shortcutsScopeUid,
|
|
31
|
-
map: rgShortcutsMap,
|
|
32
|
-
options: rgShortcutsOptions,
|
|
33
|
-
disabled: rgShortcutsOptions.disabled
|
|
34
|
-
}, /*#__PURE__*/React.createElement(ComposedComponent, props));
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
}, _defineProperty(_class, "propTypes", {
|
|
38
|
-
rgShortcutsOptions: PropTypes.object,
|
|
39
|
-
rgShortcutsMap: PropTypes.object
|
|
40
|
-
}), _temp;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export default shortcutsHOC;
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import { PureComponent } from 'react';
|
|
3
|
-
import PropTypes from 'prop-types';
|
|
4
|
-
import shortcuts from './core.js';
|
|
5
|
-
import 'combokeys';
|
|
6
|
-
import '../global/sniffer.js';
|
|
7
|
-
import 'sniffr';
|
|
8
|
-
|
|
9
|
-
class Shortcuts extends PureComponent {
|
|
10
|
-
componentDidMount() {
|
|
11
|
-
if (!this.props.disabled) {
|
|
12
|
-
this.turnShorcutsOn();
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
componentDidUpdate(prevProps) {
|
|
17
|
-
const {
|
|
18
|
-
disabled
|
|
19
|
-
} = this.props;
|
|
20
|
-
|
|
21
|
-
if (!prevProps.disabled && disabled) {
|
|
22
|
-
this.turnShorcutsOff();
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
if (prevProps.disabled && !disabled) {
|
|
26
|
-
this.turnShorcutsOn();
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
componentWillUnmount() {
|
|
31
|
-
if (!this.props.disabled) {
|
|
32
|
-
this.turnShorcutsOff();
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
turnShorcutsOn() {
|
|
37
|
-
const {
|
|
38
|
-
map,
|
|
39
|
-
scope,
|
|
40
|
-
options
|
|
41
|
-
} = this.props;
|
|
42
|
-
shortcuts.bindMap(map, this.props);
|
|
43
|
-
shortcuts.pushScope(scope, options);
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
turnShorcutsOff() {
|
|
47
|
-
const {
|
|
48
|
-
scope
|
|
49
|
-
} = this.props;
|
|
50
|
-
shortcuts.unbindScope(scope);
|
|
51
|
-
shortcuts.spliceScope(scope);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
render() {
|
|
55
|
-
return this.props.children || null;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
_defineProperty(Shortcuts, "propTypes", {
|
|
61
|
-
map: PropTypes.object.isRequired,
|
|
62
|
-
scope: PropTypes.string.isRequired,
|
|
63
|
-
options: PropTypes.object,
|
|
64
|
-
disabled: PropTypes.bool,
|
|
65
|
-
children: PropTypes.node
|
|
66
|
-
});
|
|
67
|
-
|
|
68
|
-
_defineProperty(Shortcuts, "defaultProps", {
|
|
69
|
-
options: {}
|
|
70
|
-
});
|
|
71
|
-
|
|
72
|
-
export default Shortcuts;
|
package/dist/storage/storage.js
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import LocalStorage from './storage__local.js';
|
|
2
|
-
import FallbackStorage from './storage__fallback.js';
|
|
3
|
-
import '../alert-service/alert-service.js';
|
|
4
|
-
import '../_helpers/_rollupPluginBabelHelpers.js';
|
|
5
|
-
import 'react';
|
|
6
|
-
import 'react-dom';
|
|
7
|
-
import '../global/get-uid.js';
|
|
8
|
-
import '../alert/alert.js';
|
|
9
|
-
import 'classnames';
|
|
10
|
-
import 'prop-types';
|
|
11
|
-
import '@jetbrains/icons/exception';
|
|
12
|
-
import '@jetbrains/icons/checkmark';
|
|
13
|
-
import '@jetbrains/icons/warning';
|
|
14
|
-
import '@jetbrains/icons/close';
|
|
15
|
-
import '../icon/icon.js';
|
|
16
|
-
import 'util-deprecate';
|
|
17
|
-
import '../icon/icon__constants.js';
|
|
18
|
-
import '../_helpers/icon__svg.js';
|
|
19
|
-
import '../global/memoize.js';
|
|
20
|
-
import '../loader-inline/loader-inline.js';
|
|
21
|
-
import '../global/theme.js';
|
|
22
|
-
import '../global/data-tests.js';
|
|
23
|
-
import '../_helpers/inject-styles.js';
|
|
24
|
-
import '../global/conic-gradient.js';
|
|
25
|
-
import 'conic-gradient';
|
|
26
|
-
import '../global/supports-css.js';
|
|
27
|
-
import '../global/inject-styles.js';
|
|
28
|
-
import '../global/radial-gradient-mask.js';
|
|
29
|
-
import '../global/dom.js';
|
|
30
|
-
import '../alert/container.js';
|
|
31
|
-
import 'deep-equal';
|
|
32
|
-
|
|
33
|
-
/**
|
|
34
|
-
* @name Storage
|
|
35
|
-
*/
|
|
36
|
-
|
|
37
|
-
/**
|
|
38
|
-
* @constructor
|
|
39
|
-
* @extends {LocalStorage}
|
|
40
|
-
*/
|
|
41
|
-
|
|
42
|
-
let Storage = LocalStorage; // Using try/catch here because of IE10+ protected mode and other browsers' quirks
|
|
43
|
-
// See https://github.com/Modernizr/Modernizr/blob/master/feature-detects/storage/localstorage.js
|
|
44
|
-
|
|
45
|
-
try {
|
|
46
|
-
const temp = 'testStorage';
|
|
47
|
-
localStorage.setItem(temp, temp);
|
|
48
|
-
localStorage.removeItem(temp);
|
|
49
|
-
} catch (e) {
|
|
50
|
-
Storage = FallbackStorage;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
const ActualStorage = Storage;
|
|
54
|
-
|
|
55
|
-
export default ActualStorage;
|
|
@@ -1,214 +0,0 @@
|
|
|
1
|
-
import { _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import deepEqual from 'deep-equal';
|
|
3
|
-
|
|
4
|
-
const DEFAULT_CHECK_DELAY = 3000;
|
|
5
|
-
const COOKIE_EXPIRES = 365;
|
|
6
|
-
const QUOTA = 4093; // eslint-disable-next-line no-magic-numbers
|
|
7
|
-
|
|
8
|
-
const SECONDS_IN_DAY = 24 * 60 * 60 * 1000;
|
|
9
|
-
/**
|
|
10
|
-
* @prop {string} cookieName
|
|
11
|
-
*
|
|
12
|
-
* @param {{cookieName: string}} config
|
|
13
|
-
* @param {{checkDelay: number}} config
|
|
14
|
-
* @param {{type: string}} config
|
|
15
|
-
* @return {FallbackStorage}
|
|
16
|
-
* @constructor
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
class FallbackStorage {
|
|
20
|
-
/**
|
|
21
|
-
* Maximum storage size
|
|
22
|
-
* @see http://browsercookielimits.squawky.net/
|
|
23
|
-
* @type {number}
|
|
24
|
-
*/
|
|
25
|
-
|
|
26
|
-
/**
|
|
27
|
-
* @param {string} name
|
|
28
|
-
* @param {string} value
|
|
29
|
-
* @param {number} days
|
|
30
|
-
* @private
|
|
31
|
-
*/
|
|
32
|
-
static _createCookie(name, value, days) {
|
|
33
|
-
let date;
|
|
34
|
-
let expires;
|
|
35
|
-
|
|
36
|
-
if (days) {
|
|
37
|
-
date = new Date();
|
|
38
|
-
date.setTime(date.getTime() + days * SECONDS_IN_DAY);
|
|
39
|
-
expires = `; expires=${date.toGMTString()}`;
|
|
40
|
-
} else {
|
|
41
|
-
expires = ';';
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
document.cookie = `${name}=${value}${expires}; path=/`;
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
*
|
|
48
|
-
* @param {string} name
|
|
49
|
-
* @return {string}
|
|
50
|
-
* @private
|
|
51
|
-
*/
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
static _readCookie(name) {
|
|
55
|
-
const nameEQ = `${name}=`;
|
|
56
|
-
const cookies = document.cookie.split(';');
|
|
57
|
-
let cookie;
|
|
58
|
-
|
|
59
|
-
for (let i = 0; i < cookies.length; i++) {
|
|
60
|
-
cookie = cookies[i];
|
|
61
|
-
|
|
62
|
-
while (cookie.charAt(0) === ' ') {
|
|
63
|
-
cookie = cookie.substring(1, cookie.length);
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
if (cookie.indexOf(nameEQ) === 0) {
|
|
67
|
-
return cookie.substring(nameEQ.length, cookie.length);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
return undefined;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
constructor() {
|
|
75
|
-
let config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
76
|
-
const session = config.type === 'session';
|
|
77
|
-
this.cookieName = config.cookieName || (session ? this.constructor.DEFAULT_SESSION_COOKIE_NAME : this.constructor.DEFAULT_COOKIE_NAME);
|
|
78
|
-
this.checkDelay = config.checkDelay || this.constructor.DEFAULT_CHECK_DELAY;
|
|
79
|
-
this.expires = session ? this.constructor.COOKIE_EXPIRES : null;
|
|
80
|
-
}
|
|
81
|
-
/**
|
|
82
|
-
* @return {Promise}
|
|
83
|
-
* @private
|
|
84
|
-
*/
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
_read() {
|
|
88
|
-
return new Promise(resolve => {
|
|
89
|
-
const rawData = FallbackStorage._readCookie(this.cookieName);
|
|
90
|
-
|
|
91
|
-
resolve(JSON.parse(decodeURIComponent(rawData)));
|
|
92
|
-
}).catch(() => ({}));
|
|
93
|
-
}
|
|
94
|
-
/**
|
|
95
|
-
* @param data
|
|
96
|
-
* @return {Promise}
|
|
97
|
-
* @private
|
|
98
|
-
*/
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
_write(data) {
|
|
102
|
-
return new Promise(resolve => {
|
|
103
|
-
const stringData = encodeURIComponent(JSON.stringify(data));
|
|
104
|
-
|
|
105
|
-
FallbackStorage._createCookie(this.cookieName, stringData === '{}' ? '' : stringData, this.expires);
|
|
106
|
-
|
|
107
|
-
return resolve(data);
|
|
108
|
-
});
|
|
109
|
-
}
|
|
110
|
-
/**
|
|
111
|
-
* @param {string} key
|
|
112
|
-
* @return {Promise}
|
|
113
|
-
*/
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
get(key) {
|
|
117
|
-
return this._read().then(data => data[key] || null);
|
|
118
|
-
}
|
|
119
|
-
/**
|
|
120
|
-
* @param {string} key
|
|
121
|
-
* @param {object} value
|
|
122
|
-
* @return {Promise}
|
|
123
|
-
*/
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
set(key, value) {
|
|
127
|
-
return this._read().then(data => {
|
|
128
|
-
if (key) {
|
|
129
|
-
if (value != null) {
|
|
130
|
-
data[key] = value;
|
|
131
|
-
} else {
|
|
132
|
-
Reflect.deleteProperty(data, key);
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
return this._write(data);
|
|
137
|
-
});
|
|
138
|
-
}
|
|
139
|
-
/**
|
|
140
|
-
* @param {string} key
|
|
141
|
-
* @return {Promise}
|
|
142
|
-
*/
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
remove(key) {
|
|
146
|
-
return this.set(key, null);
|
|
147
|
-
}
|
|
148
|
-
/**
|
|
149
|
-
*
|
|
150
|
-
* @param {function(string, value)} callback
|
|
151
|
-
* @return {Promise}
|
|
152
|
-
*/
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
each(callback) {
|
|
156
|
-
if (typeof callback !== 'function') {
|
|
157
|
-
return Promise.reject(new Error('Callback is not a function'));
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
return this._read().then(data => {
|
|
161
|
-
const promises = [];
|
|
162
|
-
|
|
163
|
-
for (const key in data) {
|
|
164
|
-
if (data.hasOwnProperty(key)) {
|
|
165
|
-
promises.push(callback(key, data[key]));
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
return Promise.all(promises);
|
|
170
|
-
});
|
|
171
|
-
}
|
|
172
|
-
/**
|
|
173
|
-
* @param {string} key
|
|
174
|
-
* @param {Function} callback
|
|
175
|
-
* @return {Function}
|
|
176
|
-
*/
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
on(key, callback) {
|
|
180
|
-
let stop = false;
|
|
181
|
-
|
|
182
|
-
const checkForChange = oldValue => {
|
|
183
|
-
this.get(key).then(newValue => {
|
|
184
|
-
if (stop) {
|
|
185
|
-
return;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
if (!deepEqual(oldValue, newValue)) {
|
|
189
|
-
callback(newValue);
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
window.setTimeout(() => checkForChange(oldValue), this.checkDelay);
|
|
193
|
-
});
|
|
194
|
-
};
|
|
195
|
-
|
|
196
|
-
this.get(key).then(checkForChange);
|
|
197
|
-
return () => {
|
|
198
|
-
stop = true;
|
|
199
|
-
};
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
_defineProperty(FallbackStorage, "DEFAULT_COOKIE_NAME", 'localStorage');
|
|
205
|
-
|
|
206
|
-
_defineProperty(FallbackStorage, "DEFAULT_SESSION_COOKIE_NAME", 'sessionStorage');
|
|
207
|
-
|
|
208
|
-
_defineProperty(FallbackStorage, "DEFAULT_CHECK_DELAY", DEFAULT_CHECK_DELAY);
|
|
209
|
-
|
|
210
|
-
_defineProperty(FallbackStorage, "COOKIE_EXPIRES", COOKIE_EXPIRES);
|
|
211
|
-
|
|
212
|
-
_defineProperty(FallbackStorage, "QUOTA", QUOTA);
|
|
213
|
-
|
|
214
|
-
export default FallbackStorage;
|