@redneckz/wildless-cms-uni-blocks 0.14.310 → 0.14.311

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 (55) hide show
  1. package/bundle/bundle.umd.js +10 -8
  2. package/bundle/bundle.umd.min.js +1 -1
  3. package/bundle/components/OfficesAtmsMap/renderFiltrationForm.d.ts +2 -2
  4. package/dist/components/OfficesAtmsMap/Badge.js +1 -1
  5. package/dist/components/OfficesAtmsMap/Badge.js.map +1 -1
  6. package/dist/components/OfficesAtmsMap/OfficesAtmsMapLayout.js +2 -1
  7. package/dist/components/OfficesAtmsMap/OfficesAtmsMapLayout.js.map +1 -1
  8. package/dist/components/OfficesAtmsMap/renderAtmCard.js +1 -1
  9. package/dist/components/OfficesAtmsMap/renderAtmCard.js.map +1 -1
  10. package/dist/components/OfficesAtmsMap/renderFiltrationForm.d.ts +2 -2
  11. package/dist/components/OfficesAtmsMap/renderFiltrationForm.js +5 -4
  12. package/dist/components/OfficesAtmsMap/renderFiltrationForm.js.map +1 -1
  13. package/lib/common.css +1 -1
  14. package/lib/components/OfficesAtmsMap/Badge.js +1 -1
  15. package/lib/components/OfficesAtmsMap/Badge.js.map +1 -1
  16. package/lib/components/OfficesAtmsMap/OfficesAtmsMapLayout.js +2 -1
  17. package/lib/components/OfficesAtmsMap/OfficesAtmsMapLayout.js.map +1 -1
  18. package/lib/components/OfficesAtmsMap/renderAtmCard.js +1 -1
  19. package/lib/components/OfficesAtmsMap/renderAtmCard.js.map +1 -1
  20. package/lib/components/OfficesAtmsMap/renderFiltrationForm.d.ts +2 -2
  21. package/lib/components/OfficesAtmsMap/renderFiltrationForm.js +5 -4
  22. package/lib/components/OfficesAtmsMap/renderFiltrationForm.js.map +1 -1
  23. package/mobile/bundle/bundle.umd.js +10 -8
  24. package/mobile/bundle/bundle.umd.min.js +1 -1
  25. package/mobile/bundle/components/OfficesAtmsMap/renderFiltrationForm.d.ts +2 -2
  26. package/mobile/dist/components/OfficesAtmsMap/Badge.js +1 -1
  27. package/mobile/dist/components/OfficesAtmsMap/Badge.js.map +1 -1
  28. package/mobile/dist/components/OfficesAtmsMap/OfficesAtmsMapLayout.js +2 -1
  29. package/mobile/dist/components/OfficesAtmsMap/OfficesAtmsMapLayout.js.map +1 -1
  30. package/mobile/dist/components/OfficesAtmsMap/renderAtmCard.js +1 -1
  31. package/mobile/dist/components/OfficesAtmsMap/renderAtmCard.js.map +1 -1
  32. package/mobile/dist/components/OfficesAtmsMap/renderFiltrationForm.d.ts +2 -2
  33. package/mobile/dist/components/OfficesAtmsMap/renderFiltrationForm.js +5 -4
  34. package/mobile/dist/components/OfficesAtmsMap/renderFiltrationForm.js.map +1 -1
  35. package/mobile/lib/common.css +1 -1
  36. package/mobile/lib/components/OfficesAtmsMap/Badge.js +1 -1
  37. package/mobile/lib/components/OfficesAtmsMap/Badge.js.map +1 -1
  38. package/mobile/lib/components/OfficesAtmsMap/OfficesAtmsMapLayout.js +2 -1
  39. package/mobile/lib/components/OfficesAtmsMap/OfficesAtmsMapLayout.js.map +1 -1
  40. package/mobile/lib/components/OfficesAtmsMap/renderAtmCard.js +1 -1
  41. package/mobile/lib/components/OfficesAtmsMap/renderAtmCard.js.map +1 -1
  42. package/mobile/lib/components/OfficesAtmsMap/renderFiltrationForm.d.ts +2 -2
  43. package/mobile/lib/components/OfficesAtmsMap/renderFiltrationForm.js +5 -4
  44. package/mobile/lib/components/OfficesAtmsMap/renderFiltrationForm.js.map +1 -1
  45. package/mobile/src/components/OfficesAtmsMap/Badge.tsx +1 -1
  46. package/mobile/src/components/OfficesAtmsMap/OfficesAtmsMap.example.json +26 -6
  47. package/mobile/src/components/OfficesAtmsMap/OfficesAtmsMapLayout.tsx +4 -2
  48. package/mobile/src/components/OfficesAtmsMap/renderAtmCard.tsx +3 -1
  49. package/mobile/src/components/OfficesAtmsMap/renderFiltrationForm.tsx +25 -25
  50. package/package.json +1 -1
  51. package/src/components/OfficesAtmsMap/Badge.tsx +1 -1
  52. package/src/components/OfficesAtmsMap/OfficesAtmsMap.example.json +26 -6
  53. package/src/components/OfficesAtmsMap/OfficesAtmsMapLayout.tsx +4 -2
  54. package/src/components/OfficesAtmsMap/renderAtmCard.tsx +3 -1
  55. package/src/components/OfficesAtmsMap/renderFiltrationForm.tsx +25 -25
@@ -4294,23 +4294,25 @@
4294
4294
  transferringDataToBiometricSystem: 'Передача фото и голоса в Единую биометрическую систему',
4295
4295
  };
4296
4296
  const COMMON_FILTERS_STYLES = 'flex flex-col sm:flex-row sm:flex-wrap gap-3xl pb-2xl';
4297
- const renderFiltrationForm = (filters, { field, reset }, visibleFiltersNum = 3) => {
4297
+ const renderFiltrationForm = (filters, { field, reset }, onlyOffice) => {
4298
+ const visibleFiltersNum = onlyOffice ? 3 : 4;
4298
4299
  const filtersCheckbox = (filters || []).map((key) => (jsx(Checkbox, { text: FILTRATION_LABELS[key], ...field(key) }, key)));
4299
4300
  const [visibleFilters, hiddenFilters] = visibleFiltersNum > 0
4300
4301
  ? [filtersCheckbox.slice(0, visibleFiltersNum), filtersCheckbox.slice(visibleFiltersNum)]
4301
4302
  : [filtersCheckbox, []];
4302
- return (jsx("div", { children: filters?.length ? (jsx("div", { children: hiddenFilters.length > 0 ? (jsx(Foldable, { renderFoldableSection: ({ isUnfolded }) => (jsxs("div", { children: [jsx("div", { className: COMMON_FILTERS_STYLES, children: visibleFilters }), jsx(FoldableSection, { className: COMMON_FILTERS_STYLES, isUnfolded: isUnfolded, children: hiddenFilters })] })), renderFoldButton: renderFoldButton$1(reset) })) : (jsx("div", { className: COMMON_FILTERS_STYLES, children: visibleFilters })) })) : null }));
4303
+ return (jsx("div", { children: filters?.length ? (jsx("div", { children: jsx(Foldable, { renderFoldableSection: ({ isUnfolded }) => (jsxs("div", { children: [jsx("div", { className: COMMON_FILTERS_STYLES, children: visibleFilters }), jsx(FoldableSection, { className: COMMON_FILTERS_STYLES, isUnfolded: isUnfolded, children: hiddenFilters })] })), renderFoldButton: renderFoldButton$1(reset, onlyOffice) }) })) : null }));
4303
4304
  };
4304
- const renderFoldButton$1 = (reset) => ({ isUnfolded, onToggle }) => {
4305
+ const renderFoldButton$1 = (reset, onlyOffice) => ({ isUnfolded, onToggle }) => {
4305
4306
  const labels = ['Больше фильтров', 'Меньше фильтров'];
4306
4307
  const icons = ['ArrowDownIcon', 'ArrowUpIcon'];
4307
- return (jsxs("div", { className: "flex", children: [jsx(LinkButton, { version: "transparent", className: "text-secondary-text [&>*]:p-0 mr-lg", appendRight: jsx(Icon, { name: icons[Number(isUnfolded)], width: "16", height: "16" }), text: labels[Number(isUnfolded)], onClick: onToggle }), jsx(LinkButton, { version: "transparent", className: "text-secondary-text [&>*]:p-0", onClick: reset, text: "\u041E\u0447\u0438\u0441\u0442\u0438\u0442\u044C \u0444\u0438\u043B\u044C\u0442\u0440", appendRight: jsx(Icon, { name: "CloseIcon", width: "16", height: "16" }) })] }));
4308
+ return (jsxs("div", { className: "flex space-x-lg", children: [onlyOffice ? (jsx(LinkButton, { version: "transparent", className: "text-secondary-text [&>*]:p-0", appendRight: jsx(Icon, { name: icons[Number(isUnfolded)], width: "16", height: "16" }), text: labels[Number(isUnfolded)], onClick: onToggle })) : null, jsx(LinkButton, { version: "transparent", className: "text-secondary-text [&>*]:p-0", onClick: reset, text: "\u041E\u0447\u0438\u0441\u0442\u0438\u0442\u044C \u0444\u0438\u043B\u044C\u0442\u0440", appendRight: jsx(Icon, { name: "CloseIcon", width: "16", height: "16" }) })] }));
4308
4309
  };
4309
4310
 
4310
4311
  const defaultEmptyFunction = () => void 0;
4311
4312
  const defaultFilterItems = () => [];
4312
4313
  const filtersVisibleStyles = (activeButton) => activeButton === 'all' ? 'block' : 'hidden';
4313
4314
  const OfficesAtmsMapLayout = JSX(({ className, data = [], renderCard = defaultEmptyFunction, filterItems = defaultFilterItems, getBalloon = defaultEmptyFunction, initFilterState = {}, descriptionData, title, }) => {
4315
+ const onlyOffice = title?.includes('Офис');
4314
4316
  const [filtrationState, { field, reset }] = useForm(initFilterState);
4315
4317
  const [filteredItems, points, lengthItems] = useMemo(() => {
4316
4318
  const _filteredItems = filterItems(data, filtrationState);
@@ -4323,7 +4325,7 @@
4323
4325
  return [_filteredItems, _points, _filteredItems.length];
4324
4326
  }, [data, filtrationState]);
4325
4327
  const [activeButton, setActiveButton] = useState('all');
4326
- return (jsxs("div", { className: style('space-y-1', className), children: [jsxs("div", { className: "bg-white", children: [jsxs("div", { className: "p-6xl pb-0", children: [jsxs("div", { className: "flex flex-col sm:flex-row gap-xs mb-2xl", children: [jsx(Heading, { headingType: "h2", children: title }), lengthItems ? (jsx(Text, { size: "text-h2", color: "text-secondary-text", children: `(${lengthItems})` })) : null] }), descriptionData ? renderDescriptionBlock$1(descriptionData) : null, renderButtonsGroup(data, activeButton, setActiveButton), jsx("div", { className: style('pb-2xl', filtersVisibleStyles(activeButton)), children: renderFiltrationForm(Object.keys(initFilterState), { field, reset }) })] }), jsx("div", { className: "h-[600px]", children: jsx(ClientOnly, { children: jsx(YandexMap, { points: points, className: "h-full" }) }) })] }), filteredItems.map(renderCard)] }));
4328
+ return (jsxs("div", { className: style('space-y-1', className), children: [jsxs("div", { className: "bg-white", children: [jsxs("div", { className: "p-6xl pb-0", children: [jsxs("div", { className: "flex flex-col sm:flex-row gap-xs mb-2xl", children: [jsx(Heading, { headingType: "h2", children: title }), lengthItems ? (jsx(Text, { size: "text-h2", color: "text-secondary-text", children: `(${lengthItems})` })) : null] }), descriptionData ? renderDescriptionBlock$1(descriptionData) : null, onlyOffice && renderButtonsGroup(data, activeButton, setActiveButton), jsx("div", { className: style('pb-2xl', filtersVisibleStyles(activeButton)), children: renderFiltrationForm(Object.keys(initFilterState), { field, reset }, onlyOffice) })] }), jsx("div", { className: "h-[600px]", children: jsx(ClientOnly, { children: jsx(YandexMap, { points: points, className: "h-full" }) }) })] }), filteredItems.map(renderCard)] }));
4327
4329
  });
4328
4330
  const renderButtonsGroup = (data, activeButton, setActiveButton) => {
4329
4331
  const allButtonVersion = activeButton === 'all' ? 'primary' : 'secondary';
@@ -4347,7 +4349,7 @@
4347
4349
  gray: { border: 'border-gray', text: 'text-secondary-text' },
4348
4350
  red: { border: 'border-error/30', text: 'text-error' },
4349
4351
  };
4350
- const Badge = JSX(({ className, children, color = 'gray' }) => (jsxs("div", { className: style('sm:p-s sm:border sm:border-gray rounded-md flex items-center', colorStyle[color].border, className), children: [jsx("div", { className: "block pr-m sm:pr-0 sm:hidden", children: jsx(Img, { image: { icon: 'SmallClockIcon' }, width: "24", height: "24" }) }), jsx(Text, { size: "text-m", color: colorStyle[color].text, children: children })] })));
4352
+ const Badge = JSX(({ className, children, color = 'gray' }) => (jsxs("div", { className: style('sm:p-s sm:border sm:border-green rounded-md flex items-center', colorStyle[color].border, className), children: [jsx("div", { className: "block pr-m sm:pr-0 sm:hidden", children: jsx(Img, { image: { icon: 'SmallClockIcon' }, width: "24", height: "24" }) }), jsx(Text, { size: "text-m", color: colorStyle[color].text, children: children })] })));
4351
4353
 
4352
4354
  const CardCell = JSX(({ value, subText, children, ...props }) => {
4353
4355
  const textItems = (Array.isArray(value) ? value : value?.split(',') ?? []).filter(Boolean);
@@ -4382,7 +4384,7 @@
4382
4384
  },
4383
4385
  { label: 'Регистрационный номер', value: atmCode },
4384
4386
  ];
4385
- return (jsxs("div", { className: "bg-white col-span-12 p-3xl sm:border-green sm:border", children: [jsxs("div", { className: "sm:flex sm:justify-between", children: [jsxs("div", { children: [jsx(Text, { size: "text-h4", children: capitalizedFirstLetter$1(location) }), address ? (jsxs("div", { className: "flex pb-xl pt-xs gap-2xs", children: [jsx(Icon, { name: "GeolocationIcon", width: "24", height: "24" }), jsx(Text, { size: "text-l", children: address })] })) : null] }), jsx(Badge, { color: "green", children: capitalizedFirstLetter$1(workTime) })] }), jsx("div", { className: "hidden sm:block", children: jsx(CardRow, { className: "flex-wrap", children: additionalInfo?.map(renderInfo) }) }), jsx(Foldable, { className: "block sm:hidden", renderFoldableSection: ({ isUnfolded }) => {
4387
+ return (jsxs("div", { className: "bg-white col-span-12 p-3xl sm:border-green sm:border", children: [jsxs("div", { className: "sm:flex sm:justify-between", children: [jsxs("div", { children: [jsx(Text, { size: "text-h4", children: capitalizedFirstLetter$1(location) }), address ? (jsxs("div", { className: "flex pb-xl pt-xs gap-2xs", children: [jsx(Icon, { name: "GeolocationIcon", width: "24", height: "24" }), jsx(Text, { size: "text-l", children: address })] })) : null] }), jsx("div", { className: "whitespace-nowrap", children: jsx(Badge, { color: "green", children: capitalizedFirstLetter$1(workTime) }) })] }), jsx("div", { className: "hidden sm:block", children: jsx(CardRow, { className: "flex-wrap", children: additionalInfo?.map(renderInfo) }) }), jsx(Foldable, { className: "block sm:hidden", renderFoldableSection: ({ isUnfolded }) => {
4386
4388
  return (jsx(FoldableSection, { isUnfolded: isUnfolded, children: jsx(CardRow, { className: "flex-wrap", children: additionalInfo?.map(renderInfo) }) }));
4387
4389
  },
4388
4390
  //** TODO: Remove styles with refactoring DefaultFoldButton*/
@@ -5702,7 +5704,7 @@
5702
5704
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
5703
5705
  });
5704
5706
 
5705
- const packageVersion = "0.14.309";
5707
+ const packageVersion = "0.14.310";
5706
5708
 
5707
5709
  exports.Blocks = Blocks;
5708
5710
  exports.ContentPage = ContentPage;