@jetbrains/ring-ui-built 6.0.32 → 6.0.33

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 (224) hide show
  1. package/components/_helpers/_rollupPluginBabelHelpers.js +567 -1
  2. package/components/_helpers/anchor.js +6 -7
  3. package/components/_helpers/button__classes.js +14 -16
  4. package/components/_helpers/caption.js +20 -14
  5. package/components/_helpers/card.js +105 -95
  6. package/components/_helpers/dialog__body-scroll-preventer.js +19 -11
  7. package/components/_helpers/icon__svg.js +25 -22
  8. package/components/_helpers/input.js +177 -146
  9. package/components/_helpers/query-assist__suggestions.js +90 -74
  10. package/components/_helpers/select__filter.js +69 -48
  11. package/components/_helpers/services-link.js +37 -29
  12. package/components/_helpers/sidebar.js +107 -99
  13. package/components/_helpers/tab-link.js +7 -7
  14. package/components/_helpers/theme.js +40 -31
  15. package/components/_helpers/title.js +72 -57
  16. package/components/alert/alert.js +202 -150
  17. package/components/alert/container.js +41 -32
  18. package/components/alert-service/alert-service.js +170 -105
  19. package/components/analytics/analytics.js +22 -12
  20. package/components/analytics/analytics__custom-plugin.js +75 -54
  21. package/components/auth/auth.js +36 -4
  22. package/components/auth/auth__core.js +1471 -746
  23. package/components/auth/background-flow.js +127 -87
  24. package/components/auth/down-notification.js +73 -30
  25. package/components/auth/iframe-flow.js +133 -75
  26. package/components/auth/request-builder.js +82 -46
  27. package/components/auth/response-parser.js +116 -86
  28. package/components/auth/storage.js +334 -171
  29. package/components/auth/token-validator.js +242 -137
  30. package/components/auth/window-flow.js +134 -92
  31. package/components/auth-dialog/auth-dialog.js +172 -114
  32. package/components/auth-dialog-service/auth-dialog-service.js +31 -8
  33. package/components/avatar/avatar-example-datauri.js +1 -23
  34. package/components/avatar/avatar.js +152 -119
  35. package/components/avatar/fallback-avatar.js +38 -22
  36. package/components/badge/badge.js +45 -35
  37. package/components/button/button.js +107 -86
  38. package/components/button-group/button-group.js +33 -19
  39. package/components/button-set/button-set.js +32 -20
  40. package/components/button-toolbar/button-toolbar.js +31 -19
  41. package/components/caret/caret.js +220 -186
  42. package/components/checkbox/checkbox.js +101 -76
  43. package/components/clipboard/clipboard-fallback.js +10 -10
  44. package/components/clipboard/clipboard.js +132 -35
  45. package/components/code/code.js +166 -92
  46. package/components/collapse/collapse-content.js +64 -42
  47. package/components/collapse/collapse-context.js +2 -2
  48. package/components/collapse/collapse-control.js +14 -12
  49. package/components/collapse/collapse.js +17 -11
  50. package/components/collapse/consts.js +4 -4
  51. package/components/collapse/utils.js +3 -1
  52. package/components/confirm/confirm.js +104 -66
  53. package/components/confirm-service/confirm-service.js +59 -37
  54. package/components/content-layout/content-layout.js +64 -43
  55. package/components/content-layout/sidebar.js +1 -0
  56. package/components/contenteditable/contenteditable.js +59 -50
  57. package/components/control-label/control-label.js +9 -9
  58. package/components/data-list/data-list.js +182 -129
  59. package/components/data-list/data-list.mock.js +6 -2
  60. package/components/data-list/item.js +170 -143
  61. package/components/data-list/selection.js +136 -76
  62. package/components/data-list/title.js +12 -1
  63. package/components/date-picker/consts.js +26 -19
  64. package/components/date-picker/date-input.js +144 -113
  65. package/components/date-picker/date-picker.js +282 -227
  66. package/components/date-picker/date-popup.js +395 -350
  67. package/components/date-picker/day.js +116 -87
  68. package/components/date-picker/month-names.js +66 -43
  69. package/components/date-picker/month-slider.js +76 -51
  70. package/components/date-picker/month.js +25 -16
  71. package/components/date-picker/months.js +50 -43
  72. package/components/date-picker/weekdays.js +22 -12
  73. package/components/date-picker/years.js +110 -83
  74. package/components/dialog/dialog.js +190 -142
  75. package/components/dialog/dialog__body-scroll-preventer.js +4 -0
  76. package/components/dropdown/anchor.js +9 -0
  77. package/components/dropdown/dropdown.js +213 -182
  78. package/components/dropdown-menu/dropdown-menu.js +97 -71
  79. package/components/editable-heading/editable-heading.js +127 -75
  80. package/components/error-bubble/error-bubble.js +60 -31
  81. package/components/error-message/error-message.js +59 -39
  82. package/components/footer/footer.js +30 -27
  83. package/components/global/compose.js +10 -1
  84. package/components/global/composeRefs.js +12 -7
  85. package/components/global/controls-height.js +2 -2
  86. package/components/global/create-stateful-context.js +15 -15
  87. package/components/global/data-tests.js +14 -6
  88. package/components/global/dom.js +86 -47
  89. package/components/global/focus-sensor-hoc.js +132 -122
  90. package/components/global/fuzzy-highlight.js +36 -22
  91. package/components/global/get-event-key.js +8 -8
  92. package/components/global/get-uid.js +8 -4
  93. package/components/global/inject-styles.js +15 -10
  94. package/components/global/listeners.js +51 -27
  95. package/components/global/memoize.js +12 -6
  96. package/components/global/normalize-indent.js +50 -19
  97. package/components/global/promise-with-timeout.js +8 -6
  98. package/components/global/prop-types.js +5 -3
  99. package/components/global/react-dom-renderer.js +44 -28
  100. package/components/global/react-render-adapter.js +1 -1
  101. package/components/global/rerender-hoc.js +30 -12
  102. package/components/global/schedule-raf.js +6 -5
  103. package/components/global/sniffer.js +1 -1
  104. package/components/global/theme.js +22 -0
  105. package/components/global/trivial-template-tag.js +10 -3
  106. package/components/global/typescript-utils.js +6 -2
  107. package/components/global/url.js +26 -20
  108. package/components/global/use-event-callback.js +4 -6
  109. package/components/grid/col.js +52 -35
  110. package/components/grid/grid.js +31 -17
  111. package/components/grid/row.js +47 -35
  112. package/components/group/group.js +25 -17
  113. package/components/header/header.js +78 -33
  114. package/components/header/logo.js +36 -20
  115. package/components/header/profile.js +199 -166
  116. package/components/header/services-link.js +4 -0
  117. package/components/header/services.js +116 -73
  118. package/components/header/smart-profile.js +203 -111
  119. package/components/header/smart-services.js +113 -62
  120. package/components/header/tray-icon.js +37 -21
  121. package/components/header/tray.js +32 -21
  122. package/components/heading/heading.js +25 -24
  123. package/components/http/http.js +353 -203
  124. package/components/http/http.mock.js +101 -49
  125. package/components/hub-source/hub-source.js +190 -83
  126. package/components/hub-source/hub-source__user.js +44 -11
  127. package/components/hub-source/hub-source__users-groups.js +65 -37
  128. package/components/i18n/i18n-context.js +10 -7
  129. package/components/i18n/i18n.js +10 -7
  130. package/components/icon/icon.js +93 -76
  131. package/components/icon/icon__svg.js +8 -0
  132. package/components/icon/index.js +8 -0
  133. package/components/input/input.js +13 -0
  134. package/components/island/adaptive-island-hoc.js +43 -30
  135. package/components/island/content.js +132 -115
  136. package/components/island/header.js +70 -57
  137. package/components/island/island.js +40 -28
  138. package/components/island-legacy/content-legacy.js +25 -17
  139. package/components/island-legacy/header-legacy.js +27 -19
  140. package/components/island-legacy/island-legacy.js +25 -17
  141. package/components/link/clickableLink.js +59 -44
  142. package/components/link/link.js +68 -57
  143. package/components/list/consts.js +2 -2
  144. package/components/list/list.js +698 -611
  145. package/components/list/list__custom.js +62 -44
  146. package/components/list/list__hint.js +19 -10
  147. package/components/list/list__item.js +174 -133
  148. package/components/list/list__link.js +50 -37
  149. package/components/list/list__separator.js +24 -14
  150. package/components/list/list__title.js +32 -22
  151. package/components/list/list__users-groups-source.js +126 -54
  152. package/components/loader/loader.js +74 -43
  153. package/components/loader/loader__core.js +263 -198
  154. package/components/loader-inline/loader-inline.js +35 -23
  155. package/components/loader-screen/loader-screen.js +46 -25
  156. package/components/login-dialog/login-dialog.js +158 -111
  157. package/components/login-dialog/service.js +34 -8
  158. package/components/markdown/markdown.js +23 -15
  159. package/components/message/message.js +203 -161
  160. package/components/old-browsers-message/old-browsers-message.js +18 -11
  161. package/components/old-browsers-message/old-browsers-message__stop.js +7 -0
  162. package/components/old-browsers-message/white-list.js +16 -8
  163. package/components/pager/pager.js +271 -212
  164. package/components/panel/panel.js +25 -17
  165. package/components/permissions/permissions.js +172 -127
  166. package/components/permissions/permissions__cache.js +224 -194
  167. package/components/popup/popup.consts.js +1 -1
  168. package/components/popup/popup.js +343 -284
  169. package/components/popup/popup.target.js +8 -9
  170. package/components/popup/position.js +106 -96
  171. package/components/popup-menu/popup-menu.js +81 -44
  172. package/components/progress-bar/progress-bar.js +104 -87
  173. package/components/query-assist/query-assist.js +916 -838
  174. package/components/query-assist/query-assist__suggestions.js +30 -1
  175. package/components/radio/radio.js +34 -19
  176. package/components/radio/radio__item.js +69 -52
  177. package/components/select/select.js +957 -852
  178. package/components/select/select__filter.js +30 -0
  179. package/components/select/select__popup.js +487 -373
  180. package/components/shortcuts/core.js +217 -166
  181. package/components/shortcuts/shortcut-title.js +11 -6
  182. package/components/shortcuts/shortcuts-hoc.js +45 -19
  183. package/components/shortcuts/shortcuts.js +75 -50
  184. package/components/slider/slider.js +122 -99
  185. package/components/slider/slider.utils.js +24 -14
  186. package/components/storage/storage.js +33 -4
  187. package/components/storage/storage__fallback.js +224 -149
  188. package/components/storage/storage__local.js +153 -90
  189. package/components/tab-trap/tab-trap.js +153 -122
  190. package/components/table/cell.js +26 -14
  191. package/components/table/disable-hover-hoc.js +51 -33
  192. package/components/table/header-cell.js +89 -64
  193. package/components/table/header.js +132 -104
  194. package/components/table/multitable.js +125 -107
  195. package/components/table/row-with-focus-sensor.js +69 -25
  196. package/components/table/row.js +216 -175
  197. package/components/table/selection-adapter.js +3 -1
  198. package/components/table/selection-shortcuts-hoc.js +181 -180
  199. package/components/table/selection.js +226 -156
  200. package/components/table/smart-table.js +88 -50
  201. package/components/table/table.js +358 -289
  202. package/components/tabs/collapsible-more.js +79 -46
  203. package/components/tabs/collapsible-tab.js +38 -31
  204. package/components/tabs/collapsible-tabs.js +153 -88
  205. package/components/tabs/custom-item.js +2 -4
  206. package/components/tabs/dumb-tabs.js +117 -74
  207. package/components/tabs/smart-tabs.js +69 -29
  208. package/components/tabs/tab-link.js +5 -1
  209. package/components/tabs/tab.js +31 -19
  210. package/components/tabs/tabs.js +31 -0
  211. package/components/tag/tag.js +173 -133
  212. package/components/tags-input/tags-input.js +427 -329
  213. package/components/tags-list/tags-list.js +78 -57
  214. package/components/text/text.js +39 -28
  215. package/components/toggle/toggle.js +70 -56
  216. package/components/tooltip/tooltip.js +190 -146
  217. package/components/user-agreement/service.js +371 -228
  218. package/components/user-agreement/toolbox.eula.js +1 -160
  219. package/components/user-agreement/user-agreement.js +120 -85
  220. package/components/user-card/card.js +29 -0
  221. package/components/user-card/smart-user-card-tooltip.js +111 -51
  222. package/components/user-card/tooltip.js +84 -47
  223. package/components/user-card/user-card.js +29 -0
  224. package/package.json +1 -1
@@ -1,4 +1,5 @@
1
- import { _ as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { _ as _defineProperty, a as _inherits, b as _createClass, c as _objectWithoutProperties, e as _extends, f as _classCallCheck, g as _callSuper, h as _asyncToGenerator, i as _regeneratorRuntime } from '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import 'core-js/modules/es.array.concat.js';
2
3
  import React, { PureComponent } from 'react';
3
4
  import PropTypes from 'prop-types';
4
5
  import '../auth/auth.js';
@@ -6,11 +7,21 @@ import alertService from '../alert-service/alert-service.js';
6
7
  import Profile from './profile.js';
7
8
  import Auth, { USER_CHANGED_EVENT, LOGOUT_POSTPONED_EVENT, USER_CHANGE_POSTPONED_EVENT } from '../auth/auth__core.js';
8
9
  import '../auth/window-flow.js';
10
+ import 'core-js/modules/es.object.to-string.js';
11
+ import 'core-js/modules/es.promise.js';
9
12
  import '../auth/response-parser.js';
13
+ import 'core-js/modules/es.array.index-of.js';
14
+ import 'core-js/modules/es.regexp.exec.js';
15
+ import 'core-js/modules/es.regexp.to-string.js';
16
+ import 'core-js/modules/es.string.replace.js';
17
+ import 'core-js/modules/web.dom-collections.for-each.js';
10
18
  import 'es6-error';
11
19
  import '../global/url.js';
20
+ import 'core-js/modules/es.string.match.js';
12
21
  import '../auth/down-notification.js';
22
+ import 'core-js/modules/es.array.filter.js';
13
23
  import '../alert/alert.js';
24
+ import 'core-js/modules/es.object.values.js';
14
25
  import 'classnames';
15
26
  import '@jetbrains/icons/exception';
16
27
  import '@jetbrains/icons/checkmark';
@@ -20,10 +31,20 @@ import '../icon/icon.js';
20
31
  import 'util-deprecate';
21
32
  import '../icon/icon__constants.js';
22
33
  import '../_helpers/icon__svg.js';
34
+ import 'core-js/modules/es.string.starts-with.js';
23
35
  import '../global/memoize.js';
36
+ import 'core-js/modules/es.array.iterator.js';
37
+ import 'core-js/modules/es.map.js';
38
+ import 'core-js/modules/es.weak-map.js';
39
+ import 'core-js/modules/web.dom-collections.iterator.js';
24
40
  import '../loader-inline/loader-inline.js';
25
41
  import '../global/data-tests.js';
42
+ import 'core-js/modules/es.array.reduce.js';
43
+ import 'core-js/modules/es.object.entries.js';
26
44
  import '../global/dom.js';
45
+ import 'core-js/modules/es.object.assign.js';
46
+ import 'core-js/modules/es.set.js';
47
+ import 'core-js/modules/es.string.split.js';
27
48
  import '../button/button.js';
28
49
  import '@jetbrains/icons/chevron-10px';
29
50
  import '../link/clickableLink.js';
@@ -36,20 +57,32 @@ import '../popup/popup.js';
36
57
  import '../global/get-uid.js';
37
58
  import '../global/schedule-raf.js';
38
59
  import '../shortcuts/shortcuts.js';
60
+ import 'core-js/modules/es.array.map.js';
39
61
  import '../shortcuts/core.js';
62
+ import 'core-js/modules/es.array.find-index.js';
63
+ import 'core-js/modules/es.array.includes.js';
64
+ import 'core-js/modules/es.array.slice.js';
65
+ import 'core-js/modules/es.array.splice.js';
66
+ import 'core-js/modules/es.string.includes.js';
40
67
  import 'combokeys';
41
68
  import '../global/sniffer.js';
42
69
  import 'sniffr';
43
70
  import '../tab-trap/tab-trap.js';
44
71
  import '../popup/position.js';
72
+ import 'core-js/modules/es.array.sort.js';
45
73
  import '../popup/popup.consts.js';
46
74
  import '../alert/container.js';
47
75
  import '../link/link.js';
48
76
  import '../_helpers/link.js';
49
77
  import '../group/group.js';
50
78
  import 'react-dom/client';
79
+ import 'core-js/modules/es.string.search.js';
80
+ import 'core-js/modules/web.url.js';
81
+ import 'core-js/modules/web.url.to-json.js';
82
+ import 'core-js/modules/web.url-search-params.js';
51
83
  import '../global/listeners.js';
52
84
  import '../http/http.js';
85
+ import 'core-js/modules/es.reflect.delete-property.js';
53
86
  import '../global/promise-with-timeout.js';
54
87
  import '../i18n/i18n.js';
55
88
  import '../auth/storage.js';
@@ -63,8 +96,12 @@ import '../auth/background-flow.js';
63
96
  import '../auth/token-validator.js';
64
97
  import '../avatar/avatar.js';
65
98
  import '../avatar/fallback-avatar.js';
99
+ import 'core-js/modules/es.array.from.js';
66
100
  import '../dropdown-menu/dropdown-menu.js';
67
101
  import '../list/list.js';
102
+ import 'core-js/modules/es.symbol.js';
103
+ import 'core-js/modules/es.symbol.description.js';
104
+ import 'core-js/modules/es.array.find.js';
68
105
  import 'react-virtualized/dist/es/List';
69
106
  import 'react-virtualized/dist/es/AutoSizer';
70
107
  import 'react-virtualized/dist/es/WindowScroller';
@@ -92,119 +129,174 @@ import '../popup-menu/popup-menu.js';
92
129
  import '../i18n/i18n-context.js';
93
130
  import '../_helpers/header.js';
94
131
 
95
- const CERTIFICATE_MISMATCH_HEADER = 'x-client-certificate-token-mismatch';
96
- class SmartProfile extends PureComponent {
97
- static propTypes = {
98
- auth: PropTypes.instanceOf(Auth).isRequired,
99
- className: PropTypes.string,
100
- translations: PropTypes.object,
101
- profileUrl: PropTypes.string,
102
- size: Profile.propTypes.size,
103
- round: Profile.propTypes.round
104
- };
105
- state = {
106
- user: null,
107
- size: Profile.defaultProps.size,
108
- isLogoutPostponed: false,
109
- isUserChangePostponed: false
110
- };
111
- componentDidMount() {
112
- this.requestUser();
113
- }
114
- static Size = Profile.Size;
115
- login = async () => {
116
- this.setState({
117
- loading: true
118
- });
119
- try {
120
- await this.props.auth.login();
121
- } catch (err) {
122
- // do nothing
123
- } finally {
124
- this.setState({
125
- loading: false
126
- });
127
- }
128
- };
129
- logout = () => this.props.auth.logout();
130
- switchUser = () => this.props.auth.switchUser();
131
- onRevertPostponement = () => {
132
- if (this.state.isLogoutPostponed) {
133
- this.props.auth.login();
132
+ var _excluded = ["auth", "profileUrl"];
133
+ var CERTIFICATE_MISMATCH_HEADER = 'x-client-certificate-token-mismatch';
134
+ var SmartProfile = /*#__PURE__*/function (_PureComponent) {
135
+ function SmartProfile() {
136
+ var _this;
137
+ _classCallCheck(this, SmartProfile);
138
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
139
+ args[_key] = arguments[_key];
134
140
  }
135
- if (this.state.isUserChangePostponed) {
136
- this.props.auth.updateUser();
141
+ _this = _callSuper(this, SmartProfile, [].concat(args));
142
+ _defineProperty(_this, "state", {
143
+ user: null,
144
+ size: Profile.defaultProps.size,
145
+ isLogoutPostponed: false,
146
+ isUserChangePostponed: false
147
+ });
148
+ _defineProperty(_this, "login", /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
149
+ return _regeneratorRuntime().wrap(function _callee$(_context) {
150
+ while (1) switch (_context.prev = _context.next) {
151
+ case 0:
152
+ _this.setState({
153
+ loading: true
154
+ });
155
+ _context.prev = 1;
156
+ _context.next = 4;
157
+ return _this.props.auth.login();
158
+ case 4:
159
+ _context.next = 8;
160
+ break;
161
+ case 6:
162
+ _context.prev = 6;
163
+ _context.t0 = _context["catch"](1);
164
+ case 8:
165
+ _context.prev = 8;
166
+ _this.setState({
167
+ loading: false
168
+ });
169
+ return _context.finish(8);
170
+ case 11:
171
+ case "end":
172
+ return _context.stop();
173
+ }
174
+ }, _callee, null, [[1, 6, 8, 11]]);
175
+ })));
176
+ _defineProperty(_this, "logout", function () {
177
+ return _this.props.auth.logout();
178
+ });
179
+ _defineProperty(_this, "switchUser", function () {
180
+ return _this.props.auth.switchUser();
181
+ });
182
+ _defineProperty(_this, "onRevertPostponement", function () {
183
+ if (_this.state.isLogoutPostponed) {
184
+ _this.props.auth.login();
185
+ }
186
+ if (_this.state.isUserChangePostponed) {
187
+ _this.props.auth.updateUser();
188
+ }
189
+ });
190
+ return _this;
191
+ }
192
+ _inherits(SmartProfile, _PureComponent);
193
+ return _createClass(SmartProfile, [{
194
+ key: "componentDidMount",
195
+ value: function componentDidMount() {
196
+ this.requestUser();
137
197
  }
138
- };
139
- async requestUser() {
140
- try {
141
- const {
142
- auth
143
- } = this.props;
144
- const user = await auth.requestUser();
145
- this.checkUserCertificateMismatch(user);
146
- this.setState({
147
- user
148
- });
149
- auth.addListener(USER_CHANGED_EVENT, newUser => {
150
- this.setState({
151
- user: newUser,
152
- isLogoutPostponed: false,
153
- isUserChangePostponed: false
154
- });
155
- });
156
- auth.addListener(LOGOUT_POSTPONED_EVENT, () => {
157
- this.setState({
158
- isLogoutPostponed: true
159
- });
160
- });
161
- auth.addListener(USER_CHANGE_POSTPONED_EVENT, () => {
162
- this.setState({
163
- isUserChangePostponed: true
164
- });
165
- });
166
- } catch (e) {
167
- // noop
198
+ }, {
199
+ key: "requestUser",
200
+ value: function () {
201
+ var _requestUser = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
202
+ var _this2 = this;
203
+ var auth, user;
204
+ return _regeneratorRuntime().wrap(function _callee2$(_context2) {
205
+ while (1) switch (_context2.prev = _context2.next) {
206
+ case 0:
207
+ _context2.prev = 0;
208
+ auth = this.props.auth;
209
+ _context2.next = 4;
210
+ return auth.requestUser();
211
+ case 4:
212
+ user = _context2.sent;
213
+ this.checkUserCertificateMismatch(user);
214
+ this.setState({
215
+ user
216
+ });
217
+ auth.addListener(USER_CHANGED_EVENT, function (newUser) {
218
+ _this2.setState({
219
+ user: newUser,
220
+ isLogoutPostponed: false,
221
+ isUserChangePostponed: false
222
+ });
223
+ });
224
+ auth.addListener(LOGOUT_POSTPONED_EVENT, function () {
225
+ _this2.setState({
226
+ isLogoutPostponed: true
227
+ });
228
+ });
229
+ auth.addListener(USER_CHANGE_POSTPONED_EVENT, function () {
230
+ _this2.setState({
231
+ isUserChangePostponed: true
232
+ });
233
+ });
234
+ _context2.next = 14;
235
+ break;
236
+ case 12:
237
+ _context2.prev = 12;
238
+ _context2.t0 = _context2["catch"](0);
239
+ case 14:
240
+ case "end":
241
+ return _context2.stop();
242
+ }
243
+ }, _callee2, this, [[0, 12]]);
244
+ }));
245
+ function requestUser() {
246
+ return _requestUser.apply(this, arguments);
247
+ }
248
+ return requestUser;
249
+ }()
250
+ }, {
251
+ key: "checkUserCertificateMismatch",
252
+ value: function checkUserCertificateMismatch(user) {
253
+ var _userMeta$headers;
254
+ var _this$props = this.props,
255
+ auth = _this$props.auth,
256
+ translations = _this$props.translations;
257
+ var userMeta = auth.http.getMetaForResponse(user);
258
+ if (userMeta !== null && userMeta !== void 0 && (_userMeta$headers = userMeta.headers) !== null && _userMeta$headers !== void 0 && _userMeta$headers.has(CERTIFICATE_MISMATCH_HEADER)) {
259
+ var message = (translations === null || translations === void 0 ? void 0 : translations.certificateMismatch) || "You are authenticated as ".concat(user.login || user.name, ". To authenticate with the client certificate for your account, log out, then click the \"Log in with certificate\" option on the login page.");
260
+ alertService.warning(message, 0);
261
+ }
168
262
  }
169
- }
170
- checkUserCertificateMismatch(user) {
171
- const {
172
- auth,
173
- translations
174
- } = this.props;
175
- const userMeta = auth.http.getMetaForResponse(user);
176
- if (userMeta?.headers?.has(CERTIFICATE_MISMATCH_HEADER)) {
177
- const message = translations?.certificateMismatch || `You are authenticated as ${user.login || user.name}. To authenticate with the client certificate for your account, log out, then click the "Log in with certificate" option on the login page.`;
178
- alertService.warning(message, 0);
263
+ }, {
264
+ key: "render",
265
+ value: function render() {
266
+ var _this$state = this.state,
267
+ user = _this$state.user,
268
+ loading = _this$state.loading,
269
+ isLogoutPostponed = _this$state.isLogoutPostponed,
270
+ isUserChangePostponed = _this$state.isUserChangePostponed;
271
+ var _this$props2 = this.props,
272
+ auth = _this$props2.auth,
273
+ profileUrl = _this$props2.profileUrl,
274
+ props = _objectWithoutProperties(_this$props2, _excluded);
275
+ var url = profileUrl || (user ? "".concat(auth.config.serverUri, "users/").concat(user.id) : '');
276
+ return /*#__PURE__*/React.createElement(Profile, _extends({
277
+ onLogin: this.login,
278
+ onLogout: this.logout,
279
+ onSwitchUser: this.switchUser,
280
+ loading: loading,
281
+ user: user,
282
+ profileUrl: url,
283
+ showApplyChangedUser: isUserChangePostponed,
284
+ showLogIn: isLogoutPostponed,
285
+ showLogOut: !isLogoutPostponed,
286
+ showSwitchUser: auth._canShowDialogs() && !isLogoutPostponed && !isUserChangePostponed,
287
+ onRevertPostponement: this.onRevertPostponement
288
+ }, props));
179
289
  }
180
- }
181
- render() {
182
- const {
183
- user,
184
- loading,
185
- isLogoutPostponed,
186
- isUserChangePostponed
187
- } = this.state;
188
- const {
189
- auth,
190
- profileUrl,
191
- ...props
192
- } = this.props;
193
- const url = profileUrl || (user ? `${auth.config.serverUri}users/${user.id}` : '');
194
- return /*#__PURE__*/React.createElement(Profile, _extends({
195
- onLogin: this.login,
196
- onLogout: this.logout,
197
- onSwitchUser: this.switchUser,
198
- loading: loading,
199
- user: user,
200
- profileUrl: url,
201
- showApplyChangedUser: isUserChangePostponed,
202
- showLogIn: isLogoutPostponed,
203
- showLogOut: !isLogoutPostponed,
204
- showSwitchUser: auth._canShowDialogs() && !isLogoutPostponed && !isUserChangePostponed,
205
- onRevertPostponement: this.onRevertPostponement
206
- }, props));
207
- }
208
- }
290
+ }]);
291
+ }(PureComponent);
292
+ _defineProperty(SmartProfile, "propTypes", {
293
+ auth: PropTypes.instanceOf(Auth).isRequired,
294
+ className: PropTypes.string,
295
+ translations: PropTypes.object,
296
+ profileUrl: PropTypes.string,
297
+ size: Profile.propTypes.size,
298
+ round: Profile.propTypes.round
299
+ });
300
+ _defineProperty(SmartProfile, "Size", Profile.Size);
209
301
 
210
302
  export { SmartProfile as default };
@@ -1,4 +1,5 @@
1
- import { _ as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
1
+ import { _ as _defineProperty, a as _inherits, b as _createClass, c as _objectWithoutProperties, e as _extends, f as _classCallCheck, g as _callSuper } from '../_helpers/_rollupPluginBabelHelpers.js';
2
+ import 'core-js/modules/es.array.concat.js';
2
3
  import React, { Component } from 'react';
3
4
  import PropTypes from 'prop-types';
4
5
  import '../auth/auth.js';
@@ -6,14 +7,25 @@ import HTTP from '../http/http.js';
6
7
  import Services from './services.js';
7
8
  import Auth from '../auth/auth__core.js';
8
9
  import '../auth/window-flow.js';
10
+ import 'core-js/modules/es.object.to-string.js';
11
+ import 'core-js/modules/es.promise.js';
9
12
  import '../auth/response-parser.js';
13
+ import 'core-js/modules/es.array.index-of.js';
14
+ import 'core-js/modules/es.regexp.exec.js';
15
+ import 'core-js/modules/es.regexp.to-string.js';
16
+ import 'core-js/modules/es.string.replace.js';
17
+ import 'core-js/modules/web.dom-collections.for-each.js';
10
18
  import 'es6-error';
11
19
  import '../global/url.js';
20
+ import 'core-js/modules/es.string.match.js';
12
21
  import '../auth/down-notification.js';
22
+ import 'core-js/modules/es.array.filter.js';
13
23
  import '../alert-service/alert-service.js';
24
+ import 'core-js/modules/es.array.map.js';
14
25
  import 'react-dom/client';
15
26
  import '../global/get-uid.js';
16
27
  import '../alert/alert.js';
28
+ import 'core-js/modules/es.object.values.js';
17
29
  import 'classnames';
18
30
  import '@jetbrains/icons/exception';
19
31
  import '@jetbrains/icons/checkmark';
@@ -23,10 +35,20 @@ import '../icon/icon.js';
23
35
  import 'util-deprecate';
24
36
  import '../icon/icon__constants.js';
25
37
  import '../_helpers/icon__svg.js';
38
+ import 'core-js/modules/es.string.starts-with.js';
26
39
  import '../global/memoize.js';
40
+ import 'core-js/modules/es.array.iterator.js';
41
+ import 'core-js/modules/es.map.js';
42
+ import 'core-js/modules/es.weak-map.js';
43
+ import 'core-js/modules/web.dom-collections.iterator.js';
27
44
  import '../loader-inline/loader-inline.js';
28
45
  import '../global/data-tests.js';
46
+ import 'core-js/modules/es.array.reduce.js';
47
+ import 'core-js/modules/es.object.entries.js';
29
48
  import '../global/dom.js';
49
+ import 'core-js/modules/es.object.assign.js';
50
+ import 'core-js/modules/es.set.js';
51
+ import 'core-js/modules/es.string.split.js';
30
52
  import '../button/button.js';
31
53
  import '@jetbrains/icons/chevron-10px';
32
54
  import '../link/clickableLink.js';
@@ -39,16 +61,23 @@ import '../popup/popup.js';
39
61
  import '../global/schedule-raf.js';
40
62
  import '../shortcuts/shortcuts.js';
41
63
  import '../shortcuts/core.js';
64
+ import 'core-js/modules/es.array.find-index.js';
65
+ import 'core-js/modules/es.array.includes.js';
66
+ import 'core-js/modules/es.array.slice.js';
67
+ import 'core-js/modules/es.array.splice.js';
68
+ import 'core-js/modules/es.string.includes.js';
42
69
  import 'combokeys';
43
70
  import '../global/sniffer.js';
44
71
  import 'sniffr';
45
72
  import '../tab-trap/tab-trap.js';
46
73
  import '../popup/position.js';
74
+ import 'core-js/modules/es.array.sort.js';
47
75
  import '../popup/popup.consts.js';
48
76
  import '../alert/container.js';
49
77
  import '../link/link.js';
50
78
  import '../_helpers/link.js';
51
79
  import '../group/group.js';
80
+ import 'core-js/modules/es.reflect.delete-property.js';
52
81
  import '@jetbrains/icons/services-20px';
53
82
  import '../dropdown/dropdown.js';
54
83
  import '../global/typescript-utils.js';
@@ -56,6 +85,10 @@ import '../_helpers/anchor.js';
56
85
  import './tray-icon.js';
57
86
  import '../_helpers/header.js';
58
87
  import '../_helpers/services-link.js';
88
+ import 'core-js/modules/es.string.search.js';
89
+ import 'core-js/modules/web.url.js';
90
+ import 'core-js/modules/web.url.to-json.js';
91
+ import 'core-js/modules/web.url-search-params.js';
59
92
  import '../global/listeners.js';
60
93
  import '../global/promise-with-timeout.js';
61
94
  import '../i18n/i18n.js';
@@ -69,72 +102,90 @@ import 'simply-uuid';
69
102
  import '../auth/background-flow.js';
70
103
  import '../auth/token-validator.js';
71
104
 
105
+ var _excluded = ["auth"];
72
106
  function noop() {}
73
- class SmartServices extends Component {
74
- static propTypes = {
75
- auth: PropTypes.instanceOf(Auth).isRequired
76
- };
77
- state = {
78
- visible: true,
79
- loading: false,
80
- services: null
81
- };
82
- componentDidMount() {
83
- const {
84
- auth
85
- } = this.props;
86
- this.http = new HTTP(auth, auth.getAPIPath());
87
- this.getServices(SmartServices.countFields)?.then(services => {
88
- if (!services.length) {
89
- this.setState({
90
- visible: false
91
- });
92
- }
93
- }).catch(noop);
94
- }
95
- static allFields = 'id,name,applicationName,homeUrl,iconUrl';
96
- static countFields = 'key';
97
- http;
98
- stopLoading = () => {
99
- this.setState({
100
- loading: false
107
+ var SmartServices = /*#__PURE__*/function (_Component) {
108
+ function SmartServices() {
109
+ var _this;
110
+ _classCallCheck(this, SmartServices);
111
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
112
+ args[_key] = arguments[_key];
113
+ }
114
+ _this = _callSuper(this, SmartServices, [].concat(args));
115
+ _defineProperty(_this, "state", {
116
+ visible: true,
117
+ loading: false,
118
+ services: null
101
119
  });
102
- };
103
- getServicesContent = () => {
104
- this.setState({
105
- loading: true
120
+ _defineProperty(_this, "http", void 0);
121
+ _defineProperty(_this, "stopLoading", function () {
122
+ _this.setState({
123
+ loading: false
124
+ });
106
125
  });
107
- this.getServices(SmartServices.allFields)?.then(services => {
108
- this.setState({
109
- services
126
+ _defineProperty(_this, "getServicesContent", function () {
127
+ var _this$getServices;
128
+ _this.setState({
129
+ loading: true
110
130
  });
111
- this.stopLoading();
112
- }).catch(this.stopLoading);
113
- };
114
- getServices(fields) {
115
- return this.http?.get(`services/header?fields=${fields}`);
131
+ (_this$getServices = _this.getServices(SmartServices.allFields)) === null || _this$getServices === void 0 || _this$getServices.then(function (services) {
132
+ _this.setState({
133
+ services
134
+ });
135
+ _this.stopLoading();
136
+ }).catch(_this.stopLoading);
137
+ });
138
+ return _this;
116
139
  }
117
- render() {
118
- const {
119
- services,
120
- visible,
121
- loading
122
- } = this.state;
123
- const {
124
- auth,
125
- ...props
126
- } = this.props;
127
- if (!visible) {
128
- return null;
140
+ _inherits(SmartServices, _Component);
141
+ return _createClass(SmartServices, [{
142
+ key: "componentDidMount",
143
+ value: function componentDidMount() {
144
+ var _this$getServices2,
145
+ _this2 = this;
146
+ var auth = this.props.auth;
147
+ this.http = new HTTP(auth, auth.getAPIPath());
148
+ (_this$getServices2 = this.getServices(SmartServices.countFields)) === null || _this$getServices2 === void 0 || _this$getServices2.then(function (services) {
149
+ if (!services.length) {
150
+ _this2.setState({
151
+ visible: false
152
+ });
153
+ }
154
+ }).catch(noop);
129
155
  }
130
- return /*#__PURE__*/React.createElement(Services, _extends({}, props, {
131
- clientId: auth.config.clientId,
132
- initShown: true,
133
- loading: loading,
134
- onClick: this.getServicesContent,
135
- services: services
136
- }));
137
- }
138
- }
156
+ }, {
157
+ key: "getServices",
158
+ value: function getServices(fields) {
159
+ var _this$http;
160
+ return (_this$http = this.http) === null || _this$http === void 0 ? void 0 : _this$http.get("services/header?fields=".concat(fields));
161
+ }
162
+ }, {
163
+ key: "render",
164
+ value: function render() {
165
+ var _this$state = this.state,
166
+ services = _this$state.services,
167
+ visible = _this$state.visible,
168
+ loading = _this$state.loading;
169
+ var _this$props = this.props,
170
+ auth = _this$props.auth,
171
+ props = _objectWithoutProperties(_this$props, _excluded);
172
+ if (!visible) {
173
+ return null;
174
+ }
175
+ return /*#__PURE__*/React.createElement(Services, _extends({}, props, {
176
+ clientId: auth.config.clientId,
177
+ initShown: true,
178
+ loading: loading,
179
+ onClick: this.getServicesContent,
180
+ services: services
181
+ }));
182
+ }
183
+ }]);
184
+ }(Component);
185
+ _defineProperty(SmartServices, "propTypes", {
186
+ auth: PropTypes.instanceOf(Auth).isRequired
187
+ });
188
+ _defineProperty(SmartServices, "allFields", 'id,name,applicationName,homeUrl,iconUrl');
189
+ _defineProperty(SmartServices, "countFields", 'key');
139
190
 
140
191
  export { SmartServices as default };