Repository URL to install this package:
|
Version:
3.12.20 ▾
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
import { useState } from 'react';
import { useSelector, useDispatch } from 'react-redux';
import { Button, Search } from '@scaleflex/ui/core';
import { Plus } from '@scaleflex/icons';
import { useDebounce } from '@filerobot/common/lib/hooks';
import { useExplorer } from '../../../hooks';
import { collectionsDeselected, collectionsSortingUpdated, selectCollectionsSortBy, selectCollectionsSortOrder, selectIsCollectionsLoading, selectTableFilteredSortedCollectionsUuids } from '../../../slices/collections.slice';
import CollectionsList from './CollectionsList';
import Styled from './CollectionsListModal.styled';
import { collectionModalOpened } from '../../../slices/panels.slice';
import Sort from '../../common/Sort';
import { COLLECTIONS_SORT_OPTIONS } from '../../common/Sort/Sort.constants';
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
var CollectionsListModal = function CollectionsListModal() {
var dispatch = useDispatch();
var _useExplorer = useExplorer(),
i18n = _useExplorer.i18n,
showSort = _useExplorer.opts.showSort;
var _useState = useState(''),
_useState2 = _slicedToArray(_useState, 2),
searchVal = _useState2[0],
setSearchVal = _useState2[1];
var debouncedCollectionsSearchTerm = useDebounce(searchVal, 300);
var sortBy = useSelector(selectCollectionsSortBy);
var sortOrder = useSelector(selectCollectionsSortOrder);
var loading = useSelector(selectIsCollectionsLoading);
var filteredSortedCollectionsUuids = useSelector(function (state) {
return selectTableFilteredSortedCollectionsUuids(state, debouncedCollectionsSearchTerm);
});
var handleToggleCreateCollection = function handleToggleCreateCollection() {
dispatch(collectionModalOpened({
show: true
}));
dispatch(collectionsDeselected());
};
var handleChangeSort = function handleChangeSort(sortedBy, order) {
dispatch(collectionsSortingUpdated({
sortBy: sortedBy,
order: order
}));
};
var renderContent = function renderContent() {
return /*#__PURE__*/_jsx(Styled.CollectionsListWrapper, {
children: /*#__PURE__*/_jsx(CollectionsList, {
height: "auto",
filteredSortedCollectionsUuids: filteredSortedCollectionsUuids
})
});
};
return /*#__PURE__*/_jsxs(Styled.CollectionsWrapper, {
inheritHeight: searchVal || filteredSortedCollectionsUuids.length < 10,
children: [/*#__PURE__*/_jsxs(Styled.CollectionsHeaderWrapper, {
children: [/*#__PURE__*/_jsx(Search, {
value: searchVal,
onChange: function onChange(e) {
return setSearchVal(e.target.value);
},
placeholder: i18n('searchContextCollectionsPlaceholder'),
fullWidth: true,
focusOnMount: true
}), /*#__PURE__*/_jsxs(Styled.ActionsWrapper, {
children: [showSort && /*#__PURE__*/_jsx(Sort, {
options: COLLECTIONS_SORT_OPTIONS,
sortBy: sortBy,
sortOrder: sortOrder,
onChange: handleChangeSort
}), /*#__PURE__*/_jsx(Button, {
color: "secondary",
startIcon: function startIcon(props) {
return /*#__PURE__*/_jsx(Plus, _objectSpread({}, props));
},
size: "md",
disabled: loading,
onClick: handleToggleCreateCollection,
children: i18n('collectionModalAddCollectionTitle')
})]
})]
}), renderContent()]
});
};
export default CollectionsListModal;