Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@filerobot/explorer / lib / components / CollectionsView / CollectionsTree / ActiveCollectionContent.js
Size: Mime:
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 } from 'react-redux';
import { Button, Search } from '@scaleflex/ui/core';
import { ArrowLeftOutline } from '@scaleflex/icons';
import { useDebounce } from '@filerobot/common/lib/hooks';
import { useExplorerI18n } from '../../../hooks';
import { selectActiveCollection, selectActiveCollectionsVirtualFoldersPaths, selectIsActiveVirtualFolderLoading } from '../../../slices/collections.slice';
import CollectionVirtualFoldersTree from '../CollectionVirtualFoldersTree';
import Styled from './CollectionsTree.styled';
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
var ActiveCollectionContent = function ActiveCollectionContent(_ref) {
  var onClickBack = _ref.onClickBack;
  var i18n = useExplorerI18n();
  var activeCollection = useSelector(selectActiveCollection);
  var activeCollectionVirtualFoldersPaths = useSelector(selectActiveCollectionsVirtualFoldersPaths);
  var isActiveCollectionVirtualFoldersLoading = useSelector(selectIsActiveVirtualFolderLoading);
  var _useState = useState(''),
    _useState2 = _slicedToArray(_useState, 2),
    searchTerm = _useState2[0],
    setSearchTerm = _useState2[1];
  var debouncedSearchTerm = useDebounce(searchTerm, 300);
  return /*#__PURE__*/_jsxs(Styled.Container, {
    children: [/*#__PURE__*/_jsxs(Styled.Header, {
      children: [/*#__PURE__*/_jsx(Styled.Title, {
        children: activeCollection === null || activeCollection === void 0 ? void 0 : activeCollection.title
      }), /*#__PURE__*/_jsx(Button, {
        size: "sm",
        color: "link-secondary",
        startIcon: /*#__PURE__*/_jsx(ArrowLeftOutline, {
          size: 14
        }),
        onClick: onClickBack,
        children: i18n('collectionsTreeBackToAllCollectionsButton')
      }), /*#__PURE__*/_jsx(Search, {
        value: searchTerm,
        onChange: function onChange(_ref2) {
          var value = _ref2.target.value;
          return setSearchTerm(value);
        },
        placeholder: i18n('collectionsTreeGroupsSearchPlaceholder'),
        size: "sm",
        fullWidth: true,
        focusOnMount: true,
        disabled: isActiveCollectionVirtualFoldersLoading || !activeCollectionVirtualFoldersPaths.length
      })]
    }), /*#__PURE__*/_jsx(Styled.Content, {
      children: /*#__PURE__*/_jsx(CollectionVirtualFoldersTree, {
        searchTerm: debouncedSearchTerm
      })
    })]
  });
};
export default ActiveCollectionContent;