@redneckz/wildless-cms-uni-blocks 0.9.11 → 0.9.13
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.
- package/bin/migrateContentUnit.js +1 -1
- package/bundle/blocks.schema.json +1 -1
- package/bundle/bundle.umd.js +131 -56
- package/bundle/bundle.umd.min.js +1 -1
- package/bundle/components/Calculator/CalculatorContent.d.ts +18 -17
- package/bundle/components/Calculator/DepositCalculatorForm.d.ts +2 -2
- package/bundle/components/Calculator/rangeHelpers.d.ts +1 -0
- package/bundle/components/Calculator/renderMonthsInput.d.ts +1 -0
- package/bundle/components/Calculator/useDepositCalculatorParams.d.ts +3 -1
- package/bundle/components/CarouselRecommendationCard/CarouselRecommendationCardContent.d.ts +2 -6
- package/bundle/components/Footer/MediaButton.d.ts +3 -4
- package/bundle/content-page-repository/ContentPageRepository.d.ts +1 -5
- package/bundle/content-page-repository/alignImg.d.ts +9 -0
- package/bundle/content-page-repository/computeImgOutputPath.d.ts +3 -0
- package/bundle/content-page-repository/resizeImg.d.ts +3 -0
- package/bundle/content-page-repository/transformContentPage.d.ts +1 -0
- package/bundle/content-page-repository/transformImg.d.ts +6 -5
- package/bundle/content-page-repository/transformPicture.d.ts +1 -1
- package/bundle/ui-kit/InputListRange/InputListRange.d.ts +2 -0
- package/bundle/ui-kit/InputListRange/InputListRangeProps.d.ts +10 -0
- package/bundle/utils/arrayByRange.d.ts +1 -0
- package/bundle/utils/isPictureSizeEmpty.d.ts +2 -2
- package/bundle/utils/mergeIntervals.d.ts +1 -0
- package/dist/components/Calculator/CalculatorContent.d.ts +18 -17
- package/dist/components/Calculator/CreditCalculatorForm.js.map +1 -1
- package/dist/components/Calculator/DepositCalculatorForm.d.ts +2 -2
- package/dist/components/Calculator/DepositCalculatorForm.js +21 -11
- package/dist/components/Calculator/DepositCalculatorForm.js.map +1 -1
- package/dist/components/Calculator/constants.js +1 -1
- package/dist/components/Calculator/constants.js.map +1 -1
- package/dist/components/Calculator/rangeHelpers.d.ts +1 -0
- package/dist/components/Calculator/rangeHelpers.js +4 -1
- package/dist/components/Calculator/rangeHelpers.js.map +1 -1
- package/dist/components/Calculator/renderMonthsInput.d.ts +1 -0
- package/dist/components/Calculator/renderMonthsInput.js +3 -2
- package/dist/components/Calculator/renderMonthsInput.js.map +1 -1
- package/dist/components/Calculator/useCreditCalculatorParams.js +27 -29
- package/dist/components/Calculator/useCreditCalculatorParams.js.map +1 -1
- package/dist/components/Calculator/useDepositCalculatorParams.d.ts +3 -1
- package/dist/components/Calculator/useDepositCalculatorParams.js +22 -6
- package/dist/components/Calculator/useDepositCalculatorParams.js.map +1 -1
- package/dist/components/CarouselRecommendationCard/CarouselRecommendationCardContent.d.ts +2 -6
- package/dist/components/Footer/MediaButton.d.ts +3 -4
- package/dist/components/Footer/MediaButton.js.map +1 -1
- package/dist/content-page-repository/ContentPageRepository.d.ts +1 -5
- package/dist/content-page-repository/ContentPageRepository.js +7 -25
- package/dist/content-page-repository/ContentPageRepository.js.map +1 -1
- package/dist/content-page-repository/alignImg.d.ts +9 -0
- package/dist/content-page-repository/alignImg.js +23 -0
- package/dist/content-page-repository/alignImg.js.map +1 -0
- package/dist/content-page-repository/computeImgOutputPath.d.ts +3 -0
- package/dist/content-page-repository/computeImgOutputPath.js +18 -0
- package/dist/content-page-repository/computeImgOutputPath.js.map +1 -0
- package/dist/content-page-repository/resizeImg.d.ts +3 -0
- package/dist/content-page-repository/resizeImg.js +19 -0
- package/dist/content-page-repository/resizeImg.js.map +1 -0
- package/dist/content-page-repository/transformContentPage.d.ts +1 -0
- package/dist/content-page-repository/transformContentPage.js +25 -19
- package/dist/content-page-repository/transformContentPage.js.map +1 -1
- package/dist/content-page-repository/transformImg.d.ts +6 -5
- package/dist/content-page-repository/transformImg.js +26 -76
- package/dist/content-page-repository/transformImg.js.map +1 -1
- package/dist/content-page-repository/transformPicture.d.ts +1 -1
- package/dist/content-page-repository/transformPicture.js +8 -16
- package/dist/content-page-repository/transformPicture.js.map +1 -1
- package/dist/ui-kit/InputListRange/InputListRange.d.ts +2 -0
- package/dist/ui-kit/InputListRange/InputListRange.js +41 -0
- package/dist/ui-kit/InputListRange/InputListRange.js.map +1 -0
- package/dist/ui-kit/InputListRange/InputListRangeProps.d.ts +10 -0
- package/dist/ui-kit/InputListRange/InputListRangeProps.js +2 -0
- package/dist/ui-kit/InputListRange/InputListRangeProps.js.map +1 -0
- package/dist/ui-kit/Select/Select.js +2 -1
- package/dist/ui-kit/Select/Select.js.map +1 -1
- package/dist/utils/arrayByRange.d.ts +1 -0
- package/dist/utils/arrayByRange.js +5 -0
- package/dist/utils/arrayByRange.js.map +1 -0
- package/dist/utils/isPictureSizeEmpty.d.ts +2 -2
- package/dist/utils/isPictureSizeEmpty.js +1 -1
- package/dist/utils/isPictureSizeEmpty.js.map +1 -1
- package/dist/utils/mergeIntervals.d.ts +1 -0
- package/dist/utils/mergeIntervals.js +20 -0
- package/dist/utils/mergeIntervals.js.map +1 -0
- package/lib/common.css +1 -1
- package/lib/components/Calculator/CalculatorContent.d.ts +18 -17
- package/lib/components/Calculator/CreditCalculatorForm.js.map +1 -1
- package/lib/components/Calculator/DepositCalculatorForm.d.ts +2 -2
- package/lib/components/Calculator/DepositCalculatorForm.js +22 -12
- package/lib/components/Calculator/DepositCalculatorForm.js.map +1 -1
- package/lib/components/Calculator/constants.js +1 -1
- package/lib/components/Calculator/constants.js.map +1 -1
- package/lib/components/Calculator/rangeHelpers.d.ts +1 -0
- package/lib/components/Calculator/rangeHelpers.js +2 -0
- package/lib/components/Calculator/rangeHelpers.js.map +1 -1
- package/lib/components/Calculator/renderMonthsInput.d.ts +1 -0
- package/lib/components/Calculator/renderMonthsInput.js +3 -2
- package/lib/components/Calculator/renderMonthsInput.js.map +1 -1
- package/lib/components/Calculator/useCreditCalculatorParams.js +27 -29
- package/lib/components/Calculator/useCreditCalculatorParams.js.map +1 -1
- package/lib/components/Calculator/useDepositCalculatorParams.d.ts +3 -1
- package/lib/components/Calculator/useDepositCalculatorParams.js +22 -6
- package/lib/components/Calculator/useDepositCalculatorParams.js.map +1 -1
- package/lib/components/CarouselRecommendationCard/CarouselRecommendationCardContent.d.ts +2 -6
- package/lib/components/Footer/MediaButton.d.ts +3 -4
- package/lib/components/Footer/MediaButton.js.map +1 -1
- package/lib/content-page-repository/ContentPageRepository.d.ts +1 -5
- package/lib/content-page-repository/ContentPageRepository.js +8 -26
- package/lib/content-page-repository/ContentPageRepository.js.map +1 -1
- package/lib/content-page-repository/alignImg.d.ts +9 -0
- package/lib/content-page-repository/alignImg.js +17 -0
- package/lib/content-page-repository/alignImg.js.map +1 -0
- package/lib/content-page-repository/computeImgOutputPath.d.ts +3 -0
- package/lib/content-page-repository/computeImgOutputPath.js +12 -0
- package/lib/content-page-repository/computeImgOutputPath.js.map +1 -0
- package/lib/content-page-repository/resizeImg.d.ts +3 -0
- package/lib/content-page-repository/resizeImg.js +13 -0
- package/lib/content-page-repository/resizeImg.js.map +1 -0
- package/lib/content-page-repository/transformContentPage.d.ts +1 -0
- package/lib/content-page-repository/transformContentPage.js +23 -18
- package/lib/content-page-repository/transformContentPage.js.map +1 -1
- package/lib/content-page-repository/transformImg.d.ts +6 -5
- package/lib/content-page-repository/transformImg.js +26 -76
- package/lib/content-page-repository/transformImg.js.map +1 -1
- package/lib/content-page-repository/transformPicture.d.ts +1 -1
- package/lib/content-page-repository/transformPicture.js +8 -16
- package/lib/content-page-repository/transformPicture.js.map +1 -1
- package/lib/ui-kit/InputListRange/InputListRange.d.ts +2 -0
- package/lib/ui-kit/InputListRange/InputListRange.js +39 -0
- package/lib/ui-kit/InputListRange/InputListRange.js.map +1 -0
- package/lib/ui-kit/InputListRange/InputListRangeProps.d.ts +10 -0
- package/lib/ui-kit/InputListRange/InputListRangeProps.js +2 -0
- package/lib/ui-kit/InputListRange/InputListRangeProps.js.map +1 -0
- package/lib/ui-kit/Select/Select.js +2 -1
- package/lib/ui-kit/Select/Select.js.map +1 -1
- package/lib/utils/arrayByRange.d.ts +1 -0
- package/lib/utils/arrayByRange.js +2 -0
- package/lib/utils/arrayByRange.js.map +1 -0
- package/lib/utils/isPictureSizeEmpty.d.ts +2 -2
- package/lib/utils/isPictureSizeEmpty.js +1 -1
- package/lib/utils/isPictureSizeEmpty.js.map +1 -1
- package/lib/utils/mergeIntervals.d.ts +1 -0
- package/lib/utils/mergeIntervals.js +17 -0
- package/lib/utils/mergeIntervals.js.map +1 -0
- package/mobile/bundle/bundle.umd.js +1 -1
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/bundle/components/Calculator/CalculatorContent.d.ts +18 -17
- package/mobile/bundle/components/Calculator/DepositCalculatorForm.d.ts +2 -2
- package/mobile/bundle/components/Calculator/rangeHelpers.d.ts +1 -0
- package/mobile/bundle/components/Calculator/renderMonthsInput.d.ts +1 -0
- package/mobile/bundle/components/Calculator/useDepositCalculatorParams.d.ts +3 -1
- package/mobile/bundle/components/CarouselRecommendationCard/CarouselRecommendationCardContent.d.ts +2 -6
- package/mobile/bundle/components/Footer/MediaButton.d.ts +3 -4
- package/mobile/bundle/content-page-repository/ContentPageRepository.d.ts +1 -5
- package/mobile/bundle/content-page-repository/alignImg.d.ts +9 -0
- package/mobile/bundle/content-page-repository/computeImgOutputPath.d.ts +3 -0
- package/mobile/bundle/content-page-repository/resizeImg.d.ts +3 -0
- package/mobile/bundle/content-page-repository/transformContentPage.d.ts +1 -0
- package/mobile/bundle/content-page-repository/transformImg.d.ts +6 -5
- package/mobile/bundle/content-page-repository/transformPicture.d.ts +1 -1
- package/mobile/bundle/ui-kit/InputListRange/InputListRange.d.ts +2 -0
- package/mobile/bundle/ui-kit/InputListRange/InputListRangeProps.d.ts +10 -0
- package/mobile/bundle/utils/arrayByRange.d.ts +1 -0
- package/mobile/bundle/utils/isPictureSizeEmpty.d.ts +2 -2
- package/mobile/bundle/utils/mergeIntervals.d.ts +1 -0
- package/mobile/dist/components/Calculator/CalculatorContent.d.ts +18 -17
- package/mobile/dist/components/Calculator/CreditCalculatorForm.js.map +1 -1
- package/mobile/dist/components/Calculator/DepositCalculatorForm.d.ts +2 -2
- package/mobile/dist/components/Calculator/DepositCalculatorForm.js +21 -11
- package/mobile/dist/components/Calculator/DepositCalculatorForm.js.map +1 -1
- package/mobile/dist/components/Calculator/constants.js +1 -1
- package/mobile/dist/components/Calculator/constants.js.map +1 -1
- package/mobile/dist/components/Calculator/rangeHelpers.d.ts +1 -0
- package/mobile/dist/components/Calculator/rangeHelpers.js +4 -1
- package/mobile/dist/components/Calculator/rangeHelpers.js.map +1 -1
- package/mobile/dist/components/Calculator/renderMonthsInput.d.ts +1 -0
- package/mobile/dist/components/Calculator/renderMonthsInput.js +3 -2
- package/mobile/dist/components/Calculator/renderMonthsInput.js.map +1 -1
- package/mobile/dist/components/Calculator/useCreditCalculatorParams.js +27 -29
- package/mobile/dist/components/Calculator/useCreditCalculatorParams.js.map +1 -1
- package/mobile/dist/components/Calculator/useDepositCalculatorParams.d.ts +3 -1
- package/mobile/dist/components/Calculator/useDepositCalculatorParams.js +22 -6
- package/mobile/dist/components/Calculator/useDepositCalculatorParams.js.map +1 -1
- package/mobile/dist/components/CarouselRecommendationCard/CarouselRecommendationCardContent.d.ts +2 -6
- package/mobile/dist/components/Footer/MediaButton.d.ts +3 -4
- package/mobile/dist/components/Footer/MediaButton.js.map +1 -1
- package/mobile/dist/content-page-repository/ContentPageRepository.d.ts +1 -5
- package/mobile/dist/content-page-repository/ContentPageRepository.js +7 -25
- package/mobile/dist/content-page-repository/ContentPageRepository.js.map +1 -1
- package/mobile/dist/content-page-repository/alignImg.d.ts +9 -0
- package/mobile/dist/content-page-repository/alignImg.js +23 -0
- package/mobile/dist/content-page-repository/alignImg.js.map +1 -0
- package/mobile/dist/content-page-repository/computeImgOutputPath.d.ts +3 -0
- package/mobile/dist/content-page-repository/computeImgOutputPath.js +18 -0
- package/mobile/dist/content-page-repository/computeImgOutputPath.js.map +1 -0
- package/mobile/dist/content-page-repository/resizeImg.d.ts +3 -0
- package/mobile/dist/content-page-repository/resizeImg.js +19 -0
- package/mobile/dist/content-page-repository/resizeImg.js.map +1 -0
- package/mobile/dist/content-page-repository/transformContentPage.d.ts +1 -0
- package/mobile/dist/content-page-repository/transformContentPage.js +25 -19
- package/mobile/dist/content-page-repository/transformContentPage.js.map +1 -1
- package/mobile/dist/content-page-repository/transformImg.d.ts +6 -5
- package/mobile/dist/content-page-repository/transformImg.js +26 -76
- package/mobile/dist/content-page-repository/transformImg.js.map +1 -1
- package/mobile/dist/content-page-repository/transformPicture.d.ts +1 -1
- package/mobile/dist/content-page-repository/transformPicture.js +8 -16
- package/mobile/dist/content-page-repository/transformPicture.js.map +1 -1
- package/mobile/dist/ui-kit/InputListRange/InputListRange.d.ts +2 -0
- package/mobile/dist/ui-kit/InputListRange/InputListRange.js +41 -0
- package/mobile/dist/ui-kit/InputListRange/InputListRange.js.map +1 -0
- package/mobile/dist/ui-kit/InputListRange/InputListRangeProps.d.ts +10 -0
- package/mobile/dist/ui-kit/InputListRange/InputListRangeProps.js +2 -0
- package/mobile/dist/ui-kit/InputListRange/InputListRangeProps.js.map +1 -0
- package/mobile/dist/ui-kit/Select/Select.js +2 -1
- package/mobile/dist/ui-kit/Select/Select.js.map +1 -1
- package/mobile/dist/utils/arrayByRange.d.ts +1 -0
- package/mobile/dist/utils/arrayByRange.js +5 -0
- package/mobile/dist/utils/arrayByRange.js.map +1 -0
- package/mobile/dist/utils/isPictureSizeEmpty.d.ts +2 -2
- package/mobile/dist/utils/isPictureSizeEmpty.js +1 -1
- package/mobile/dist/utils/isPictureSizeEmpty.js.map +1 -1
- package/mobile/dist/utils/mergeIntervals.d.ts +1 -0
- package/mobile/dist/utils/mergeIntervals.js +20 -0
- package/mobile/dist/utils/mergeIntervals.js.map +1 -0
- package/mobile/lib/components/Calculator/CalculatorContent.d.ts +18 -17
- package/mobile/lib/components/Calculator/CreditCalculatorForm.js.map +1 -1
- package/mobile/lib/components/Calculator/DepositCalculatorForm.d.ts +2 -2
- package/mobile/lib/components/Calculator/DepositCalculatorForm.js +22 -12
- package/mobile/lib/components/Calculator/DepositCalculatorForm.js.map +1 -1
- package/mobile/lib/components/Calculator/constants.js +1 -1
- package/mobile/lib/components/Calculator/constants.js.map +1 -1
- package/mobile/lib/components/Calculator/rangeHelpers.d.ts +1 -0
- package/mobile/lib/components/Calculator/rangeHelpers.js +2 -0
- package/mobile/lib/components/Calculator/rangeHelpers.js.map +1 -1
- package/mobile/lib/components/Calculator/renderMonthsInput.d.ts +1 -0
- package/mobile/lib/components/Calculator/renderMonthsInput.js +3 -2
- package/mobile/lib/components/Calculator/renderMonthsInput.js.map +1 -1
- package/mobile/lib/components/Calculator/useCreditCalculatorParams.js +27 -29
- package/mobile/lib/components/Calculator/useCreditCalculatorParams.js.map +1 -1
- package/mobile/lib/components/Calculator/useDepositCalculatorParams.d.ts +3 -1
- package/mobile/lib/components/Calculator/useDepositCalculatorParams.js +22 -6
- package/mobile/lib/components/Calculator/useDepositCalculatorParams.js.map +1 -1
- package/mobile/lib/components/CarouselRecommendationCard/CarouselRecommendationCardContent.d.ts +2 -6
- package/mobile/lib/components/Footer/MediaButton.d.ts +3 -4
- package/mobile/lib/components/Footer/MediaButton.js.map +1 -1
- package/mobile/lib/content-page-repository/ContentPageRepository.d.ts +1 -5
- package/mobile/lib/content-page-repository/ContentPageRepository.js +8 -26
- package/mobile/lib/content-page-repository/ContentPageRepository.js.map +1 -1
- package/mobile/lib/content-page-repository/alignImg.d.ts +9 -0
- package/mobile/lib/content-page-repository/alignImg.js +17 -0
- package/mobile/lib/content-page-repository/alignImg.js.map +1 -0
- package/mobile/lib/content-page-repository/computeImgOutputPath.d.ts +3 -0
- package/mobile/lib/content-page-repository/computeImgOutputPath.js +12 -0
- package/mobile/lib/content-page-repository/computeImgOutputPath.js.map +1 -0
- package/mobile/lib/content-page-repository/resizeImg.d.ts +3 -0
- package/mobile/lib/content-page-repository/resizeImg.js +13 -0
- package/mobile/lib/content-page-repository/resizeImg.js.map +1 -0
- package/mobile/lib/content-page-repository/transformContentPage.d.ts +1 -0
- package/mobile/lib/content-page-repository/transformContentPage.js +23 -18
- package/mobile/lib/content-page-repository/transformContentPage.js.map +1 -1
- package/mobile/lib/content-page-repository/transformImg.d.ts +6 -5
- package/mobile/lib/content-page-repository/transformImg.js +26 -76
- package/mobile/lib/content-page-repository/transformImg.js.map +1 -1
- package/mobile/lib/content-page-repository/transformPicture.d.ts +1 -1
- package/mobile/lib/content-page-repository/transformPicture.js +8 -16
- package/mobile/lib/content-page-repository/transformPicture.js.map +1 -1
- package/mobile/lib/ui-kit/InputListRange/InputListRange.d.ts +2 -0
- package/mobile/lib/ui-kit/InputListRange/InputListRange.js +39 -0
- package/mobile/lib/ui-kit/InputListRange/InputListRange.js.map +1 -0
- package/mobile/lib/ui-kit/InputListRange/InputListRangeProps.d.ts +10 -0
- package/mobile/lib/ui-kit/InputListRange/InputListRangeProps.js +2 -0
- package/mobile/lib/ui-kit/InputListRange/InputListRangeProps.js.map +1 -0
- package/mobile/lib/ui-kit/Select/Select.js +2 -1
- package/mobile/lib/ui-kit/Select/Select.js.map +1 -1
- package/mobile/lib/utils/arrayByRange.d.ts +1 -0
- package/mobile/lib/utils/arrayByRange.js +2 -0
- package/mobile/lib/utils/arrayByRange.js.map +1 -0
- package/mobile/lib/utils/isPictureSizeEmpty.d.ts +2 -2
- package/mobile/lib/utils/isPictureSizeEmpty.js +1 -1
- package/mobile/lib/utils/isPictureSizeEmpty.js.map +1 -1
- package/mobile/lib/utils/mergeIntervals.d.ts +1 -0
- package/mobile/lib/utils/mergeIntervals.js +17 -0
- package/mobile/lib/utils/mergeIntervals.js.map +1 -0
- package/mobile/src/components/Calculator/Calculator.example.json +3 -1
- package/mobile/src/components/Calculator/CalculatorContent.ts +20 -19
- package/mobile/src/components/Calculator/CreditCalculatorForm.tsx +6 -7
- package/mobile/src/components/Calculator/DepositCalculatorForm.tsx +48 -15
- package/mobile/src/components/Calculator/constants.ts +1 -1
- package/mobile/src/components/Calculator/rangeHelpers.ts +10 -0
- package/mobile/src/components/Calculator/renderMonthsInput.tsx +13 -2
- package/mobile/src/components/Calculator/useCreditCalculatorParams.ts +8 -10
- package/mobile/src/components/Calculator/useDepositCalculatorParams.ts +36 -9
- package/mobile/src/components/CarouselRecommendationCard/CarouselRecommendationCard.example.json +1 -2
- package/mobile/src/components/CarouselRecommendationCard/CarouselRecommendationCardContent.ts +2 -8
- package/mobile/src/components/Footer/MediaButton.tsx +3 -5
- package/mobile/src/content-page-repository/ContentPageRepository.ts +8 -40
- package/mobile/src/content-page-repository/alignImg.ts +32 -0
- package/mobile/src/content-page-repository/computeImgOutputPath.ts +20 -0
- package/mobile/src/content-page-repository/resizeImg.ts +18 -0
- package/mobile/src/content-page-repository/transformContentPage.ts +25 -18
- package/mobile/src/content-page-repository/transformImg.ts +49 -121
- package/mobile/src/content-page-repository/transformPicture.ts +9 -21
- package/mobile/src/ui-kit/InputListRange/InputListRange.tsx +99 -0
- package/mobile/src/ui-kit/InputListRange/InputListRangeProps.ts +11 -0
- package/mobile/src/ui-kit/Select/Select.tsx +8 -1
- package/mobile/src/utils/arrayByRange.ts +4 -0
- package/mobile/src/utils/isPictureSizeEmpty.ts +3 -3
- package/mobile/src/utils/mergeIntervals.ts +19 -0
- package/package.json +1 -1
- package/src/components/Calculator/Calculator.example.json +3 -1
- package/src/components/Calculator/Calculator.fixture.tsx +4 -0
- package/src/components/Calculator/CalculatorContent.ts +20 -19
- package/src/components/Calculator/CreditCalculatorForm.tsx +6 -7
- package/src/components/Calculator/DepositCalculatorForm.tsx +48 -15
- package/src/components/Calculator/constants.ts +1 -1
- package/src/components/Calculator/rangeHelpers.ts +10 -0
- package/src/components/Calculator/renderMonthsInput.tsx +13 -2
- package/src/components/Calculator/useCreditCalculatorParams.ts +8 -10
- package/src/components/Calculator/useDepositCalculatorParams.ts +36 -9
- package/src/components/CarouselRecommendationCard/CarouselRecommendationCard.example.json +1 -2
- package/src/components/CarouselRecommendationCard/CarouselRecommendationCard.fixture.tsx +0 -9
- package/src/components/CarouselRecommendationCard/CarouselRecommendationCardContent.ts +2 -8
- package/src/components/Footer/MediaButton.tsx +3 -5
- package/src/content-page-repository/ContentPageRepository.ts +8 -40
- package/src/content-page-repository/alignImg.ts +32 -0
- package/src/content-page-repository/computeImgOutputPath.ts +20 -0
- package/src/content-page-repository/resizeImg.ts +18 -0
- package/src/content-page-repository/transformContentPage.ts +25 -18
- package/src/content-page-repository/transformImg.ts +49 -121
- package/src/content-page-repository/transformPicture.ts +9 -21
- package/src/ui-kit/InputListRange/InputListRange.tsx +99 -0
- package/src/ui-kit/InputListRange/InputListRangeProps.ts +11 -0
- package/src/ui-kit/Select/Select.tsx +8 -1
- package/src/utils/arrayByRange.ts +4 -0
- package/src/utils/isPictureSizeEmpty.ts +3 -3
- package/src/utils/mergeIntervals.ts +19 -0
- package/bundle/content-page-repository/transformImgPath.d.ts +0 -8
- package/dist/content-page-repository/transformImgPath.d.ts +0 -8
- package/dist/content-page-repository/transformImgPath.js +0 -22
- package/dist/content-page-repository/transformImgPath.js.map +0 -1
- package/lib/content-page-repository/transformImgPath.d.ts +0 -8
- package/lib/content-page-repository/transformImgPath.js +0 -16
- package/lib/content-page-repository/transformImgPath.js.map +0 -1
- package/mobile/bundle/content-page-repository/transformImgPath.d.ts +0 -8
- package/mobile/dist/content-page-repository/transformImgPath.d.ts +0 -8
- package/mobile/dist/content-page-repository/transformImgPath.js +0 -22
- package/mobile/dist/content-page-repository/transformImgPath.js.map +0 -1
- package/mobile/lib/content-page-repository/transformImgPath.d.ts +0 -8
- package/mobile/lib/content-page-repository/transformImgPath.js +0 -16
- package/mobile/lib/content-page-repository/transformImgPath.js.map +0 -1
- package/mobile/src/content-page-repository/transformImgPath.ts +0 -30
- package/src/content-page-repository/transformImgPath.ts +0 -30
|
@@ -5,42 +5,30 @@ import type { TransformationOptions } from './TransformationOptions';
|
|
|
5
5
|
import { transformImg } from './transformImg';
|
|
6
6
|
|
|
7
7
|
export async function transformPicture(
|
|
8
|
-
pagePath: string,
|
|
9
8
|
picture: Picture,
|
|
9
|
+
pagePath: string,
|
|
10
10
|
options: TransformationOptions,
|
|
11
11
|
): Promise<Picture> {
|
|
12
|
-
const sources = picture.sources || [];
|
|
13
12
|
const src = picture?.src || '';
|
|
14
13
|
|
|
15
|
-
const
|
|
16
|
-
pagePath,
|
|
17
|
-
src,
|
|
18
|
-
transformationOptions: { ...options, ...picture },
|
|
19
|
-
});
|
|
20
|
-
|
|
21
|
-
const { width, height } = await sharp(
|
|
22
|
-
path.resolve(options.publicDir, transformedPicture),
|
|
23
|
-
).metadata();
|
|
14
|
+
const transformedImgPath = await transformImg(src, pagePath, { ...options, ...picture });
|
|
24
15
|
|
|
16
|
+
const { width, height } = await sharp(transformedImgPath).metadata();
|
|
25
17
|
const containerSize = width && height ? { width, height } : undefined;
|
|
26
18
|
|
|
19
|
+
const sources = picture.sources || [];
|
|
27
20
|
const transformedSources = await Promise.all(
|
|
28
|
-
sources.map((_) =>
|
|
29
|
-
transformImg({
|
|
30
|
-
pagePath,
|
|
31
|
-
src,
|
|
32
|
-
containerSize,
|
|
33
|
-
transformationOptions: { ...options, ..._ },
|
|
34
|
-
}),
|
|
35
|
-
),
|
|
21
|
+
sources.map((_) => transformImg(src, pagePath, { ...options, ..._, containerSize })),
|
|
36
22
|
);
|
|
37
23
|
|
|
24
|
+
const imgPathToSrc = (_: string) => path.join('/', path.relative(options.publicDir, _));
|
|
25
|
+
|
|
38
26
|
return {
|
|
39
27
|
...picture,
|
|
40
|
-
src:
|
|
28
|
+
src: imgPathToSrc(transformedImgPath),
|
|
41
29
|
sources: transformedSources.map((_, i) => ({
|
|
42
30
|
...sources[i],
|
|
43
|
-
src:
|
|
31
|
+
src: imgPathToSrc(_),
|
|
44
32
|
size: { width, height },
|
|
45
33
|
})),
|
|
46
34
|
};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { JSX } from '@redneckz/uni-jsx';
|
|
2
|
+
import { addSpacesBetweenNumbers } from '../../utils/addSpacesBetweenNumbers';
|
|
3
|
+
import { clamp } from '../../utils/clamp';
|
|
4
|
+
import { getSanitizedValue } from '../../utils/getSanitizedValue';
|
|
5
|
+
import type { InputListRangeProps } from './InputListRangeProps';
|
|
6
|
+
|
|
7
|
+
const DISABLED_INPUT_CLASSES = 'disabled:border-gray disabled:bg-main-divider';
|
|
8
|
+
|
|
9
|
+
export const InputListRange = JSX<InputListRangeProps>(
|
|
10
|
+
({ className, title, items = [], list = [], value = list[0], disabled = false, onChange }) => {
|
|
11
|
+
const min = 0;
|
|
12
|
+
const max = list.length - 1;
|
|
13
|
+
const step = 1;
|
|
14
|
+
|
|
15
|
+
const handleTextChange: JSX.IntrinsicElements['input']['onChange'] = (e) => {
|
|
16
|
+
if (!onChange) {
|
|
17
|
+
return;
|
|
18
|
+
}
|
|
19
|
+
const newValue = parseInt(e.target.value);
|
|
20
|
+
|
|
21
|
+
const closetValue = list.reduce(function (prev, curr) {
|
|
22
|
+
return Math.abs(curr - newValue) < Math.abs(prev - newValue) ? curr : prev;
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
onChange(Number(getSanitizedValue(closetValue.toString())));
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
const handleRangeChange: JSX.IntrinsicElements['input']['onChange'] = (e) => {
|
|
29
|
+
if (!onChange) {
|
|
30
|
+
return;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
const val = list.at(clamp(parseInt(e.target.value), min, max)) || 0;
|
|
34
|
+
onChange(Number(getSanitizedValue(val.toString())));
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
const valueIndex = list.findIndex((item) => item === value) || 0;
|
|
38
|
+
const inputStyle = {
|
|
39
|
+
backgroundSize: `${(((valueIndex - min) * 100) / (max - min)).toFixed(2)}% 100%`,
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
return (
|
|
43
|
+
<div className={className}>
|
|
44
|
+
<label className="block relative">
|
|
45
|
+
{title ? <span className="text-m-light text-primary-text">{title}</span> : null}
|
|
46
|
+
<input
|
|
47
|
+
className={`m-0 mt-2 font-sans text-h3 w-full h-14 border border-solid border-gray rounded-md
|
|
48
|
+
outline-none p-0 pl-4 box-border text-primary-text hover:border-primary-hover focus:border-primary-text ${DISABLED_INPUT_CLASSES}`}
|
|
49
|
+
value={addSpacesBetweenNumbers(value)}
|
|
50
|
+
disabled={disabled}
|
|
51
|
+
onChange={handleTextChange}
|
|
52
|
+
onBlur={handleTextChange}
|
|
53
|
+
/>
|
|
54
|
+
{list.length ? (
|
|
55
|
+
<div className="absolute w-full flex justify-between -bottom-[3px] px-4">
|
|
56
|
+
{list.map(renderTick(valueIndex, disabled))}
|
|
57
|
+
</div>
|
|
58
|
+
) : null}
|
|
59
|
+
<div className="absolute inset-x-0 -bottom-1 px-4 leading-[18px]">
|
|
60
|
+
<input
|
|
61
|
+
className="box-border w-full m-0 cursor-pointer slider relative z-10"
|
|
62
|
+
type="range"
|
|
63
|
+
min={min}
|
|
64
|
+
max={max}
|
|
65
|
+
step={step}
|
|
66
|
+
value={valueIndex}
|
|
67
|
+
disabled={disabled}
|
|
68
|
+
onChange={handleRangeChange}
|
|
69
|
+
style={inputStyle}
|
|
70
|
+
/>
|
|
71
|
+
</div>
|
|
72
|
+
</label>
|
|
73
|
+
{renderRangeCaption(items)}
|
|
74
|
+
</div>
|
|
75
|
+
);
|
|
76
|
+
},
|
|
77
|
+
);
|
|
78
|
+
|
|
79
|
+
const renderTick = (valueIndex: number, disabled: boolean) => (value: number, i: number) =>
|
|
80
|
+
(
|
|
81
|
+
<span
|
|
82
|
+
key={String(i)}
|
|
83
|
+
className={`w-2 h-2 rounded-full ${
|
|
84
|
+
valueIndex <= i || disabled ? 'bg-gray' : 'bg-primary-main'
|
|
85
|
+
}`}
|
|
86
|
+
/>
|
|
87
|
+
);
|
|
88
|
+
|
|
89
|
+
function renderRangeCaption(items: string[]) {
|
|
90
|
+
return (
|
|
91
|
+
<div className="flex justify-between my-2">
|
|
92
|
+
{items.map((item, i) => (
|
|
93
|
+
<span key={String(i)} className="text-s-light text-secondary-text">
|
|
94
|
+
{item}
|
|
95
|
+
</span>
|
|
96
|
+
))}
|
|
97
|
+
</div>
|
|
98
|
+
);
|
|
99
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ListContent } from '../List/ListContent';
|
|
2
|
+
|
|
3
|
+
export interface InputListRangeProps extends ListContent {
|
|
4
|
+
className?: string;
|
|
5
|
+
items?: string[];
|
|
6
|
+
list?: number[];
|
|
7
|
+
value?: number;
|
|
8
|
+
title?: string;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
onChange?: (value: number) => void;
|
|
11
|
+
}
|
|
@@ -2,6 +2,7 @@ import { JSX } from '@redneckz/uni-jsx';
|
|
|
2
2
|
import { useCallback, useEffect, useState } from '@redneckz/uni-jsx/lib/hooks';
|
|
3
3
|
import { useOutsideClick } from '../../hooks/useOutsideClick';
|
|
4
4
|
import { LabelProps } from '../../model/HeadlineType';
|
|
5
|
+
import { Text } from '../../ui-kit/Text/Text';
|
|
5
6
|
import { Icon } from '../Icon/Icon';
|
|
6
7
|
|
|
7
8
|
export interface OptionProps {
|
|
@@ -39,7 +40,13 @@ export const Select = JSX<SelectProps>(
|
|
|
39
40
|
|
|
40
41
|
return (
|
|
41
42
|
<div className={`${className}`} ref={wrapperRef}>
|
|
42
|
-
{label ?
|
|
43
|
+
{label ? (
|
|
44
|
+
<div className="mb-2">
|
|
45
|
+
<Text size="text-m" color="text-primary-text" font="font-light">
|
|
46
|
+
{label}
|
|
47
|
+
</Text>
|
|
48
|
+
</div>
|
|
49
|
+
) : null}
|
|
43
50
|
<div className={`relative ${isOpen ? 'z-20' : 'z-10'}`}>
|
|
44
51
|
<div
|
|
45
52
|
className={`text-l flex justify-between items-center mb-0.5 text-primary-text cursor-pointer
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ImageSize } from '../model/ImageSize';
|
|
2
2
|
|
|
3
|
-
export function isPictureSizeEmpty(size:
|
|
4
|
-
return !
|
|
3
|
+
export function isPictureSizeEmpty(size: Partial<ImageSize> | undefined): boolean {
|
|
4
|
+
return !size?.width && !size?.height;
|
|
5
5
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export const mergeIntervals = (intervals: number[][]): number[][] => {
|
|
2
|
+
const result = [...intervals];
|
|
3
|
+
result.sort(([a], [c]) => a - c);
|
|
4
|
+
|
|
5
|
+
let i = 1;
|
|
6
|
+
|
|
7
|
+
while (i < result.length) {
|
|
8
|
+
const [a, b] = result[i - 1];
|
|
9
|
+
const [c, d] = result[i];
|
|
10
|
+
|
|
11
|
+
if (b >= c) {
|
|
12
|
+
result.splice(i - 1, 2, [a, Math.max(b, d)]);
|
|
13
|
+
} else {
|
|
14
|
+
i++;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
return result;
|
|
19
|
+
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { ImgSource } from '../model/Picture';
|
|
2
|
-
import type { TransformationOptions } from './TransformationOptions';
|
|
3
|
-
interface DirectoryParams {
|
|
4
|
-
pageDir: string;
|
|
5
|
-
contentDir: string;
|
|
6
|
-
}
|
|
7
|
-
export declare function transformImgPath(src: string, { pageDir, contentDir }: DirectoryParams, { format, size }: TransformationOptions & ImgSource): string;
|
|
8
|
-
export {};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { ImgSource } from '../model/Picture';
|
|
2
|
-
import type { TransformationOptions } from './TransformationOptions';
|
|
3
|
-
interface DirectoryParams {
|
|
4
|
-
pageDir: string;
|
|
5
|
-
contentDir: string;
|
|
6
|
-
}
|
|
7
|
-
export declare function transformImgPath(src: string, { pageDir, contentDir }: DirectoryParams, { format, size }: TransformationOptions & ImgSource): string;
|
|
8
|
-
export {};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
3
|
-
};
|
|
4
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.transformImgPath = void 0;
|
|
6
|
-
const path_1 = __importDefault(require("path"));
|
|
7
|
-
const isPictureSizeEmpty_1 = require("../utils/isPictureSizeEmpty");
|
|
8
|
-
function transformImgPath(src, { pageDir, contentDir }, { format, size }) {
|
|
9
|
-
const noTransform = (0, isPictureSizeEmpty_1.isPictureSizeEmpty)(size) && !format;
|
|
10
|
-
if (noTransform) {
|
|
11
|
-
return src;
|
|
12
|
-
}
|
|
13
|
-
const imgPath = path_1.default.relative(contentDir, path_1.default.join(pageDir, src));
|
|
14
|
-
const imgDir = path_1.default.dirname(imgPath);
|
|
15
|
-
const fileName = path_1.default.basename(src, path_1.default.extname(src));
|
|
16
|
-
const fileSizes = [size?.width, size?.height].filter(Boolean);
|
|
17
|
-
const suffix = fileSizes.length ? `-${fileSizes.join('-')}` : '';
|
|
18
|
-
const ext = format ? String(format) : 'webp';
|
|
19
|
-
return path_1.default.join(imgDir, `${fileName}${suffix}.${ext}`);
|
|
20
|
-
}
|
|
21
|
-
exports.transformImgPath = transformImgPath;
|
|
22
|
-
//# sourceMappingURL=transformImgPath.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"transformImgPath.js","sourceRoot":"","sources":["../../src/content-page-repository/transformImgPath.ts"],"names":[],"mappings":";;;;;AAAA,gDAAwB;AAExB,oEAAiE;AAQjE,SAAgB,gBAAgB,CAC9B,GAAW,EACX,EAAE,OAAO,EAAE,UAAU,EAAmB,EACxC,EAAE,MAAM,EAAE,IAAI,EAAqC;IAEnD,MAAM,WAAW,GAAG,IAAA,uCAAkB,EAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC;IACxD,IAAI,WAAW,EAAE;QACf,OAAO,GAAG,CAAC;KACZ;IAED,MAAM,OAAO,GAAG,cAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,cAAI,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC,CAAC;IACnE,MAAM,MAAM,GAAG,cAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;IAErC,MAAM,QAAQ,GAAG,cAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,cAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC;IACvD,MAAM,SAAS,GAAG,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAC9D,MAAM,MAAM,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IACjE,MAAM,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;IAE7C,OAAO,cAAI,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,QAAQ,GAAG,MAAM,IAAI,GAAG,EAAE,CAAC,CAAC;AAC1D,CAAC;AAnBD,4CAmBC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { ImgSource } from '../model/Picture';
|
|
2
|
-
import type { TransformationOptions } from './TransformationOptions';
|
|
3
|
-
interface DirectoryParams {
|
|
4
|
-
pageDir: string;
|
|
5
|
-
contentDir: string;
|
|
6
|
-
}
|
|
7
|
-
export declare function transformImgPath(src: string, { pageDir, contentDir }: DirectoryParams, { format, size }: TransformationOptions & ImgSource): string;
|
|
8
|
-
export {};
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import path from 'path';
|
|
2
|
-
import { isPictureSizeEmpty } from '../utils/isPictureSizeEmpty.js';
|
|
3
|
-
export function transformImgPath(src, { pageDir, contentDir }, { format, size }) {
|
|
4
|
-
const noTransform = isPictureSizeEmpty(size) && !format;
|
|
5
|
-
if (noTransform) {
|
|
6
|
-
return src;
|
|
7
|
-
}
|
|
8
|
-
const imgPath = path.relative(contentDir, path.join(pageDir, src));
|
|
9
|
-
const imgDir = path.dirname(imgPath);
|
|
10
|
-
const fileName = path.basename(src, path.extname(src));
|
|
11
|
-
const fileSizes = [size?.width, size?.height].filter(Boolean);
|
|
12
|
-
const suffix = fileSizes.length ? `-${fileSizes.join('-')}` : '';
|
|
13
|
-
const ext = format ? String(format) : 'webp';
|
|
14
|
-
return path.join(imgDir, `${fileName}${suffix}.${ext}`);
|
|
15
|
-
}
|
|
16
|
-
//# sourceMappingURL=transformImgPath.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"transformImgPath.js","sourceRoot":"","sources":["../../src/content-page-repository/transformImgPath.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,OAAO,EAAE,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAQjE,MAAM,UAAU,gBAAgB,CAC9B,GAAW,EACX,EAAE,OAAO,EAAE,UAAU,EAAmB,EACxC,EAAE,MAAM,EAAE,IAAI,EAAqC;IAEnD,MAAM,WAAW,GAAG,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC;IACxD,IAAI,WAAW,EAAE;QACf,OAAO,GAAG,CAAC;KACZ;IAED,MAAM,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC,CAAC;IACnE,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;IAErC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC;IACvD,MAAM,SAAS,GAAG,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAC9D,MAAM,MAAM,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IACjE,MAAM,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;IAE7C,OAAO,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,QAAQ,GAAG,MAAM,IAAI,GAAG,EAAE,CAAC,CAAC;AAC1D,CAAC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { ImgSource } from '../model/Picture';
|
|
2
|
-
import type { TransformationOptions } from './TransformationOptions';
|
|
3
|
-
interface DirectoryParams {
|
|
4
|
-
pageDir: string;
|
|
5
|
-
contentDir: string;
|
|
6
|
-
}
|
|
7
|
-
export declare function transformImgPath(src: string, { pageDir, contentDir }: DirectoryParams, { format, size }: TransformationOptions & ImgSource): string;
|
|
8
|
-
export {};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { ImgSource } from '../model/Picture';
|
|
2
|
-
import type { TransformationOptions } from './TransformationOptions';
|
|
3
|
-
interface DirectoryParams {
|
|
4
|
-
pageDir: string;
|
|
5
|
-
contentDir: string;
|
|
6
|
-
}
|
|
7
|
-
export declare function transformImgPath(src: string, { pageDir, contentDir }: DirectoryParams, { format, size }: TransformationOptions & ImgSource): string;
|
|
8
|
-
export {};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
2
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
3
|
-
};
|
|
4
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.transformImgPath = void 0;
|
|
6
|
-
const path_1 = __importDefault(require("path"));
|
|
7
|
-
const isPictureSizeEmpty_1 = require("../utils/isPictureSizeEmpty");
|
|
8
|
-
function transformImgPath(src, { pageDir, contentDir }, { format, size }) {
|
|
9
|
-
const noTransform = (0, isPictureSizeEmpty_1.isPictureSizeEmpty)(size) && !format;
|
|
10
|
-
if (noTransform) {
|
|
11
|
-
return src;
|
|
12
|
-
}
|
|
13
|
-
const imgPath = path_1.default.relative(contentDir, path_1.default.join(pageDir, src));
|
|
14
|
-
const imgDir = path_1.default.dirname(imgPath);
|
|
15
|
-
const fileName = path_1.default.basename(src, path_1.default.extname(src));
|
|
16
|
-
const fileSizes = [size?.width, size?.height].filter(Boolean);
|
|
17
|
-
const suffix = fileSizes.length ? `-${fileSizes.join('-')}` : '';
|
|
18
|
-
const ext = format ? String(format) : 'webp';
|
|
19
|
-
return path_1.default.join(imgDir, `${fileName}${suffix}.${ext}`);
|
|
20
|
-
}
|
|
21
|
-
exports.transformImgPath = transformImgPath;
|
|
22
|
-
//# sourceMappingURL=transformImgPath.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"transformImgPath.js","sourceRoot":"","sources":["../../src/content-page-repository/transformImgPath.ts"],"names":[],"mappings":";;;;;AAAA,gDAAwB;AAExB,oEAAiE;AAQjE,SAAgB,gBAAgB,CAC9B,GAAW,EACX,EAAE,OAAO,EAAE,UAAU,EAAmB,EACxC,EAAE,MAAM,EAAE,IAAI,EAAqC;IAEnD,MAAM,WAAW,GAAG,IAAA,uCAAkB,EAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC;IACxD,IAAI,WAAW,EAAE;QACf,OAAO,GAAG,CAAC;KACZ;IAED,MAAM,OAAO,GAAG,cAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,cAAI,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC,CAAC;IACnE,MAAM,MAAM,GAAG,cAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;IAErC,MAAM,QAAQ,GAAG,cAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,cAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC;IACvD,MAAM,SAAS,GAAG,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAC9D,MAAM,MAAM,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IACjE,MAAM,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;IAE7C,OAAO,cAAI,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,QAAQ,GAAG,MAAM,IAAI,GAAG,EAAE,CAAC,CAAC;AAC1D,CAAC;AAnBD,4CAmBC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { ImgSource } from '../model/Picture';
|
|
2
|
-
import type { TransformationOptions } from './TransformationOptions';
|
|
3
|
-
interface DirectoryParams {
|
|
4
|
-
pageDir: string;
|
|
5
|
-
contentDir: string;
|
|
6
|
-
}
|
|
7
|
-
export declare function transformImgPath(src: string, { pageDir, contentDir }: DirectoryParams, { format, size }: TransformationOptions & ImgSource): string;
|
|
8
|
-
export {};
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import path from 'path';
|
|
2
|
-
import { isPictureSizeEmpty } from '../utils/isPictureSizeEmpty.js';
|
|
3
|
-
export function transformImgPath(src, { pageDir, contentDir }, { format, size }) {
|
|
4
|
-
const noTransform = isPictureSizeEmpty(size) && !format;
|
|
5
|
-
if (noTransform) {
|
|
6
|
-
return src;
|
|
7
|
-
}
|
|
8
|
-
const imgPath = path.relative(contentDir, path.join(pageDir, src));
|
|
9
|
-
const imgDir = path.dirname(imgPath);
|
|
10
|
-
const fileName = path.basename(src, path.extname(src));
|
|
11
|
-
const fileSizes = [size?.width, size?.height].filter(Boolean);
|
|
12
|
-
const suffix = fileSizes.length ? `-${fileSizes.join('-')}` : '';
|
|
13
|
-
const ext = format ? String(format) : 'webp';
|
|
14
|
-
return path.join(imgDir, `${fileName}${suffix}.${ext}`);
|
|
15
|
-
}
|
|
16
|
-
//# sourceMappingURL=transformImgPath.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"transformImgPath.js","sourceRoot":"","sources":["../../src/content-page-repository/transformImgPath.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,OAAO,EAAE,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAQjE,MAAM,UAAU,gBAAgB,CAC9B,GAAW,EACX,EAAE,OAAO,EAAE,UAAU,EAAmB,EACxC,EAAE,MAAM,EAAE,IAAI,EAAqC;IAEnD,MAAM,WAAW,GAAG,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC;IACxD,IAAI,WAAW,EAAE;QACf,OAAO,GAAG,CAAC;KACZ;IAED,MAAM,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC,CAAC;IACnE,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;IAErC,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC;IACvD,MAAM,SAAS,GAAG,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAC9D,MAAM,MAAM,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IACjE,MAAM,GAAG,GAAG,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;IAE7C,OAAO,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,QAAQ,GAAG,MAAM,IAAI,GAAG,EAAE,CAAC,CAAC;AAC1D,CAAC"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import path from 'path';
|
|
2
|
-
import type { ImgSource } from '../model/Picture';
|
|
3
|
-
import { isPictureSizeEmpty } from '../utils/isPictureSizeEmpty';
|
|
4
|
-
import type { TransformationOptions } from './TransformationOptions';
|
|
5
|
-
|
|
6
|
-
interface DirectoryParams {
|
|
7
|
-
pageDir: string;
|
|
8
|
-
contentDir: string;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export function transformImgPath(
|
|
12
|
-
src: string,
|
|
13
|
-
{ pageDir, contentDir }: DirectoryParams,
|
|
14
|
-
{ format, size }: TransformationOptions & ImgSource,
|
|
15
|
-
): string {
|
|
16
|
-
const noTransform = isPictureSizeEmpty(size) && !format;
|
|
17
|
-
if (noTransform) {
|
|
18
|
-
return src;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
const imgPath = path.relative(contentDir, path.join(pageDir, src));
|
|
22
|
-
const imgDir = path.dirname(imgPath);
|
|
23
|
-
|
|
24
|
-
const fileName = path.basename(src, path.extname(src));
|
|
25
|
-
const fileSizes = [size?.width, size?.height].filter(Boolean);
|
|
26
|
-
const suffix = fileSizes.length ? `-${fileSizes.join('-')}` : '';
|
|
27
|
-
const ext = format ? String(format) : 'webp';
|
|
28
|
-
|
|
29
|
-
return path.join(imgDir, `${fileName}${suffix}.${ext}`);
|
|
30
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import path from 'path';
|
|
2
|
-
import type { ImgSource } from '../model/Picture';
|
|
3
|
-
import { isPictureSizeEmpty } from '../utils/isPictureSizeEmpty';
|
|
4
|
-
import type { TransformationOptions } from './TransformationOptions';
|
|
5
|
-
|
|
6
|
-
interface DirectoryParams {
|
|
7
|
-
pageDir: string;
|
|
8
|
-
contentDir: string;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export function transformImgPath(
|
|
12
|
-
src: string,
|
|
13
|
-
{ pageDir, contentDir }: DirectoryParams,
|
|
14
|
-
{ format, size }: TransformationOptions & ImgSource,
|
|
15
|
-
): string {
|
|
16
|
-
const noTransform = isPictureSizeEmpty(size) && !format;
|
|
17
|
-
if (noTransform) {
|
|
18
|
-
return src;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
const imgPath = path.relative(contentDir, path.join(pageDir, src));
|
|
22
|
-
const imgDir = path.dirname(imgPath);
|
|
23
|
-
|
|
24
|
-
const fileName = path.basename(src, path.extname(src));
|
|
25
|
-
const fileSizes = [size?.width, size?.height].filter(Boolean);
|
|
26
|
-
const suffix = fileSizes.length ? `-${fileSizes.join('-')}` : '';
|
|
27
|
-
const ext = format ? String(format) : 'webp';
|
|
28
|
-
|
|
29
|
-
return path.join(imgDir, `${fileName}${suffix}.${ext}`);
|
|
30
|
-
}
|