@jetbrains/ring-ui 4.2.9 → 4.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (315) hide show
  1. package/dist/_helpers/_rollupPluginBabelHelpers.js +34 -0
  2. package/dist/_helpers/anchor.js +33 -0
  3. package/dist/_helpers/badge.js +3 -0
  4. package/dist/_helpers/button-group.js +3 -0
  5. package/dist/_helpers/button-set.js +3 -0
  6. package/dist/_helpers/button-toolbar.js +3 -0
  7. package/dist/_helpers/button__classes.js +39 -0
  8. package/dist/_helpers/card.js +75 -0
  9. package/dist/_helpers/checkbox.js +3 -0
  10. package/dist/_helpers/date-picker.js +3 -0
  11. package/dist/_helpers/dialog__body-scroll-preventer.js +58 -0
  12. package/dist/_helpers/error-message.js +3 -0
  13. package/dist/_helpers/footer.js +121 -0
  14. package/dist/_helpers/grid.js +3 -0
  15. package/dist/_helpers/group.js +3 -0
  16. package/dist/_helpers/header.js +3 -0
  17. package/dist/_helpers/icon.js +3 -0
  18. package/dist/_helpers/inject-styles.js +22 -0
  19. package/dist/_helpers/input.js +3 -0
  20. package/dist/_helpers/island.js +3 -0
  21. package/dist/_helpers/link.js +3 -0
  22. package/dist/_helpers/list.js +3 -0
  23. package/dist/_helpers/loader-screen.js +3 -0
  24. package/dist/_helpers/panel.js +3 -0
  25. package/dist/_helpers/query-assist__suggestions.js +95 -0
  26. package/dist/_helpers/radio.js +3 -0
  27. package/dist/_helpers/select__filter.js +77 -0
  28. package/dist/_helpers/services-link.js +40 -0
  29. package/dist/_helpers/sidebar.js +126 -0
  30. package/dist/_helpers/table.js +3 -0
  31. package/dist/_helpers/tabs.js +3 -0
  32. package/dist/_helpers/title.js +100 -0
  33. package/dist/alert/alert.js +262 -0
  34. package/dist/alert/container.js +48 -0
  35. package/dist/alert-service/alert-service.js +173 -0
  36. package/dist/analytics/analytics.js +118 -0
  37. package/dist/analytics/analytics__custom-plugin.js +128 -0
  38. package/dist/analytics/analytics__fus-plugin.js +102 -0
  39. package/dist/analytics/analytics__ga-plugin.js +75 -0
  40. package/dist/analytics/analytics__plugin-utils.js +80 -0
  41. package/dist/analytics-ng/analytics-ng.js +95 -0
  42. package/dist/auth/auth.js +96 -0
  43. package/dist/auth/auth__core.js +1065 -0
  44. package/dist/auth/background-flow.js +123 -0
  45. package/dist/auth/down-notification.js +117 -0
  46. package/dist/auth/iframe-flow.js +153 -0
  47. package/dist/auth/landing-entry.js +5 -0
  48. package/dist/auth/landing.js +90 -0
  49. package/dist/auth/request-builder.js +76 -0
  50. package/dist/auth/response-parser.js +118 -0
  51. package/dist/auth/storage.js +283 -0
  52. package/dist/auth/token-validator.js +180 -0
  53. package/dist/auth/window-flow.js +134 -0
  54. package/dist/auth-dialog/auth-dialog.js +180 -0
  55. package/dist/auth-dialog-service/auth-dialog-service.js +71 -0
  56. package/dist/auth-ng/auth-ng.js +206 -0
  57. package/dist/auth-ng/auth-ng.mock.js +33 -0
  58. package/dist/autofocus-ng/autofocus-ng.js +51 -0
  59. package/dist/avatar/avatar-example-datauri.js +4 -0
  60. package/dist/avatar/avatar.js +163 -0
  61. package/dist/avatar/fallback-avatar.js +142 -0
  62. package/dist/avatar-editor-ng/avatar-editor-ng.js +167 -0
  63. package/dist/avatar-editor-ng/avatar-editor-ng__template.js +3 -0
  64. package/dist/avatar-ng/avatar-ng.js +21 -0
  65. package/dist/badge/badge.js +51 -0
  66. package/dist/badge-ng/badge-ng.js +18 -0
  67. package/dist/breadcrumb-ng/breadcrumb-ng.js +37 -0
  68. package/dist/button/button.js +125 -0
  69. package/dist/button/button__classes.js +5 -0
  70. package/dist/button-group/button-group.js +30 -0
  71. package/dist/button-group/caption.js +24 -0
  72. package/dist/button-group-ng/button-group-ng.js +39 -0
  73. package/dist/button-ng/button-ng.js +217 -0
  74. package/dist/button-set/button-set.js +26 -0
  75. package/dist/button-set-ng/button-set-ng.js +19 -0
  76. package/dist/button-toolbar/button-toolbar.js +29 -0
  77. package/dist/button-toolbar-ng/button-toolbar-ng.js +24 -0
  78. package/dist/caret/caret.js +266 -0
  79. package/dist/checkbox/checkbox.js +110 -0
  80. package/dist/checkbox-ng/checkbox-ng.js +38 -0
  81. package/dist/code/code.js +137 -0
  82. package/dist/compiler-ng/compiler-ng.js +53 -0
  83. package/dist/confirm/confirm.js +127 -0
  84. package/dist/confirm-ng/confirm-ng.js +69 -0
  85. package/dist/confirm-service/confirm-service.js +117 -0
  86. package/dist/content-layout/content-layout.js +66 -0
  87. package/dist/content-layout/sidebar.js +7 -0
  88. package/dist/contenteditable/contenteditable.js +78 -0
  89. package/dist/data-list/data-list.js +208 -0
  90. package/dist/data-list/data-list.mock.js +191 -0
  91. package/dist/data-list/item.js +229 -0
  92. package/dist/data-list/selection.js +102 -0
  93. package/dist/data-list/title.js +20 -0
  94. package/dist/data-list-ng/data-list-ng.js +62 -0
  95. package/dist/date-picker/consts.js +69 -0
  96. package/dist/date-picker/date-input.js +175 -0
  97. package/dist/date-picker/date-picker.js +367 -0
  98. package/dist/date-picker/date-popup.js +483 -0
  99. package/dist/date-picker/day.js +120 -0
  100. package/dist/date-picker/formats.js +3 -0
  101. package/dist/date-picker/month-names.js +100 -0
  102. package/dist/date-picker/month-slider.js +84 -0
  103. package/dist/date-picker/month.js +55 -0
  104. package/dist/date-picker/months.js +122 -0
  105. package/dist/date-picker/weekdays.js +32 -0
  106. package/dist/date-picker/years.js +110 -0
  107. package/dist/dialog/dialog.js +205 -0
  108. package/dist/dialog/dialog__body-scroll-preventer.js +3 -0
  109. package/dist/dialog-ng/dialog-ng.js +604 -0
  110. package/dist/dialog-ng/dialog-ng__template.js +3 -0
  111. package/dist/docked-panel-ng/docked-panel-ng.js +171 -0
  112. package/dist/dropdown/anchor.js +19 -0
  113. package/dist/dropdown/dropdown.js +236 -0
  114. package/dist/dropdown-menu/dropdown-menu.js +177 -0
  115. package/dist/error-bubble/error-bubble.js +59 -0
  116. package/dist/error-message/error-message.js +57 -0
  117. package/dist/error-message-ng/error-message-ng.js +35 -0
  118. package/dist/footer/footer.js +12 -0
  119. package/dist/footer-ng/footer-ng.js +64 -0
  120. package/dist/form-ng/form-ng.js +167 -0
  121. package/dist/global/angular-component-factory.js +84 -0
  122. package/dist/global/compose.js +9 -0
  123. package/dist/global/composeRefs.js +15 -0
  124. package/dist/global/conic-gradient.js +35 -0
  125. package/dist/global/create-stateful-context.js +55 -0
  126. package/dist/global/data-tests.js +24 -0
  127. package/dist/global/dom.js +125 -0
  128. package/dist/global/focus-sensor-hoc.js +146 -0
  129. package/dist/global/fuzzy-highlight.js +67 -0
  130. package/dist/global/get-event-key.js +111 -0
  131. package/dist/global/get-uid.js +15 -0
  132. package/dist/global/inject-styles.js +15 -0
  133. package/dist/global/linear-function.js +17 -0
  134. package/dist/global/listeners.js +44 -0
  135. package/dist/global/memoize.js +20 -0
  136. package/dist/global/normalize-indent.js +30 -0
  137. package/dist/global/promise-with-timeout.js +17 -0
  138. package/dist/global/radial-gradient-mask.js +38 -0
  139. package/dist/global/react-dom-renderer.js +46 -0
  140. package/dist/global/react-render-adapter.js +41 -0
  141. package/dist/global/rerender-hoc.js +55 -0
  142. package/dist/global/ring-angular-component.js +24 -0
  143. package/dist/global/schedule-raf.js +31 -0
  144. package/dist/global/sniffer.js +6 -0
  145. package/dist/global/supports-css.js +22 -0
  146. package/dist/global/theme.js +54 -0
  147. package/dist/global/trivial-template-tag.js +17 -0
  148. package/dist/global/url.js +165 -0
  149. package/dist/global/variables_dark.js +57 -0
  150. package/dist/grid/col.js +60 -0
  151. package/dist/grid/grid.js +33 -0
  152. package/dist/grid/row.js +64 -0
  153. package/dist/group/group.js +31 -0
  154. package/dist/group-ng/group-ng.js +11 -0
  155. package/dist/header/header.js +150 -0
  156. package/dist/header/logo.js +40 -0
  157. package/dist/header/profile.js +219 -0
  158. package/dist/header/services-link.js +12 -0
  159. package/dist/header/services.js +138 -0
  160. package/dist/header/smart-profile.js +233 -0
  161. package/dist/header/smart-services.js +163 -0
  162. package/dist/header/tray-icon.js +47 -0
  163. package/dist/header/tray.js +31 -0
  164. package/dist/heading/heading.js +73 -0
  165. package/dist/http/http.js +218 -0
  166. package/dist/http/http.mock.js +67 -0
  167. package/dist/hub-source/hub-source.js +130 -0
  168. package/dist/hub-source/hub-source__user.js +30 -0
  169. package/dist/hub-source/hub-source__users-groups.js +63 -0
  170. package/dist/icon/icon.js +105 -0
  171. package/dist/icon/icon__constants.js +33 -0
  172. package/dist/icon/icon__svg.js +83 -0
  173. package/dist/icon/index.js +12 -0
  174. package/dist/icon-ng/icon-ng.js +91 -0
  175. package/dist/input/input.js +230 -0
  176. package/dist/input-ng/input-ng.js +111 -0
  177. package/dist/island/adaptive-island-hoc.js +48 -0
  178. package/dist/island/content.js +160 -0
  179. package/dist/island/header.js +84 -0
  180. package/dist/island/island.js +51 -0
  181. package/dist/island-legacy/content-legacy.js +26 -0
  182. package/dist/island-legacy/header-legacy.js +28 -0
  183. package/dist/island-legacy/island-legacy.js +28 -0
  184. package/dist/island-ng/island-content-ng.js +42 -0
  185. package/dist/island-ng/island-header-ng.js +26 -0
  186. package/dist/island-ng/island-ng-class-fixer.js +11 -0
  187. package/dist/island-ng/island-ng.js +25 -0
  188. package/dist/link/clickableLink.js +64 -0
  189. package/dist/link/link.js +115 -0
  190. package/dist/link-ng/link-ng.js +22 -0
  191. package/dist/list/consts.js +26 -0
  192. package/dist/list/list.js +822 -0
  193. package/dist/list/list__custom.js +86 -0
  194. package/dist/list/list__hint.js +26 -0
  195. package/dist/list/list__item.js +206 -0
  196. package/dist/list/list__link.js +65 -0
  197. package/dist/list/list__separator.js +30 -0
  198. package/dist/list/list__title.js +39 -0
  199. package/dist/list/list__users-groups-source.js +130 -0
  200. package/dist/loader/loader.js +71 -0
  201. package/dist/loader/loader__core.js +273 -0
  202. package/dist/loader-inline/inject-styles.js +13 -0
  203. package/dist/loader-inline/loader-inline.js +58 -0
  204. package/dist/loader-inline-ng/loader-inline-ng.js +44 -0
  205. package/dist/loader-ng/loader-ng.js +44 -0
  206. package/dist/loader-screen/loader-screen.js +44 -0
  207. package/dist/loader-screen-ng/loader-screen-ng.js +95 -0
  208. package/dist/login-dialog/login-dialog.js +188 -0
  209. package/dist/login-dialog/service.js +72 -0
  210. package/dist/markdown/code.js +31 -0
  211. package/dist/markdown/heading.js +23 -0
  212. package/dist/markdown/link.js +31 -0
  213. package/dist/markdown/markdown.js +74 -0
  214. package/dist/message/message.js +235 -0
  215. package/dist/message-bundle-ng/message-bundle-ng.js +111 -0
  216. package/dist/old-browsers-message/old-browsers-message.js +101 -0
  217. package/dist/old-browsers-message/old-browsers-message__stop.js +5 -0
  218. package/dist/old-browsers-message/white-list.js +34 -0
  219. package/dist/pager/pager.js +365 -0
  220. package/dist/pager-ng/pager-ng.js +100 -0
  221. package/dist/panel/panel.js +31 -0
  222. package/dist/panel-ng/panel-ng.js +17 -0
  223. package/dist/permissions/permissions.js +200 -0
  224. package/dist/permissions/permissions__cache.js +272 -0
  225. package/dist/permissions-ng/permissions-ng.js +277 -0
  226. package/dist/place-under-ng/place-under-ng.js +158 -0
  227. package/dist/popup/popup.consts.js +41 -0
  228. package/dist/popup/popup.js +396 -0
  229. package/dist/popup/popup.target.js +26 -0
  230. package/dist/popup/position.js +280 -0
  231. package/dist/popup-menu/popup-menu.js +117 -0
  232. package/dist/progress-bar/progress-bar.js +114 -0
  233. package/dist/progress-bar-ng/progress-bar-ng.js +17 -0
  234. package/dist/promised-click-ng/promised-click-ng.js +128 -0
  235. package/dist/proxy-attrs/proxy-attrs.js +21 -0
  236. package/dist/query-assist/query-assist.js +1096 -0
  237. package/dist/query-assist/query-assist__suggestions.js +49 -0
  238. package/dist/query-assist-ng/query-assist-ng.js +86 -0
  239. package/dist/radio/radio.js +42 -0
  240. package/dist/radio/radio__item.js +78 -0
  241. package/dist/radio-ng/radio-ng.js +47 -0
  242. package/dist/save-field-ng/save-field-ng.js +337 -0
  243. package/dist/save-field-ng/save-field-ng__template.js +3 -0
  244. package/dist/select/select.js +1357 -0
  245. package/dist/select/select__filter.js +56 -0
  246. package/dist/select/select__popup.js +553 -0
  247. package/dist/select-ng/select-ng.js +637 -0
  248. package/dist/select-ng/select-ng__lazy.js +169 -0
  249. package/dist/select-ng/select-ng__options.js +145 -0
  250. package/dist/shortcuts/core.js +245 -0
  251. package/dist/shortcuts/shortcut-title.js +51 -0
  252. package/dist/shortcuts/shortcuts-hoc.js +42 -0
  253. package/dist/shortcuts/shortcuts.js +72 -0
  254. package/dist/shortcuts-hint-ng/shortcuts-hint-ng.js +123 -0
  255. package/dist/shortcuts-hint-ng/shortcuts-hint-ng__template.js +3 -0
  256. package/dist/shortcuts-ng/shortcuts-ng.js +262 -0
  257. package/dist/sidebar-ng/sidebar-ng.js +113 -0
  258. package/dist/sidebar-ng/sidebar-ng__button-template.js +3 -0
  259. package/dist/sidebar-ng/sidebar-ng__template.js +3 -0
  260. package/dist/storage/storage.js +59 -0
  261. package/dist/storage/storage__fallback.js +215 -0
  262. package/dist/storage/storage__local.js +154 -0
  263. package/dist/style.css +1 -0
  264. package/dist/tab-trap/tab-trap.js +177 -0
  265. package/dist/table/cell.js +26 -0
  266. package/dist/table/disable-hover-hoc.js +54 -0
  267. package/dist/table/header-cell.js +92 -0
  268. package/dist/table/header.js +193 -0
  269. package/dist/table/multitable.js +141 -0
  270. package/dist/table/row-with-focus-sensor.js +83 -0
  271. package/dist/table/row.js +278 -0
  272. package/dist/table/selection-adapter.js +16 -0
  273. package/dist/table/selection-shortcuts-hoc.js +215 -0
  274. package/dist/table/selection.js +223 -0
  275. package/dist/table/smart-table.js +125 -0
  276. package/dist/table/table.js +409 -0
  277. package/dist/table-legacy-ng/table-legacy-ng.js +468 -0
  278. package/dist/table-legacy-ng/table-legacy-ng__pager.js +120 -0
  279. package/dist/table-legacy-ng/table-legacy-ng__selection-navigate-actions.js +123 -0
  280. package/dist/table-legacy-ng/table-legacy-ng__selection.js +179 -0
  281. package/dist/table-legacy-ng/table-legacy-ng__toolbar.js +57 -0
  282. package/dist/table-ng/smart-table-ng.js +68 -0
  283. package/dist/table-ng/table-ng.js +67 -0
  284. package/dist/tabs/collapsible-more.js +198 -0
  285. package/dist/tabs/collapsible-tab.js +91 -0
  286. package/dist/tabs/collapsible-tabs.js +362 -0
  287. package/dist/tabs/custom-item.js +13 -0
  288. package/dist/tabs/dumb-tabs.js +164 -0
  289. package/dist/tabs/smart-tabs.js +106 -0
  290. package/dist/tabs/tab-link.js +42 -0
  291. package/dist/tabs/tab.js +33 -0
  292. package/dist/tabs/tabs.js +71 -0
  293. package/dist/tabs-ng/tabs-ng.js +194 -0
  294. package/dist/tabs-ng/tabs-ng__template.js +3 -0
  295. package/dist/tag/tag.js +197 -0
  296. package/dist/tags-input/tags-input.js +482 -0
  297. package/dist/tags-input-ng/tags-input-ng.js +93 -0
  298. package/dist/tags-list/tags-list.js +95 -0
  299. package/dist/template-ng/template-ng.js +71 -0
  300. package/dist/text/text.js +36 -0
  301. package/dist/theme-ng/theme-ng.js +45 -0
  302. package/dist/title-ng/title-ng.js +114 -0
  303. package/dist/toggle/toggle.js +78 -0
  304. package/dist/toggle-ng/toggle-ng.js +18 -0
  305. package/dist/tooltip/tooltip.js +209 -0
  306. package/dist/tooltip-ng/tooltip-ng.js +104 -0
  307. package/dist/user-agreement/service.js +412 -0
  308. package/dist/user-agreement/toolbox.eula.js +3 -0
  309. package/dist/user-agreement/user-agreement.js +169 -0
  310. package/dist/user-card/card.js +19 -0
  311. package/dist/user-card/smart-user-card-tooltip.js +114 -0
  312. package/dist/user-card/tooltip.js +95 -0
  313. package/dist/user-card/user-card.js +51 -0
  314. package/dist/user-card-ng/user-card-ng.js +62 -0
  315. package/package.json +2 -2
@@ -0,0 +1,637 @@
1
+ import { a as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import angular from 'angular';
3
+ import React from 'react';
4
+ import { unmountComponentAtNode, render } from '../global/react-render-adapter.js';
5
+ import getEventKey from '../global/get-event-key.js';
6
+ import Select, { RerenderableSelect } from '../select/select.js';
7
+ import MessageBundle from '../message-bundle-ng/message-bundle-ng.js';
8
+ import SelectNgOptions from './select-ng__options.js';
9
+ import SelectLazy from './select-ng__lazy.js';
10
+ import 'core-js/modules/web.dom-collections.iterator.js';
11
+ import 'react-dom';
12
+ import 'core-js/modules/es.string.replace.js';
13
+ import 'classnames';
14
+ import 'prop-types';
15
+ import '@jetbrains/icons/chevron-10px';
16
+ import '@jetbrains/icons/close';
17
+ import 'deep-equal';
18
+ import '../dropdown/dropdown.js';
19
+ import '../global/data-tests.js';
20
+ import '../_helpers/anchor.js';
21
+ import '../icon/icon.js';
22
+ import 'util-deprecate';
23
+ import '../icon/icon__constants.js';
24
+ import '../_helpers/icon.js';
25
+ import '../icon/icon__svg.js';
26
+ import '../global/memoize.js';
27
+ import '../button/button.js';
28
+ import 'focus-visible';
29
+ import '../global/theme.js';
30
+ import '../link/clickableLink.js';
31
+ import '../_helpers/button__classes.js';
32
+ import '../avatar/avatar.js';
33
+ import '../global/url.js';
34
+ import '../global/dom.js';
35
+ import '../avatar/fallback-avatar.js';
36
+ import '../global/get-uid.js';
37
+ import '../popup/popup.js';
38
+ import '../global/schedule-raf.js';
39
+ import '../shortcuts/shortcuts.js';
40
+ import '../shortcuts/core.js';
41
+ import 'combokeys';
42
+ import '../global/sniffer.js';
43
+ import 'sniffr';
44
+ import '../tab-trap/tab-trap.js';
45
+ import '../popup/position.js';
46
+ import '../popup/popup.consts.js';
47
+ import '../popup/popup.target.js';
48
+ import '../list/list.js';
49
+ import 'react-virtualized/dist/es/List';
50
+ import 'react-virtualized/dist/es/AutoSizer';
51
+ import 'react-virtualized/dist/es/WindowScroller';
52
+ import 'react-virtualized/dist/es/CellMeasurer';
53
+ import 'memoize-one';
54
+ import '../global/create-stateful-context.js';
55
+ import '../list/list__link.js';
56
+ import '../link/link.js';
57
+ import '../_helpers/link.js';
58
+ import '../_helpers/list.js';
59
+ import '../list/list__item.js';
60
+ import '../checkbox/checkbox.js';
61
+ import '@jetbrains/icons/checkmark';
62
+ import '@jetbrains/icons/remove-10px';
63
+ import '../_helpers/checkbox.js';
64
+ import '../list/list__custom.js';
65
+ import '../list/list__title.js';
66
+ import '../list/list__separator.js';
67
+ import '../list/list__hint.js';
68
+ import '../list/consts.js';
69
+ import '../input/input.js';
70
+ import '../_helpers/input.js';
71
+ import '../global/rerender-hoc.js';
72
+ import '../global/composeRefs.js';
73
+ import '../global/fuzzy-highlight.js';
74
+ import '../select/select__popup.js';
75
+ import '@jetbrains/icons/search';
76
+ import '../loader-inline/loader-inline.js';
77
+ import '../_helpers/inject-styles.js';
78
+ import '../global/conic-gradient.js';
79
+ import 'conic-gradient';
80
+ import '../global/supports-css.js';
81
+ import '../global/inject-styles.js';
82
+ import '../global/radial-gradient-mask.js';
83
+ import '../shortcuts/shortcuts-hoc.js';
84
+ import '../tags-list/tags-list.js';
85
+ import '../tag/tag.js';
86
+ import '../caret/caret.js';
87
+ import '../text/text.js';
88
+ import '../_helpers/select__filter.js';
89
+
90
+ const LOADER_DELAY = 150; // delay to show loader in ms
91
+
92
+ const INFINITE_SCROLL_PACK_SIZE = 50;
93
+ const DIALOG_NG_SELECTOR = '[data-anchor=dialog-container][data-in-sidebar=false]';
94
+ /**
95
+ * @name Select Ng
96
+ */
97
+
98
+ const angularModule = angular.module('Ring.select', [SelectNgOptions, MessageBundle]);
99
+ angularModule.directive('rgSelect', function rgSelectDirective() {
100
+ const types = {
101
+ input: Select.Type.INPUT,
102
+ button: Select.Type.BUTTON,
103
+ material: Select.Type.MATERIAL,
104
+ dropdown: Select.Type.CUSTOM,
105
+ suggest: Select.Type.INPUT
106
+ };
107
+ const sizes = {
108
+ FULL: Select.Size.FULL,
109
+ S: Select.Size.S,
110
+ M: Select.Size.M,
111
+ L: Select.Size.L
112
+ };
113
+ return {
114
+ /**
115
+ * @property {Object} scope
116
+ * @property {Object} scope.ngModel
117
+ * @property {String} scope.selectType - select type. Can be "button" (default), "input" or "dropdown"
118
+ * @property {String} scope.lazy - Load options lazily. "true" by default.
119
+ * @property {Boolean} scope.withInfiniteScroll - If true, rgSelect calls getOptions with skip parameter when the list is scrolled to the bottom
120
+ * @property {String} scope.options - query for options
121
+ * @property {Boolean} scope.externalFilter - whether or not to use the options function as a filter.
122
+ * "filter" property should not be passed in that case.
123
+ * @property {Boolean} scope.multiple - toggles multiple selection
124
+ * @property {Function} scope.onSelect - callback to call on item selection
125
+ * Receives "selected" property (<rg-select on-select='doSomethingWith(selected)'>)
126
+ * @property {Function} scope.onDeselect - callback to call on item deselection
127
+ * Receives "deselected" property (<rg-select on-deselect='doSomethingWith(deselected)'>)
128
+ * @property {Function} scope.onOpen - callback to call on select popup opening
129
+ * @property {Function} scope.onClose - callback to call on select popup closing
130
+ * @property {Function} scope.onChange - callback to call on selection change
131
+ * Receives "selected" property (<rg-select on-change='doSomethingWith(selected)'>)
132
+ * @property {String} scope.label - Label to place on empty select button
133
+ * @property {String} scope.selectedLabel - Label to replace any selected item/items with
134
+ * @property {String} scope.notFoundMessage - message to display if no options found
135
+ * @property {String} scope.loadingMessage - message to display while loading
136
+ * @property {Object} scope.config - hash to pass to react select component
137
+ * @property {Boolean} scope.configAutoUpdate - whether or not to watch for configuration updates
138
+ * @property {String} scope.size - select size. Can be "S", "M" (default), or "L".
139
+ */
140
+ scope: {
141
+ ngModel: '=',
142
+ selectType: '@',
143
+ lazy: '=?',
144
+ withInfiniteScroll: '=?',
145
+ // NB: Deprecated! Use infinite-scroll-pack-size="50" instead
146
+ infiniteScrollPackSize: '@',
147
+ options: '@',
148
+ optionsScope: '=',
149
+ label: '@',
150
+ selectedLabel: '@',
151
+ externalFilter: '=?',
152
+ filter: '=?',
153
+ tags: '=?',
154
+ multiple: '=?',
155
+ clear: '=?',
156
+ onSelect: '&',
157
+ onDeselect: '&',
158
+ onOpen: '&',
159
+ onClose: '&',
160
+ onChange: '&',
161
+ notFoundMessage: '@',
162
+ loadingMessage: '@',
163
+ config: '=?',
164
+ configAutoUpdate: '=',
165
+ selectInstance: '=?',
166
+ size: '@',
167
+ dir: '@'
168
+ },
169
+ bindToController: true,
170
+ controllerAs: 'selectCtrl',
171
+ require: ['?ngModel', 'rgSelect'],
172
+ link: function link(scope, iElement, iAttrs, ctrls) {
173
+ const ngModelCtrl = ctrls[0];
174
+ const rgSelectCtrl = ctrls[1];
175
+ rgSelectCtrl.setNgModelCtrl(ngModelCtrl);
176
+ },
177
+ controller: ["$q", "$scope", "$element", "$attrs", "$timeout", "SelectOptions", "RingMessageBundle", function controller($q, $scope, $element, $attrs, $timeout, SelectOptions, RingMessageBundle) {
178
+ /*eslint-disable consistent-this*/
179
+ const ctrl = this;
180
+ /*eslint-enable consistent-this*/
181
+
182
+ const element = $element[0];
183
+ const container = document.createElement('span');
184
+ const infiniteScrollPackSize = Number(ctrl.infiniteScrollPackSize) || (ctrl.withInfiniteScroll ? INFINITE_SCROLL_PACK_SIZE : 0);
185
+ /**
186
+ * Properties
187
+ */
188
+
189
+ ctrl.selectInstance = null;
190
+ ctrl.ngModelCtrl = null;
191
+ ctrl.query = null;
192
+ ctrl.dataReceived = false;
193
+ ctrl.skipNextModelSync = false;
194
+ const scope = ctrl.optionsScope ? ctrl.optionsScope : $scope.$parent;
195
+
196
+ ctrl.setNgModelCtrl = ngModelCtrl => {
197
+ ctrl.ngModelCtrl = ngModelCtrl;
198
+ };
199
+ /**
200
+ * @param {Array} options
201
+ */
202
+
203
+
204
+ function memorizeOptions(options, skip) {
205
+ if (ctrl.loadedOptions && skip > 0) {
206
+ ctrl.loadedOptions = ctrl.loadedOptions.concat(options);
207
+ ctrl.stopLoadingNewOptions = options.length === 0 && infiniteScrollPackSize;
208
+ } else {
209
+ ctrl.loadedOptions = options;
210
+ }
211
+
212
+ ctrl.lastSkip = skip;
213
+ return ctrl.loadedOptions;
214
+ }
215
+
216
+ function resetMemorizedOptions() {
217
+ ctrl.lastSkip = -1;
218
+ ctrl.loadedOptions = [];
219
+ ctrl.stopLoadingNewOptions = false;
220
+ }
221
+
222
+ function getType() {
223
+ // $attrs.type as fallback, not recommended to use because of native "type" attribute
224
+ return ctrl.selectType || $attrs.type;
225
+ }
226
+
227
+ function getCurrentSkipParameter(query, prevQuery) {
228
+ if (!infiniteScrollPackSize || query !== prevQuery || !ctrl.loadedOptions) {
229
+ return 0;
230
+ }
231
+
232
+ return ctrl.lastSkip < 0 ? 0 : ctrl.lastSkip + infiniteScrollPackSize;
233
+ }
234
+
235
+ function isInDialog() {
236
+ const dialogContainer = document.querySelector(DIALOG_NG_SELECTOR);
237
+ return dialogContainer && dialogContainer.contains(element);
238
+ }
239
+
240
+ ctrl.syncSelectToNgModel = selectedValue => {
241
+ function valueOf(option) {
242
+ if (option && option.originalModel) {
243
+ return ctrl.optionsParser.getValue(option.originalModel);
244
+ }
245
+
246
+ return ctrl.optionsParser.getValue(option);
247
+ }
248
+
249
+ if (ctrl.ngModelCtrl) {
250
+ ctrl.skipNextModelSync = true;
251
+
252
+ if (getType() === 'suggest') {
253
+ ctrl.ngModelCtrl.$setViewValue(selectedValue.label);
254
+ } else if (Array.isArray(selectedValue)) {
255
+ ctrl.ngModelCtrl.$setViewValue(selectedValue.map(valueOf));
256
+ } else {
257
+ ctrl.ngModelCtrl.$setViewValue(valueOf(selectedValue));
258
+ }
259
+ }
260
+ };
261
+
262
+ ctrl.convertNgModelToSelect = model => {
263
+ function convertItem(modelValue) {
264
+ let item = ctrl.optionsParser.getOptionByValue(modelValue, ctrl.loadedOptions || []); // could happen when lazily fetching the data
265
+
266
+ if (item === undefined) {
267
+ item = modelValue;
268
+ }
269
+
270
+ return angular.extend({
271
+ key: ctrl.optionsParser.getKey(item),
272
+ label: ctrl.optionsParser.getLabel(item),
273
+ selectedLabel: ctrl.optionsParser.getSelectedLabel(item),
274
+ description: ctrl.optionsParser.getDescription(item),
275
+ originalModel: item
276
+ }, typeof item === 'object' ? item : null);
277
+ }
278
+
279
+ if (model !== undefined && model !== null) {
280
+ if (Array.isArray(model)) {
281
+ return model.map(convertItem);
282
+ } else {
283
+ return convertItem(model);
284
+ }
285
+ }
286
+
287
+ return undefined;
288
+ };
289
+
290
+ let lastQuery = null;
291
+ let inProcessQueries = 0;
292
+
293
+ ctrl.getOptions = (query, skip) => $q.when(ctrl.optionsParser.getOptions(query, skip));
294
+
295
+ let loaderDelayTimeout = null;
296
+
297
+ ctrl.showLoader = () => {
298
+ if (getType() !== 'suggest') {
299
+ reRenderSelect({
300
+ loading: true
301
+ });
302
+ }
303
+ };
304
+
305
+ ctrl.loadOptionsToSelect = query => {
306
+ if (ctrl.stopLoadingNewOptions && query === lastQuery) {
307
+ return $q.resolve();
308
+ }
309
+
310
+ ctrl.stopLoadingNewOptions = false;
311
+ const skip = getCurrentSkipParameter(query, lastQuery);
312
+ lastQuery = query;
313
+ $timeout.cancel(loaderDelayTimeout); // Delay loader only when there is some data
314
+ // Otherwise, user can notice the "not found" message
315
+
316
+ if (ctrl.dataReceived) {
317
+ loaderDelayTimeout = $timeout(ctrl.showLoader, LOADER_DELAY);
318
+ } else {
319
+ ctrl.showLoader();
320
+ }
321
+
322
+ inProcessQueries++;
323
+ return ctrl.getOptions(query, skip).then(results => {
324
+ inProcessQueries--;
325
+
326
+ if (query !== lastQuery) {
327
+ return; // do not process the result if queries don't match
328
+ }
329
+
330
+ if (skip && ctrl.lastSkip !== -1 && skip !== ctrl.lastSkip + infiniteScrollPackSize && ctrl.infiniteScrollPackSize) {
331
+ return; // do not process the result if skips not match
332
+ }
333
+
334
+ const items = memorizeOptions(results.data || results, skip).map(ctrl.convertNgModelToSelect);
335
+ $timeout.cancel(loaderDelayTimeout);
336
+ ctrl.dataReceived = true;
337
+ reRenderSelect({
338
+ data: items,
339
+ loading: false
340
+ });
341
+ }).catch(error => {
342
+ inProcessQueries--;
343
+ $timeout.cancel(loaderDelayTimeout);
344
+ reRenderSelect({
345
+ loading: false
346
+ });
347
+ return $q.reject(error);
348
+ });
349
+ };
350
+
351
+ function setSelectModel(newValue) {
352
+ if (ctrl.skipNextModelSync) {
353
+ ctrl.skipNextModelSync = false;
354
+ return;
355
+ }
356
+
357
+ if (ctrl.ngModelCtrl) {
358
+ reRenderSelect({
359
+ selected: ctrl.convertNgModelToSelect(newValue)
360
+ });
361
+ }
362
+ }
363
+
364
+ function syncNgModelToSelect() {
365
+ $scope.$watch(() => ctrl.ngModelCtrl && ctrl.ngModelCtrl.$modelValue, setSelectModel, true);
366
+ }
367
+
368
+ function syncDisabled() {
369
+ $attrs.$observe('disabled', newValue => {
370
+ reRenderSelect({
371
+ disabled: newValue
372
+ });
373
+ });
374
+ }
375
+
376
+ function syncMultiple() {
377
+ $scope.$watch(() => ctrl.multiple, () => {
378
+ if (angular.isDefined(ctrl.multiple)) {
379
+ reRenderSelect({
380
+ multiple: ctrl.multiple
381
+ });
382
+ }
383
+ });
384
+ }
385
+
386
+ function syncConfig() {
387
+ $scope.$watchCollection(() => ctrl.config, (config, old) => {
388
+ if (config !== old) {
389
+ reRenderSelect(config);
390
+ }
391
+ });
392
+ }
393
+
394
+ function isSelectPopupOpen() {
395
+ return ctrl.selectInstance._popup.isVisible();
396
+ }
397
+
398
+ function attachDropdownIfNeeded() {
399
+ if (getType() === 'dropdown') {
400
+ const handler = () => {
401
+ ctrl.selectInstance._clickHandler();
402
+ };
403
+
404
+ element.addEventListener('click', handler);
405
+ element.addEventListener('keydown', event => {
406
+ const key = getEventKey(event);
407
+ const modifier = event.ctrlKey || event.altKey || event.metaKey || event.shiftKey;
408
+
409
+ if (key === 'Enter' && !modifier || key === ' ') {
410
+ if (!isSelectPopupOpen()) {
411
+ handler(); // XXX: preventDefault is needed because some controls (button, input, etc)
412
+ // have an activation behaviour which fires a `click` event on `keypress`
413
+ // @see https://www.w3.org/TR/2017/PR-html51-20170803/editing.html#activation
414
+
415
+ event.preventDefault(); // XXX: stopPropagation is needed because when a React component is rendered with
416
+ // shortcuts, document-level handlers are added. For example, `enter` that leads
417
+ // to this handler being called right after current function's call, which
418
+ // leads to the popup being closed immediately after opening.
419
+ // @see https://www.w3.org/TR/uievents/#Event_dispatch_and_DOM_event_flow
420
+
421
+ event.stopPropagation();
422
+ }
423
+ }
424
+ });
425
+ }
426
+ }
427
+
428
+ function listenToRouteChanges() {
429
+ $scope.$on('$locationChangeSuccess', () => {
430
+ if (isSelectPopupOpen()) {
431
+ ctrl.selectInstance._hidePopup();
432
+ }
433
+ });
434
+ }
435
+
436
+ function getSelectType() {
437
+ return types[getType()] || types.material;
438
+ }
439
+
440
+ function getSelectSize() {
441
+ return sizes[ctrl.size] || sizes.FULL;
442
+ }
443
+
444
+ function selectRef(instance) {
445
+ if (instance != null) {
446
+ ctrl.selectInstance = instance;
447
+ }
448
+ }
449
+
450
+ function reRenderSelect(props) {
451
+ var _ctrl$selectInstance;
452
+
453
+ if ((_ctrl$selectInstance = ctrl.selectInstance) !== null && _ctrl$selectInstance !== void 0 && _ctrl$selectInstance.node) {
454
+ ctrl.selectInstance.rerender({ ...props,
455
+ ref: selectRef
456
+ });
457
+ }
458
+ }
459
+ /**
460
+ * @param {newValue} newValue New value of options
461
+ * @param {value} value Previous value of options
462
+ */
463
+
464
+
465
+ function optionsWatcher(newValue, value) {
466
+ memorizeOptions(newValue, 0);
467
+
468
+ if (newValue === value) {
469
+ return;
470
+ }
471
+
472
+ if (ctrl.ngModelCtrl) {
473
+ setSelectModel(ctrl.ngModelCtrl.$modelValue);
474
+ }
475
+ }
476
+
477
+ function createDefaultConfig() {
478
+ const defaultConfig = {
479
+ label: ctrl.label || RingMessageBundle.select_label(),
480
+ selectedLabel: ctrl.selectedLabel,
481
+ allowAny: getType() === 'suggest',
482
+ hideArrow: getType() === 'suggest',
483
+ filter: ctrl.filter,
484
+ tags: ctrl.tags,
485
+ dir: ctrl.dir,
486
+ multiple: ctrl.multiple,
487
+ popupClassName: $attrs.popupClass,
488
+ clear: ctrl.clear,
489
+ ringPopupTarget: isInDialog() ? 'dialog-ng-popup-container' : null,
490
+ renderOptimization: getType() !== 'dropdown',
491
+ type: getSelectType(),
492
+ loadingMessage: ctrl.loadingMessage || RingMessageBundle.select_loading(),
493
+ notFoundMessage: ctrl.notFoundMessage || RingMessageBundle.select_options_not_found(),
494
+ targetElement: getType() === 'dropdown' ? element : null,
495
+ size: getSelectSize(),
496
+ onBeforeOpen: () => {
497
+ resetMemorizedOptions();
498
+ ctrl.loadOptionsToSelect(ctrl.query);
499
+ $scope.$evalAsync(() => {});
500
+ },
501
+ onOpen: () => {
502
+ $scope.$evalAsync(() => {
503
+ ctrl.onOpen();
504
+ });
505
+ },
506
+ onClose: () => {
507
+ ctrl.query = null;
508
+ $scope.$evalAsync(() => {
509
+ ctrl.onClose();
510
+ });
511
+ },
512
+ onSelect: (selected, event) => {
513
+ $scope.$evalAsync(() => {
514
+ ctrl.onSelect({
515
+ selected,
516
+ event
517
+ });
518
+ });
519
+ },
520
+ onDeselect: (deselected, event) => {
521
+ $scope.$evalAsync(() => {
522
+ ctrl.onDeselect({
523
+ deselected,
524
+ event
525
+ });
526
+ });
527
+ },
528
+ onChange: (selected, event) => {
529
+ ctrl.syncSelectToNgModel(selected);
530
+ $scope.$evalAsync(() => {
531
+ ctrl.onChange({
532
+ selected,
533
+ event
534
+ });
535
+ });
536
+ },
537
+ onFilter: query => {
538
+ $scope.$evalAsync(() => {
539
+ ctrl.query = query;
540
+
541
+ if (ctrl.externalFilter) {
542
+ ctrl.loadOptionsToSelect(query);
543
+ }
544
+
545
+ if (ctrl.onFilter) {
546
+ ctrl.onFilter(query);
547
+ }
548
+ });
549
+ },
550
+ reloadOptions: query => {
551
+ $scope.$evalAsync(() => {
552
+ ctrl.loadOptionsToSelect(query || ctrl.query);
553
+ });
554
+ },
555
+ getLoadedOptions: () => ctrl.loadedOptions
556
+ };
557
+
558
+ if (infiniteScrollPackSize) {
559
+ defaultConfig.onLoadMore = () => {
560
+ if (inProcessQueries === 0) {
561
+ $scope.$evalAsync(() => {
562
+ ctrl.loadOptionsToSelect(ctrl.query);
563
+ });
564
+ }
565
+ };
566
+ }
567
+
568
+ return defaultConfig;
569
+ }
570
+
571
+ function removeDefaultConfigPropFromUserConfig() {
572
+ if (!ctrl.defaultConfig || !ctrl.config) {
573
+ return;
574
+ }
575
+
576
+ Object.keys(ctrl.defaultConfig).filter(propName => ctrl.config[propName] === ctrl.defaultConfig[propName]).forEach(propName => {
577
+ delete ctrl.config[propName];
578
+ });
579
+ }
580
+
581
+ ctrl.$onDestroy = () => {
582
+ unmountComponentAtNode(container);
583
+ removeDefaultConfigPropFromUserConfig();
584
+ };
585
+
586
+ ctrl.$onInit = () => {
587
+ ctrl.optionsParser = new SelectOptions(scope, ctrl.options);
588
+ ctrl.lazy = ctrl.hasOwnProperty('lazy') ? ctrl.lazy : true;
589
+ /**
590
+ * Provide specific filter function if externalFilter is enabled
591
+ */
592
+
593
+ if (ctrl.externalFilter) {
594
+ ctrl.filter = ctrl.filter || {};
595
+
596
+ ctrl.filter.fn = () => true;
597
+ }
598
+
599
+ ctrl.defaultConfig = createDefaultConfig();
600
+ ctrl.config = angular.extend({}, ctrl.defaultConfig, ctrl.config || {});
601
+
602
+ if (getType() === 'suggest' || getType() === 'input') {
603
+ render( /*#__PURE__*/React.createElement(RerenderableSelect, _extends({
604
+ ref: selectRef
605
+ }, ctrl.config)), container);
606
+ } else {
607
+ ctrl.selectInstance = new SelectLazy(container, ctrl.config, ctrl, getType(), selectRef);
608
+ } // Preserve existing contents of the directive
609
+
610
+
611
+ element.appendChild(container);
612
+
613
+ if (!ctrl.lazy) {
614
+ if (!ctrl.optionsParser.datasourceIsFunction) {
615
+ $scope.$watch(() => ctrl.optionsParser.getOptions(ctrl.query, 0), optionsWatcher, true);
616
+ } else {
617
+ ctrl.loadOptionsToSelect(ctrl.query);
618
+ }
619
+ }
620
+
621
+ syncNgModelToSelect();
622
+ syncDisabled();
623
+ syncMultiple();
624
+
625
+ if (ctrl.configAutoUpdate) {
626
+ syncConfig();
627
+ }
628
+
629
+ attachDropdownIfNeeded();
630
+ listenToRouteChanges();
631
+ };
632
+ }]
633
+ };
634
+ });
635
+ var selectNg = angularModule.name;
636
+
637
+ export { selectNg as default };