@decisiv/ui-components 2.0.1-alpha.212 → 2.0.1-alpha.213

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Combobox/index.tsx"],"names":[],"mappings":"AASA,OAAc,EAGZ,sBAAsB,EAQvB,MAAM,OAAO,CAAC;AA2Bf,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAQ,MAAM,SAAS,CAAC;AAskBhE,QAAA,MAAM,eAAe,EAAE,sBAAsB,CAC3C,gBAAgB,EAChB,aAAa,CACS,CAAC;AAOzB,eAAe,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Combobox/index.tsx"],"names":[],"mappings":"AASA,OAAc,EAGZ,sBAAsB,EAQvB,MAAM,OAAO,CAAC;AA2Bf,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAQ,MAAM,SAAS,CAAC;AA4mBhE,QAAA,MAAM,eAAe,EAAE,sBAAsB,CAC3C,gBAAgB,EAChB,aAAa,CACS,CAAC;AAOzB,eAAe,eAAe,CAAC"}
@@ -125,7 +125,8 @@ function Combobox(props, ref) {
125
125
  zIndex = props.zIndex,
126
126
  containerSelector = props.containerSelector,
127
127
  pointerEvents = props.pointerEvents,
128
- externalIsPopoverVisible = props.isPopoverVisible;
128
+ externalIsPopoverVisible = props.isPopoverVisible,
129
+ externalListRef = props.listRef;
129
130
 
130
131
  var _useCombobox = (0, _useCombobox2.default)(props),
131
132
  getInputFieldProps = _useCombobox.getInputFieldProps,
@@ -136,7 +137,8 @@ function Combobox(props, ref) {
136
137
  var fallbackComboboxRef = (0, _react.useRef)(null);
137
138
  var finalComboboxRef = ref || fallbackComboboxRef;
138
139
  var inputId = (0, _useUniqueId.default)(id, 'combobox-');
139
- var listRef = (0, _react.useRef)(null);
140
+ var fallbackListRef = (0, _react.useRef)(null);
141
+ var listRef = externalListRef || fallbackListRef;
140
142
 
141
143
  var _useBreakpointObserve = (0, _breakpointObserver.useBreakpointObserver)(),
142
144
  _useBreakpointObserve2 = _slicedToArray(_useBreakpointObserve, 2),
@@ -241,13 +243,49 @@ function Combobox(props, ref) {
241
243
  */
242
244
 
243
245
 
244
- var updateSelected = (0, _react.useCallback)(function (selectedId) {
246
+ var updateSelected = (0, _react.useCallback)(function (selectedIds) {
247
+ // When using a controlled multiple variation, we want to also have access to the
248
+ // removed id values.
249
+ if (multiple && onChangeValue && Array.isArray(selectedIds) && selectedValues) {
250
+ var isRemoving = selectedIds.length < selectedValues.length;
251
+
252
+ if (isRemoving && selectedValues.length > 0) {
253
+ var removedValue = selectedValues.find(function (_ref2) {
254
+ var optionId = _ref2.id;
255
+ return !selectedIds.includes(optionId);
256
+ });
257
+
258
+ if (removedValue && removedValue.id !== undefined) {
259
+ var filteredValues = selectedValues.filter(function (_ref3) {
260
+ var optionId = _ref3.id;
261
+ return optionId !== removedValue.id;
262
+ });
263
+ setSelectedValues(filteredValues);
264
+ onChangeValue(removedValue.id, {
265
+ removed: true
266
+ });
267
+ return;
268
+ }
269
+ }
270
+ }
271
+
272
+ var getSelectedId = function getSelectedId(ids) {
273
+ var isMultiple = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
274
+
275
+ if (Array.isArray(ids)) {
276
+ return isMultiple ? (0, _last.default)(ids) : ids[0];
277
+ }
278
+
279
+ return ids;
280
+ };
281
+
282
+ var selectedId = getSelectedId(selectedIds, multiple);
245
283
  setSelectedValue(selectedId);
246
284
  var newSelected = (0, _utils.getOptionFromOptions)(options, selectedId) || null;
247
285
 
248
286
  if (multiple) {
249
- var index = selectedValues && selectedValues.findIndex(function (_ref2) {
250
- var itemId = _ref2.id;
287
+ var index = selectedValues && selectedValues.findIndex(function (_ref4) {
288
+ var itemId = _ref4.id;
251
289
  return itemId === selectedId;
252
290
  });
253
291
 
@@ -274,8 +312,8 @@ function Combobox(props, ref) {
274
312
  }
275
313
  }, [multiple, onChangeValue, options, selectedValues, setInternalInputValue, setSelectedValue, setSelectedValues, setActiveId]);
276
314
  var removeSelected = (0, _react.useCallback)(function (selectedId) {
277
- var newSelectedValues = selectedValues && selectedValues.filter(function (_ref3) {
278
- var optionId = _ref3.id;
315
+ var newSelectedValues = selectedValues && selectedValues.filter(function (_ref5) {
316
+ var optionId = _ref5.id;
279
317
  return selectedId !== optionId;
280
318
  });
281
319
  setSelectedValues(newSelectedValues);
@@ -314,16 +352,12 @@ function Combobox(props, ref) {
314
352
  /**
315
353
  * This handler is called by the dropdown's "onChange" event. That handler is called with
316
354
  * an array of values, but we only allow single select in the Combobox.
355
+ * This is being managed in the `updatedSelected` function.
317
356
  */
318
357
 
319
358
  var handleChangeDropdownListValue = (0, _react.useCallback)(function (selectedIds) {
320
- if (multiple) {
321
- updateSelected((0, _last.default)(selectedIds));
322
- return;
323
- }
324
-
325
- updateSelected(selectedIds[0]);
326
- }, [updateSelected, multiple]);
359
+ updateSelected(selectedIds);
360
+ }, [updateSelected]);
327
361
  /**
328
362
  * Clicking anywhere within the Combobox component (except the clear button) should open
329
363
  * the dropdown list. There is some complex logic here because of the <input> rendered inside
@@ -392,8 +426,8 @@ function Combobox(props, ref) {
392
426
  if (!isPopoverVisible) {
393
427
  updateIsPopoverVisible(true);
394
428
  } else {
395
- var currentIndex = (0, _findIndex.default)(flatOptions, function (_ref4) {
396
- var optionId = _ref4.id;
429
+ var currentIndex = (0, _findIndex.default)(flatOptions, function (_ref6) {
430
+ var optionId = _ref6.id;
397
431
  return optionId === activeId;
398
432
  });
399
433
 
@@ -505,18 +539,18 @@ function Combobox(props, ref) {
505
539
  onClick: handleContainerClick,
506
540
  onKeyDown: handleContainerKeyDown,
507
541
  ref: finalComboboxRef
508
- }), function (_ref5) {
509
- var ariaLabelledBy = _ref5['aria-labelledby'],
510
- disabled = _ref5.disabled,
511
- targetId = _ref5.id,
512
- onBlurTarget = _ref5.onBlur,
513
- onChangeTargetValue = _ref5.onChange,
514
- onFocusTarget = _ref5.onFocus,
515
- readOnly = _ref5.readOnly,
516
- targetRef = _ref5.ref,
517
- value = _ref5.value,
518
- autoComplete = _ref5.autoComplete,
519
- type = _ref5.type;
542
+ }), function (_ref7) {
543
+ var ariaLabelledBy = _ref7['aria-labelledby'],
544
+ disabled = _ref7.disabled,
545
+ targetId = _ref7.id,
546
+ onBlurTarget = _ref7.onBlur,
547
+ onChangeTargetValue = _ref7.onChange,
548
+ onFocusTarget = _ref7.onFocus,
549
+ readOnly = _ref7.readOnly,
550
+ targetRef = _ref7.ref,
551
+ value = _ref7.value,
552
+ autoComplete = _ref7.autoComplete,
553
+ type = _ref7.type;
520
554
  var dropdownListId = "".concat(targetId, "-dropdown-list");
521
555
  return _react.default.createElement(_react.default.Fragment, null, _react.default.createElement(_Target.default, {
522
556
  "aria-haspopup": "listbox",
@@ -1031,12 +1031,12 @@ describe('Combobox', function () {
1031
1031
  })));
1032
1032
  describe('when in multiple select mode', function () {
1033
1033
  describe('when a value is selected', function () {
1034
- describe('when the "X" button is clicked to deselect a value', function () {
1035
- it('calls the onChangeValue prop with removed: true', function () {
1034
+ describe('clicking the same value again', function () {
1035
+ it('calls the onChangeValue prop with the expected values', function () {
1036
1036
  var onChangeValue = jest.fn();
1037
1037
 
1038
1038
  var _render33 = render(_react.default.createElement(_.default, {
1039
- label: "test",
1039
+ label: "test label",
1040
1040
  options: defaultOptions,
1041
1041
  inputValue: "",
1042
1042
  value: [defaultOptions[1]],
@@ -1048,6 +1048,32 @@ describe('Combobox', function () {
1048
1048
 
1049
1049
  expect(queryByText(defaultOptions[1].label)).toBeInTheDocument();
1050
1050
 
1051
+ _react2.fireEvent.click(queryByText('test label'));
1052
+
1053
+ _react2.fireEvent.click(queryByLabelText(defaultOptions[1].label));
1054
+
1055
+ expect(onChangeValue).toHaveBeenCalledWith(defaultOptions[1].id, expect.objectContaining({
1056
+ removed: true
1057
+ }));
1058
+ });
1059
+ });
1060
+ describe('when the "X" button is clicked to deselect a value', function () {
1061
+ it('calls the onChangeValue prop with removed: true', function () {
1062
+ var onChangeValue = jest.fn();
1063
+
1064
+ var _render34 = render(_react.default.createElement(_.default, {
1065
+ label: "test",
1066
+ options: defaultOptions,
1067
+ inputValue: "",
1068
+ value: [defaultOptions[1]],
1069
+ onChangeValue: onChangeValue,
1070
+ multiple: true
1071
+ })),
1072
+ queryByText = _render34.queryByText,
1073
+ queryByLabelText = _render34.queryByLabelText;
1074
+
1075
+ expect(queryByText(defaultOptions[1].label)).toBeInTheDocument();
1076
+
1051
1077
  _react2.fireEvent.click(queryByLabelText('Delete'));
1052
1078
 
1053
1079
  expect(onChangeValue).toHaveBeenCalledWith(defaultOptions[1].id, expect.objectContaining({
@@ -1060,18 +1086,18 @@ describe('Combobox', function () {
1060
1086
  });
1061
1087
  describe('when the isPopoverVisible is true', function () {
1062
1088
  it('opens the popover', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2() {
1063
- var _render34, baseElement;
1089
+ var _render35, baseElement;
1064
1090
 
1065
1091
  return regeneratorRuntime.wrap(function _callee2$(_context2) {
1066
1092
  while (1) {
1067
1093
  switch (_context2.prev = _context2.next) {
1068
1094
  case 0:
1069
- _render34 = render(_react.default.createElement(_.default, {
1095
+ _render35 = render(_react.default.createElement(_.default, {
1070
1096
  label: "test",
1071
1097
  options: defaultOptions,
1072
1098
  hideLabel: true,
1073
1099
  isPopoverVisible: true
1074
- })), baseElement = _render34.baseElement;
1100
+ })), baseElement = _render35.baseElement;
1075
1101
  defaultOptions.forEach(function (_ref6) {
1076
1102
  var label = _ref6.label;
1077
1103
  expect((0, _react2.queryByText)(baseElement, label)).toBeInTheDocument();
@@ -1085,18 +1111,18 @@ describe('Combobox', function () {
1085
1111
  }, _callee2);
1086
1112
  })));
1087
1113
  it('does not automatically close the popover', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee3() {
1088
- var _render35, baseElement, queryByLabelText;
1114
+ var _render36, baseElement, queryByLabelText;
1089
1115
 
1090
1116
  return regeneratorRuntime.wrap(function _callee3$(_context3) {
1091
1117
  while (1) {
1092
1118
  switch (_context3.prev = _context3.next) {
1093
1119
  case 0:
1094
- _render35 = render(_react.default.createElement(_.default, {
1120
+ _render36 = render(_react.default.createElement(_.default, {
1095
1121
  label: "test",
1096
1122
  options: defaultOptions,
1097
1123
  hideLabel: true,
1098
1124
  isPopoverVisible: true
1099
- })), baseElement = _render35.baseElement, queryByLabelText = _render35.queryByLabelText;
1125
+ })), baseElement = _render36.baseElement, queryByLabelText = _render36.queryByLabelText;
1100
1126
 
1101
1127
  _react2.fireEvent.click(queryByLabelText(defaultOptions[0].label));
1102
1128
 
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/components/Combobox/schema.ts"],"names":[],"mappings":"AAOA,QAAA,MAAM,MAAM,KAAwC,CAAC;AAkGrD,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/components/Combobox/schema.ts"],"names":[],"mappings":"AAOA,QAAA,MAAM,MAAM,KAAwC,CAAC;AAsGrD,eAAe,MAAM,CAAC"}
@@ -49,6 +49,9 @@ schema.propTypes = _objectSpread({}, (0, _omit.default)(_InputField.schema.makeP
49
49
  label: _reactDesc.PropTypes.string,
50
50
  value: _reactDesc.PropTypes.string
51
51
  }))]).description('The ID of the option that is selected. If provided, controlling the Select must be handled externally. Overrides `defaultValue`.'),
52
+ listRef: _reactDesc.PropTypes.oneOfType([_reactDesc.PropTypes.func, _reactDesc.PropTypes.shape({
53
+ current: _reactDesc.PropTypes.any
54
+ })]).description('A ref for the list container.'),
52
55
  multiple: _reactDesc.PropTypes.bool.description('Used when multiple selections can be made in the Combobox').defaultValue(false),
53
56
  variant: _reactDesc.PropTypes.oneOf(['async', 'sync']).description('Enables different logic for rendering the dropdown list.').defaultValue('sync'),
54
57
  renderOptionLabel: _reactDesc.PropTypes.func.description('Function to customize render of option labels, called with the item value'),
@@ -1,4 +1,4 @@
1
- import { InputHTMLAttributes, Ref } from 'react';
1
+ import { InputHTMLAttributes, Ref, RefObject } from 'react';
2
2
  import { BaseInputFieldProps } from '../../atoms/InputField';
3
3
  import { ActionHandler } from '../Tag/types';
4
4
  import { PopoverProps } from '../Popover/types';
@@ -16,6 +16,7 @@ export interface ComboboxProps extends Omit<React.InputHTMLAttributes<ComboboxIn
16
16
  isPopoverVisible?: boolean;
17
17
  multiple?: boolean;
18
18
  maxWidth?: string;
19
+ listRef?: RefObject<HTMLUListElement>;
19
20
  loading?: boolean;
20
21
  onBlur?: React.FocusEventHandler;
21
22
  onChangeInputValue?: (event?: React.ChangeEvent) => void;
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Combobox/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Combobox/types.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decisiv/ui-components",
3
- "version": "2.0.1-alpha.212+3de0b1c",
3
+ "version": "2.0.1-alpha.213+efaad97",
4
4
  "description": "Decisiv's design system React components",
5
5
  "author": "Decisiv UI Development Team",
6
6
  "license": "MIT",
@@ -71,5 +71,5 @@
71
71
  "access": "public"
72
72
  },
73
73
  "private": false,
74
- "gitHead": "3de0b1cfa799be6189a6f62a26f850b74a60d051"
74
+ "gitHead": "efaad97908f3df65c4b151668dd96147235f946f"
75
75
  }