kitchen-simulator 5.0.0-test.5 → 5.0.0-test.7
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/package.json +34 -41
- package/src/@history.js +3 -0
- package/src/AppContext.js +5 -0
- package/src/KitchenConfigurator.jsx +1517 -0
- package/src/KitchenConfiguratorApp.jsx +443 -0
- package/src/actions/area-actions.js +15 -0
- package/src/actions/export.js +38 -0
- package/src/actions/groups-actions.js +102 -0
- package/src/actions/holes-actions.js +152 -0
- package/src/actions/items-actions.js +393 -0
- package/src/actions/lines-actions.js +103 -0
- package/src/actions/project-actions.js +391 -0
- package/src/actions/scene-actions.js +44 -0
- package/src/actions/user-actions.js +75 -0
- package/src/actions/vertices-actions.js +34 -0
- package/src/actions/viewer2d-actions.js +79 -0
- package/src/actions/viewer3d-actions.js +32 -0
- package/src/catalog/areas/area/planner-element.jsx +43 -0
- package/src/catalog/catalog.js +258 -0
- package/src/catalog/factories/area-factory-3d.js +252 -0
- package/src/catalog/factories/area-factory.jsx +102 -0
- package/src/catalog/factories/export.js +9 -0
- package/src/catalog/factories/wall-factory-3d.js +296 -0
- package/src/catalog/factories/wall-factory.jsx +321 -0
- package/src/catalog/holes/door-closet/planner-element.jsx +251 -0
- package/src/catalog/holes/door-double/planner-element.jsx +391 -0
- package/src/catalog/holes/door-exterior/planner-element.jsx +245 -0
- package/src/catalog/holes/door-interior/planner-element.jsx +256 -0
- package/src/catalog/holes/door-panic/planner-element.jsx +594 -0
- package/src/catalog/holes/door-panic-double/planner-element.jsx +574 -0
- package/src/catalog/holes/door-sliding/planner-element.jsx +256 -0
- package/src/catalog/holes/doorway-framed/planner-element.jsx +169 -0
- package/src/catalog/holes/doorway-frameless/planner-element.jsx +116 -0
- package/src/catalog/holes/window-clear/planner-element.jsx +181 -0
- package/src/catalog/holes/window-cross/planner-element.jsx +180 -0
- package/src/catalog/holes/window-double-hung/planner-element.jsx +366 -0
- package/src/catalog/holes/window-vertical/planner-element.jsx +290 -0
- package/src/catalog/lines/wall/planner-element.jsx +73 -0
- package/src/catalog/molding/molding-dcm/planner-element.jsx +35 -0
- package/src/catalog/molding/molding-fbm/planner-element.jsx +35 -0
- package/src/catalog/molding/molding-lrm/planner-element.jsx +35 -0
- package/src/catalog/properties/export.js +33 -0
- package/src/catalog/properties/property-checkbox.jsx +123 -0
- package/src/catalog/properties/property-color.jsx +52 -0
- package/src/catalog/properties/property-enum.jsx +87 -0
- package/src/catalog/properties/property-hidden.jsx +22 -0
- package/src/catalog/properties/property-lenght-measure.jsx +113 -0
- package/src/catalog/properties/property-length-measure.jsx +129 -0
- package/src/catalog/properties/property-length-measure_hole.jsx +110 -0
- package/src/catalog/properties/property-number.jsx +63 -0
- package/src/catalog/properties/property-read-only.jsx +37 -0
- package/src/catalog/properties/property-string.jsx +59 -0
- package/src/catalog/properties/property-toggle.jsx +51 -0
- package/src/catalog/properties/shared-property-style.js +13 -0
- package/src/catalog/utils/FuseUtils.js +61 -0
- package/src/catalog/utils/exporter.js +173 -0
- package/src/catalog/utils/geom-utils.js +301 -0
- package/src/catalog/utils/item-loader.jsx +2122 -0
- package/src/catalog/utils/load-obj.js +113 -0
- package/src/catalog/utils/mtl-loader.js +462 -0
- package/src/catalog/utils/obj-loader.js +544 -0
- package/src/class/FuseUtils.js +61 -0
- package/src/class/area.js +159 -0
- package/src/class/export.js +37 -0
- package/src/class/group.js +565 -0
- package/src/class/guide.js +44 -0
- package/src/class/hole.js +1359 -0
- package/src/class/item.js +2050 -0
- package/src/class/layer.js +926 -0
- package/src/class/line.js +1780 -0
- package/src/class/project.js +875 -0
- package/src/class/vertex.js +409 -0
- package/src/components/atoms/Snackbar/index.jsx +43 -0
- package/src/components/atoms/radio-button/index.jsx +20 -0
- package/src/components/atoms/radio-button/styles.js +56 -0
- package/src/components/button/MainButton.jsx +157 -0
- package/src/components/button/ToggleMeasureButton.jsx +65 -0
- package/src/components/catalog-view/catalog-breadcrumb.jsx +53 -0
- package/src/components/catalog-view/catalog-item.jsx +229 -0
- package/src/components/catalog-view/catalog-list.jsx +173 -0
- package/src/components/catalog-view/catalog-page-item.jsx +110 -0
- package/src/components/catalog-view/catalog-turn-back-page-item.jsx +80 -0
- package/src/components/configurator/custom-configurator.jsx +77 -0
- package/src/components/configurator/project-configurator.jsx +120 -0
- package/src/components/content.jsx +136 -0
- package/src/components/export.js +36 -0
- package/src/components/firstsetting/button/styles.js +223 -0
- package/src/components/firstsetting/export.js +9 -0
- package/src/components/firstsetting/firstsetting-content-button.jsx +198 -0
- package/src/components/firstsetting/firstsetting-toggle-button.jsx +101 -0
- package/src/components/firstsetting/firstsetting.jsx +814 -0
- package/src/components/footerbar/button/ControlButton.jsx +43 -0
- package/src/components/footerbar/button/DirectionButton.jsx +54 -0
- package/src/components/footerbar/button/DirectionPanSpinButton.jsx +36 -0
- package/src/components/footerbar/button/ToggleButton.jsx +58 -0
- package/src/components/footerbar/button/ToggleConvertButton.jsx +48 -0
- package/src/components/footerbar/button/ToggleMeasureButton.jsx +33 -0
- package/src/components/footerbar/button/styles.js +217 -0
- package/src/components/footerbar/export.js +9 -0
- package/src/components/footerbar/footer-content-button.jsx +198 -0
- package/src/components/footerbar/footer-toggle-button.jsx +101 -0
- package/src/components/footerbar/footerbar.jsx +1103 -0
- package/src/components/footerbar/styles.js +263 -0
- package/src/components/header/button/MenuButton.jsx +46 -0
- package/src/components/header/button/SaveButton.jsx +54 -0
- package/src/components/header/button/styles.js +181 -0
- package/src/components/header/export.js +5 -0
- package/src/components/header/header.jsx +631 -0
- package/src/components/header/styles.js +320 -0
- package/src/components/login/Login.js +77 -0
- package/src/components/login/LoginForm/index.js +108 -0
- package/src/components/login/Register.js +83 -0
- package/src/components/login/RegisterForm/index.js +171 -0
- package/src/components/login/jwtService.js +201 -0
- package/src/components/molecules/slider/index.jsx +15 -0
- package/src/components/molecules/slider/styles.js +0 -0
- package/src/components/myprojects/export.js +5 -0
- package/src/components/myprojects/index.jsx +445 -0
- package/src/components/myprojects/styles.js +241 -0
- package/src/components/sidebar/custom-accordion.jsx +48 -0
- package/src/components/sidebar/export.js +15 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/attributes-editor.jsx +73 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/confirm-popup.jsx +101 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/hole-attributes-editor.jsx +149 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/item-attributes-editor.jsx +316 -0
- package/src/components/sidebar/panel-element-editor/attributes-editor/line-attributes-editor.jsx +108 -0
- package/src/components/sidebar/panel-element-editor/element-editor.jsx +1070 -0
- package/src/components/sidebar/panel-element-editor/multi-elements-editor.jsx +0 -0
- package/src/components/sidebar/panel-element-editor/panel-element-editor.jsx +104 -0
- package/src/components/sidebar/panel-element-editor/panel-multi-elements-editor.jsx +155 -0
- package/src/components/sidebar/panel-group-editor.jsx +272 -0
- package/src/components/sidebar/panel-groups.jsx +310 -0
- package/src/components/sidebar/panel-guides.jsx +192 -0
- package/src/components/sidebar/panel-layer-elements.jsx +298 -0
- package/src/components/sidebar/panel-layers.jsx +381 -0
- package/src/components/sidebar/panel.jsx +71 -0
- package/src/components/sidebar/sidebar.jsx +106 -0
- package/src/components/sidebar/toolbar-panel.jsx +139 -0
- package/src/components/sign/export.js +7 -0
- package/src/components/sign/main/index.jsx +523 -0
- package/src/components/sign/main/styles.js +163 -0
- package/src/components/style/button.jsx +95 -0
- package/src/components/style/cancel-button.jsx +20 -0
- package/src/components/style/content-container.jsx +29 -0
- package/src/components/style/content-title.jsx +20 -0
- package/src/components/style/delete-button.jsx +23 -0
- package/src/components/style/export.jsx +48 -0
- package/src/components/style/form-block.jsx +13 -0
- package/src/components/style/form-color-input.jsx +27 -0
- package/src/components/style/form-label.jsx +15 -0
- package/src/components/style/form-number-input.jsx +196 -0
- package/src/components/style/form-number-input_2.jsx +191 -0
- package/src/components/style/form-select.jsx +38 -0
- package/src/components/style/form-slider.jsx +36 -0
- package/src/components/style/form-submit-button.jsx +23 -0
- package/src/components/style/form-text-input.jsx +65 -0
- package/src/components/toolbar/button/ControlButton.jsx +41 -0
- package/src/components/toolbar/button/DirectionButton.jsx +34 -0
- package/src/components/toolbar/button/RightButton.jsx +103 -0
- package/src/components/toolbar/button/ToggleButton.jsx +41 -0
- package/src/components/toolbar/button/index.jsx +55 -0
- package/src/components/toolbar/button/styles.js +127 -0
- package/src/components/toolbar/components/DoorStyleMenu.jsx +103 -0
- package/src/components/toolbar/components/Pricing.jsx +126 -0
- package/src/components/toolbar/components/ReviewForQuote.jsx +635 -0
- package/src/components/toolbar/export.js +21 -0
- package/src/components/toolbar/main/Alert.js +122 -0
- package/src/components/toolbar/main/TakePictureModal.jsx +104 -0
- package/src/components/toolbar/main/confirm-popup.jsx +99 -0
- package/src/components/toolbar/main/index.jsx +5627 -0
- package/src/components/toolbar/main/myComponents.js +123 -0
- package/src/components/toolbar/main/styles.js +696 -0
- package/src/components/toolbar/plugin-item.jsx +123 -0
- package/src/components/toolbar/popup/appliance/appliance-category/index.jsx +73 -0
- package/src/components/toolbar/popup/appliance/choose-appliance/index.jsx +102 -0
- package/src/components/toolbar/popup/appliance/index.jsx +83 -0
- package/src/components/toolbar/popup/autosaveprompt/index.jsx +150 -0
- package/src/components/toolbar/popup/autosaveprompt/styles.js +40 -0
- package/src/components/toolbar/popup/cabinet/cabinet-category/index.jsx +73 -0
- package/src/components/toolbar/popup/cabinet/choose-product/index.jsx +119 -0
- package/src/components/toolbar/popup/cabinet/index.jsx +85 -0
- package/src/components/toolbar/popup/doorStyle/choose-style/index.jsx +63 -0
- package/src/components/toolbar/popup/doorStyle/index.jsx +71 -0
- package/src/components/toolbar/popup/doorStyle/style-category/index.jsx +139 -0
- package/src/components/toolbar/popup/downloadsummary/downloadSummaryContext.js +2 -0
- package/src/components/toolbar/popup/downloadsummary/downloadSummaryTemp.jsx +157 -0
- package/src/components/toolbar/popup/downloadsummary/index.jsx +643 -0
- package/src/components/toolbar/popup/downloadsummary/show2D/show2DView.jsx +51 -0
- package/src/components/toolbar/popup/downloadsummary/show2D/viewer2DDownLoad.jsx +175 -0
- package/src/components/toolbar/popup/downloadsummary/show3D/show3DView.jsx +283 -0
- package/src/components/toolbar/popup/downloadsummary/show3D/viewer3DDownLoad.jsx +2257 -0
- package/src/components/toolbar/popup/downloadsummary/showCabinetInfo.js +93 -0
- package/src/components/toolbar/popup/downloadsummary/showElevation/showElevationView.jsx +132 -0
- package/src/components/toolbar/popup/downloadsummary/showElevation/viewer3DElevationDownload.jsx +2198 -0
- package/src/components/toolbar/popup/downloadsummary/showElevation/viewerElevationDownload.jsx +152 -0
- package/src/components/toolbar/popup/downloadsummary/showWarranty.jsx +149 -0
- package/src/components/toolbar/popup/downloadsummary/styles.js +453 -0
- package/src/components/toolbar/popup/finishingtouch/category/index.jsx +34 -0
- package/src/components/toolbar/popup/finishingtouch/index.jsx +58 -0
- package/src/components/toolbar/popup/finishingtouch/material-edit.jsx +112 -0
- package/src/components/toolbar/popup/finishingtouch/product/index.jsx +116 -0
- package/src/components/toolbar/popup/floorplan/choose-floor/confirm-popup.jsx +101 -0
- package/src/components/toolbar/popup/floorplan/choose-floor/index.jsx +254 -0
- package/src/components/toolbar/popup/floorplan/choose-floor/styles.js +86 -0
- package/src/components/toolbar/popup/floorplan/floor-category/index.jsx +109 -0
- package/src/components/toolbar/popup/floorplan/index.jsx +60 -0
- package/src/components/toolbar/popup/index.jsx +241 -0
- package/src/components/toolbar/popup/newproject/index.jsx +59 -0
- package/src/components/toolbar/popup/newproject/styles.js +41 -0
- package/src/components/toolbar/popup/product/appliance.jsx +54 -0
- package/src/components/toolbar/popup/product/cabinetproduct.jsx +15 -0
- package/src/components/toolbar/popup/product/doorstyle.jsx +58 -0
- package/src/components/toolbar/popup/product/doorstyleproduct.jsx +47 -0
- package/src/components/toolbar/popup/product/floor.jsx +36 -0
- package/src/components/toolbar/popup/product/floorproduct.jsx +42 -0
- package/src/components/toolbar/popup/product/index.jsx +36 -0
- package/src/components/toolbar/popup/product/primary.jsx +77 -0
- package/src/components/toolbar/popup/product/productline.jsx +93 -0
- package/src/components/toolbar/popup/product/reviewItem.jsx +427 -0
- package/src/components/toolbar/popup/product/reviewMolding.jsx +310 -0
- package/src/components/toolbar/popup/product/styles.js +260 -0
- package/src/components/toolbar/popup/savedesign/FullPictureForm.jsx +146 -0
- package/src/components/toolbar/popup/savedesign/index.jsx +495 -0
- package/src/components/toolbar/popup/savedesign/styles.js +151 -0
- package/src/components/toolbar/popup/setDoorStyleOption/index.jsx +87 -0
- package/src/components/toolbar/popup/styles.js +909 -0
- package/src/components/toolbar/popup/submitforquote/AddToCartOptions.jsx +192 -0
- package/src/components/toolbar/popup/submitforquote/CustomerRequestsForm.jsx +96 -0
- package/src/components/toolbar/popup/submitforquote/SkipDesignerReview.jsx +54 -0
- package/src/components/toolbar/popup/submitforquote/StepDots.jsx +25 -0
- package/src/components/toolbar/popup/submitforquote/cart-choice.jsx +116 -0
- package/src/components/toolbar/popup/submitforquote/doorstyle-menus.js +38 -0
- package/src/components/toolbar/popup/submitforquote/index.jsx +698 -0
- package/src/components/toolbar/popup/submitforquote/styles.js +294 -0
- package/src/components/toolbar/popup/submitprompt/index.jsx +89 -0
- package/src/components/toolbar/popup/submitprompt/styles.js +42 -0
- package/src/components/toolbar/toolbar-button.jsx +90 -0
- package/src/components/toolbar/toolbar-load-button.jsx +36 -0
- package/src/components/toolbar/toolbar-save-button.jsx +32 -0
- package/src/components/tutorial-view/Modal.jsx +584 -0
- package/src/components/tutorial-view/styles.js +65 -0
- package/src/components/viewer2d/area.jsx +98 -0
- package/src/components/viewer2d/export.js +48 -0
- package/src/components/viewer2d/grids/grid-horizontal-streak.jsx +40 -0
- package/src/components/viewer2d/grids/grid-streak.jsx +32 -0
- package/src/components/viewer2d/grids/grid-vertical-streak.jsx +41 -0
- package/src/components/viewer2d/grids/grids.jsx +30 -0
- package/src/components/viewer2d/group.jsx +57 -0
- package/src/components/viewer2d/item.jsx +618 -0
- package/src/components/viewer2d/layer.jsx +214 -0
- package/src/components/viewer2d/line.jsx +1358 -0
- package/src/components/viewer2d/ruler.jsx +136 -0
- package/src/components/viewer2d/rulerDist.jsx +192 -0
- package/src/components/viewer2d/rulerX.jsx +141 -0
- package/src/components/viewer2d/rulerY.jsx +138 -0
- package/src/components/viewer2d/scene.jsx +94 -0
- package/src/components/viewer2d/snap.jsx +118 -0
- package/src/components/viewer2d/state.jsx +77 -0
- package/src/components/viewer2d/utils.js +195 -0
- package/src/components/viewer2d/vertex.jsx +76 -0
- package/src/components/viewer2d/viewer2d.jsx +1830 -0
- package/src/components/viewer3d/camera-controls-module/camera-controls.module.js +3078 -0
- package/src/components/viewer3d/dcm.js +226 -0
- package/src/components/viewer3d/fbm.js +383 -0
- package/src/components/viewer3d/front3D.jsx +63 -0
- package/src/components/viewer3d/grid-creator.js +25 -0
- package/src/components/viewer3d/grids/grid-horizontal-streak.js +41 -0
- package/src/components/viewer3d/grids/grid-streak.js +34 -0
- package/src/components/viewer3d/grids/grid-vertical-streak.js +42 -0
- package/src/components/viewer3d/libs/first-person-controls.js +70 -0
- package/src/components/viewer3d/libs/helvetiker_regular.typeface.js +1265 -0
- package/src/components/viewer3d/libs/mtl-loader.js +462 -0
- package/src/components/viewer3d/libs/obj-loader.js +653 -0
- package/src/components/viewer3d/libs/orbit-controls.js +945 -0
- package/src/components/viewer3d/libs/pointer-lock-controls.js +67 -0
- package/src/components/viewer3d/lrm.js +358 -0
- package/src/components/viewer3d/model.js +830 -0
- package/src/components/viewer3d/pointer-lock-navigation.js +140 -0
- package/src/components/viewer3d/ruler-utils/itemRect.jsx +91 -0
- package/src/components/viewer3d/ruler-utils/layer3D.jsx +528 -0
- package/src/components/viewer3d/ruler-utils/ruler3D.jsx +218 -0
- package/src/components/viewer3d/ruler-utils/scene3D.jsx +87 -0
- package/src/components/viewer3d/ruler-utils/state3D.jsx +25 -0
- package/src/components/viewer3d/scene-creator.js +5169 -0
- package/src/components/viewer3d/three-memory-cleaner.js +65 -0
- package/src/components/viewer3d/viewer3d-first-person.js +395 -0
- package/src/components/viewer3d/viewer3d.js +3376 -0
- package/src/components/wizardstep/button/styles.js +677 -0
- package/src/components/wizardstep/export.js +5 -0
- package/src/components/wizardstep/index.jsx +1372 -0
- package/src/components/wizardstep/styles.js +688 -0
- package/src/components/wizardstep/wizardstep-content-button.jsx +198 -0
- package/src/components/wizardstep/wizardstep-toggle-button.jsx +101 -0
- package/src/constants.js +731 -0
- package/src/index.js +32 -0
- package/src/models.js +541 -0
- package/src/plugins/SVGLoader.js +1991 -0
- package/src/plugins/autosave.js +39 -0
- package/src/plugins/console-debugger.js +36 -0
- package/src/plugins/export.js +11 -0
- package/src/plugins/keyboard.js +194 -0
- package/src/reducers/areas-reducer.js +13 -0
- package/src/reducers/export.js +39 -0
- package/src/reducers/groups-reducer.js +73 -0
- package/src/reducers/holes-reducer.js +125 -0
- package/src/reducers/items-reducer.js +286 -0
- package/src/reducers/lines-reducer.js +96 -0
- package/src/reducers/project-reducer.js +239 -0
- package/src/reducers/reducer.js +59 -0
- package/src/reducers/scene-reducer.js +41 -0
- package/src/reducers/user-reducer.js +30 -0
- package/src/reducers/vertices-reducer.js +34 -0
- package/src/reducers/viewer2d-reducer.js +81 -0
- package/src/reducers/viewer3d-reducer.js +65 -0
- package/src/shared-style.js +72 -0
- package/src/translator/en.js +106 -0
- package/src/translator/it.js +80 -0
- package/src/translator/ru.js +80 -0
- package/src/translator/translator.js +81 -0
- package/src/utils/browser.js +36 -0
- package/src/utils/email-validator.js +5 -0
- package/src/utils/export.js +39 -0
- package/src/utils/geometry.js +2572 -0
- package/src/utils/get-edges-of-subgraphs.js +29 -0
- package/src/utils/graph-cycles.js +259 -0
- package/src/utils/graph-inner-cycles.js +49 -0
- package/src/utils/graph.js +147 -0
- package/src/utils/helper.js +431 -0
- package/src/utils/history.js +37 -0
- package/src/utils/id-broker.js +9 -0
- package/src/utils/logger.js +8 -0
- package/src/utils/math.js +51 -0
- package/src/utils/molding.js +973 -0
- package/src/utils/name-generator.js +5 -0
- package/src/utils/objects-utils.js +56 -0
- package/src/utils/phone-validator.js +4 -0
- package/src/utils/process-black-list.js +10 -0
- package/src/utils/react-if.jsx +20 -0
- package/src/utils/snap-scene.js +102 -0
- package/src/utils/snap.js +184 -0
- package/src/utils/threeCSG.es6.js +578 -0
- package/src/version.js +1 -0
- package/es/@history.js +0 -3
- package/es/@history.js.map +0 -1
- package/es/AppContext.js +0 -4
- package/es/AppContext.js.map +0 -1
- package/es/KitchenConfigurator.js +0 -1345
- package/es/KitchenConfigurator.js.map +0 -1
- package/es/KitchenConfiguratorApp.js +0 -532
- package/es/KitchenConfiguratorApp.js.map +0 -1
- package/es/actions/area-actions.js +0 -15
- package/es/actions/area-actions.js.map +0 -1
- package/es/actions/export.js +0 -26
- package/es/actions/export.js.map +0 -1
- package/es/actions/groups-actions.js +0 -90
- package/es/actions/groups-actions.js.map +0 -1
- package/es/actions/holes-actions.js +0 -120
- package/es/actions/holes-actions.js.map +0 -1
- package/es/actions/items-actions.js +0 -314
- package/es/actions/items-actions.js.map +0 -1
- package/es/actions/lines-actions.js +0 -83
- package/es/actions/lines-actions.js.map +0 -1
- package/es/actions/project-actions.js +0 -282
- package/es/actions/project-actions.js.map +0 -1
- package/es/actions/scene-actions.js +0 -34
- package/es/actions/scene-actions.js.map +0 -1
- package/es/actions/user-actions.js +0 -59
- package/es/actions/user-actions.js.map +0 -1
- package/es/actions/vertices-actions.js +0 -28
- package/es/actions/vertices-actions.js.map +0 -1
- package/es/actions/viewer2d-actions.js +0 -59
- package/es/actions/viewer2d-actions.js.map +0 -1
- package/es/actions/viewer3d-actions.js +0 -24
- package/es/actions/viewer3d-actions.js.map +0 -1
- package/es/catalog/areas/area/planner-element.js +0 -41
- package/es/catalog/areas/area/planner-element.js.map +0 -1
- package/es/catalog/catalog.js +0 -278
- package/es/catalog/catalog.js.map +0 -1
- package/es/catalog/factories/area-factory-3d.js +0 -183
- package/es/catalog/factories/area-factory-3d.js.map +0 -1
- package/es/catalog/factories/area-factory.js +0 -82
- package/es/catalog/factories/area-factory.js.map +0 -1
- package/es/catalog/factories/export.js +0 -8
- package/es/catalog/factories/export.js.map +0 -1
- package/es/catalog/factories/wall-factory-3d.js +0 -203
- package/es/catalog/factories/wall-factory-3d.js.map +0 -1
- package/es/catalog/factories/wall-factory.js +0 -269
- package/es/catalog/factories/wall-factory.js.map +0 -1
- package/es/catalog/holes/door-closet/planner-element.js +0 -223
- package/es/catalog/holes/door-closet/planner-element.js.map +0 -1
- package/es/catalog/holes/door-double/planner-element.js +0 -316
- package/es/catalog/holes/door-double/planner-element.js.map +0 -1
- package/es/catalog/holes/door-exterior/planner-element.js +0 -216
- package/es/catalog/holes/door-exterior/planner-element.js.map +0 -1
- package/es/catalog/holes/door-interior/planner-element.js +0 -228
- package/es/catalog/holes/door-interior/planner-element.js.map +0 -1
- package/es/catalog/holes/door-panic/planner-element.js +0 -504
- package/es/catalog/holes/door-panic/planner-element.js.map +0 -1
- package/es/catalog/holes/door-panic-double/planner-element.js +0 -464
- package/es/catalog/holes/door-panic-double/planner-element.js.map +0 -1
- package/es/catalog/holes/door-sliding/planner-element.js +0 -226
- package/es/catalog/holes/door-sliding/planner-element.js.map +0 -1
- package/es/catalog/holes/doorway-framed/planner-element.js +0 -146
- package/es/catalog/holes/doorway-framed/planner-element.js.map +0 -1
- package/es/catalog/holes/doorway-frameless/planner-element.js +0 -105
- package/es/catalog/holes/doorway-frameless/planner-element.js.map +0 -1
- package/es/catalog/holes/window-clear/planner-element.js +0 -167
- package/es/catalog/holes/window-clear/planner-element.js.map +0 -1
- package/es/catalog/holes/window-cross/planner-element.js +0 -166
- package/es/catalog/holes/window-cross/planner-element.js.map +0 -1
- package/es/catalog/holes/window-double-hung/planner-element.js +0 -304
- package/es/catalog/holes/window-double-hung/planner-element.js.map +0 -1
- package/es/catalog/holes/window-vertical/planner-element.js +0 -277
- package/es/catalog/holes/window-vertical/planner-element.js.map +0 -1
- package/es/catalog/lines/wall/planner-element.js +0 -71
- package/es/catalog/lines/wall/planner-element.js.map +0 -1
- package/es/catalog/molding/molding-dcm/planner-element.js +0 -30
- package/es/catalog/molding/molding-dcm/planner-element.js.map +0 -1
- package/es/catalog/molding/molding-fbm/planner-element.js +0 -30
- package/es/catalog/molding/molding-fbm/planner-element.js.map +0 -1
- package/es/catalog/molding/molding-lrm/planner-element.js +0 -30
- package/es/catalog/molding/molding-lrm/planner-element.js.map +0 -1
- package/es/catalog/properties/export.js +0 -22
- package/es/catalog/properties/export.js.map +0 -1
- package/es/catalog/properties/property-checkbox.js +0 -72
- package/es/catalog/properties/property-checkbox.js.map +0 -1
- package/es/catalog/properties/property-color.js +0 -40
- package/es/catalog/properties/property-color.js.map +0 -1
- package/es/catalog/properties/property-enum.js +0 -56
- package/es/catalog/properties/property-enum.js.map +0 -1
- package/es/catalog/properties/property-hidden.js +0 -20
- package/es/catalog/properties/property-hidden.js.map +0 -1
- package/es/catalog/properties/property-lenght-measure.js +0 -102
- package/es/catalog/properties/property-lenght-measure.js.map +0 -1
- package/es/catalog/properties/property-length-measure.js +0 -86
- package/es/catalog/properties/property-length-measure.js.map +0 -1
- package/es/catalog/properties/property-length-measure_hole.js +0 -102
- package/es/catalog/properties/property-length-measure_hole.js.map +0 -1
- package/es/catalog/properties/property-number.js +0 -49
- package/es/catalog/properties/property-number.js.map +0 -1
- package/es/catalog/properties/property-read-only.js +0 -27
- package/es/catalog/properties/property-read-only.js.map +0 -1
- package/es/catalog/properties/property-string.js +0 -49
- package/es/catalog/properties/property-string.js.map +0 -1
- package/es/catalog/properties/property-toggle.js +0 -40
- package/es/catalog/properties/property-toggle.js.map +0 -1
- package/es/catalog/properties/shared-property-style.js +0 -15
- package/es/catalog/properties/shared-property-style.js.map +0 -1
- package/es/catalog/utils/FuseUtils.js +0 -83
- package/es/catalog/utils/FuseUtils.js.map +0 -1
- package/es/catalog/utils/exporter.js +0 -149
- package/es/catalog/utils/exporter.js.map +0 -1
- package/es/catalog/utils/geom-utils.js +0 -190
- package/es/catalog/utils/geom-utils.js.map +0 -1
- package/es/catalog/utils/item-loader.js +0 -1522
- package/es/catalog/utils/item-loader.js.map +0 -1
- package/es/catalog/utils/load-obj.js +0 -92
- package/es/catalog/utils/load-obj.js.map +0 -1
- package/es/catalog/utils/mtl-loader.js +0 -358
- package/es/catalog/utils/mtl-loader.js.map +0 -1
- package/es/catalog/utils/obj-loader.js +0 -477
- package/es/catalog/utils/obj-loader.js.map +0 -1
- package/es/class/FuseUtils.js +0 -83
- package/es/class/FuseUtils.js.map +0 -1
- package/es/class/area.js +0 -146
- package/es/class/area.js.map +0 -1
- package/es/class/export.js +0 -25
- package/es/class/export.js.map +0 -1
- package/es/class/group.js +0 -441
- package/es/class/group.js.map +0 -1
- package/es/class/guide.js +0 -63
- package/es/class/guide.js.map +0 -1
- package/es/class/hole.js +0 -931
- package/es/class/hole.js.map +0 -1
- package/es/class/item.js +0 -1888
- package/es/class/item.js.map +0 -1
- package/es/class/layer.js +0 -668
- package/es/class/layer.js.map +0 -1
- package/es/class/line.js +0 -1290
- package/es/class/line.js.map +0 -1
- package/es/class/project.js +0 -823
- package/es/class/project.js.map +0 -1
- package/es/class/vertex.js +0 -267
- package/es/class/vertex.js.map +0 -1
- package/es/components/atoms/Snackbar/index.js +0 -50
- package/es/components/atoms/Snackbar/index.js.map +0 -1
- package/es/components/atoms/radio-button/index.js +0 -26
- package/es/components/atoms/radio-button/index.js.map +0 -1
- package/es/components/atoms/radio-button/styles.js +0 -5
- package/es/components/atoms/radio-button/styles.js.map +0 -1
- package/es/components/button/MainButton.js +0 -92
- package/es/components/button/MainButton.js.map +0 -1
- package/es/components/button/ToggleMeasureButton.js +0 -56
- package/es/components/button/ToggleMeasureButton.js.map +0 -1
- package/es/components/catalog-view/catalog-breadcrumb.js +0 -53
- package/es/components/catalog-view/catalog-breadcrumb.js.map +0 -1
- package/es/components/catalog-view/catalog-item.js +0 -226
- package/es/components/catalog-view/catalog-item.js.map +0 -1
- package/es/components/catalog-view/catalog-list.js +0 -182
- package/es/components/catalog-view/catalog-list.js.map +0 -1
- package/es/components/catalog-view/catalog-page-item.js +0 -130
- package/es/components/catalog-view/catalog-page-item.js.map +0 -1
- package/es/components/catalog-view/catalog-turn-back-page-item.js +0 -106
- package/es/components/catalog-view/catalog-turn-back-page-item.js.map +0 -1
- package/es/components/configurator/custom-configurator.js +0 -94
- package/es/components/configurator/custom-configurator.js.map +0 -1
- package/es/components/configurator/project-configurator.js +0 -131
- package/es/components/configurator/project-configurator.js.map +0 -1
- package/es/components/content.js +0 -123
- package/es/components/content.js.map +0 -1
- package/es/components/export.js +0 -24
- package/es/components/export.js.map +0 -1
- package/es/components/firstsetting/button/styles.js +0 -27
- package/es/components/firstsetting/button/styles.js.map +0 -1
- package/es/components/firstsetting/export.js +0 -9
- package/es/components/firstsetting/export.js.map +0 -1
- package/es/components/firstsetting/firstsetting-content-button.js +0 -217
- package/es/components/firstsetting/firstsetting-content-button.js.map +0 -1
- package/es/components/firstsetting/firstsetting-toggle-button.js +0 -126
- package/es/components/firstsetting/firstsetting-toggle-button.js.map +0 -1
- package/es/components/firstsetting/firstsetting.js +0 -626
- package/es/components/firstsetting/firstsetting.js.map +0 -1
- package/es/components/footerbar/button/ControlButton.js +0 -72
- package/es/components/footerbar/button/ControlButton.js.map +0 -1
- package/es/components/footerbar/button/DirectionButton.js +0 -69
- package/es/components/footerbar/button/DirectionButton.js.map +0 -1
- package/es/components/footerbar/button/DirectionPanSpinButton.js +0 -50
- package/es/components/footerbar/button/DirectionPanSpinButton.js.map +0 -1
- package/es/components/footerbar/button/ToggleButton.js +0 -76
- package/es/components/footerbar/button/ToggleButton.js.map +0 -1
- package/es/components/footerbar/button/ToggleConvertButton.js +0 -73
- package/es/components/footerbar/button/ToggleConvertButton.js.map +0 -1
- package/es/components/footerbar/button/ToggleMeasureButton.js +0 -52
- package/es/components/footerbar/button/ToggleMeasureButton.js.map +0 -1
- package/es/components/footerbar/button/styles.js +0 -22
- package/es/components/footerbar/button/styles.js.map +0 -1
- package/es/components/footerbar/export.js +0 -9
- package/es/components/footerbar/export.js.map +0 -1
- package/es/components/footerbar/footer-content-button.js +0 -217
- package/es/components/footerbar/footer-content-button.js.map +0 -1
- package/es/components/footerbar/footer-toggle-button.js +0 -126
- package/es/components/footerbar/footer-toggle-button.js.map +0 -1
- package/es/components/footerbar/footerbar.js +0 -801
- package/es/components/footerbar/footerbar.js.map +0 -1
- package/es/components/footerbar/styles.js +0 -34
- package/es/components/footerbar/styles.js.map +0 -1
- package/es/components/header/button/MenuButton.js +0 -70
- package/es/components/header/button/MenuButton.js.map +0 -1
- package/es/components/header/button/SaveButton.js +0 -48
- package/es/components/header/button/SaveButton.js.map +0 -1
- package/es/components/header/button/styles.js +0 -59
- package/es/components/header/button/styles.js.map +0 -1
- package/es/components/header/export.js +0 -5
- package/es/components/header/export.js.map +0 -1
- package/es/components/header/header.js +0 -550
- package/es/components/header/header.js.map +0 -1
- package/es/components/header/styles.js +0 -41
- package/es/components/header/styles.js.map +0 -1
- package/es/components/login/Login.js +0 -86
- package/es/components/login/Login.js.map +0 -1
- package/es/components/login/LoginForm/index.js +0 -132
- package/es/components/login/LoginForm/index.js.map +0 -1
- package/es/components/login/Register.js +0 -96
- package/es/components/login/Register.js.map +0 -1
- package/es/components/login/RegisterForm/index.js +0 -230
- package/es/components/login/RegisterForm/index.js.map +0 -1
- package/es/components/login/jwtService.js +0 -232
- package/es/components/login/jwtService.js.map +0 -1
- package/es/components/molecules/slider/index.js +0 -13
- package/es/components/molecules/slider/index.js.map +0 -1
- package/es/components/molecules/slider/styles.js +0 -2
- package/es/components/molecules/slider/styles.js.map +0 -1
- package/es/components/myprojects/export.js +0 -5
- package/es/components/myprojects/export.js.map +0 -1
- package/es/components/myprojects/index.js +0 -446
- package/es/components/myprojects/index.js.map +0 -1
- package/es/components/myprojects/styles.js +0 -24
- package/es/components/myprojects/styles.js.map +0 -1
- package/es/components/sidebar/custom-accordion.js +0 -38
- package/es/components/sidebar/custom-accordion.js.map +0 -1
- package/es/components/sidebar/export.js +0 -14
- package/es/components/sidebar/export.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/attributes-editor.js +0 -65
- package/es/components/sidebar/panel-element-editor/attributes-editor/attributes-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/confirm-popup.js +0 -116
- package/es/components/sidebar/panel-element-editor/attributes-editor/confirm-popup.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/hole-attributes-editor.js +0 -126
- package/es/components/sidebar/panel-element-editor/attributes-editor/hole-attributes-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/item-attributes-editor.js +0 -251
- package/es/components/sidebar/panel-element-editor/attributes-editor/item-attributes-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/attributes-editor/line-attributes-editor.js +0 -75
- package/es/components/sidebar/panel-element-editor/attributes-editor/line-attributes-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/element-editor.js +0 -878
- package/es/components/sidebar/panel-element-editor/element-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/multi-elements-editor.js +0 -2
- package/es/components/sidebar/panel-element-editor/multi-elements-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/panel-element-editor.js +0 -49
- package/es/components/sidebar/panel-element-editor/panel-element-editor.js.map +0 -1
- package/es/components/sidebar/panel-element-editor/panel-multi-elements-editor.js +0 -118
- package/es/components/sidebar/panel-element-editor/panel-multi-elements-editor.js.map +0 -1
- package/es/components/sidebar/panel-group-editor.js +0 -211
- package/es/components/sidebar/panel-group-editor.js.map +0 -1
- package/es/components/sidebar/panel-groups.js +0 -267
- package/es/components/sidebar/panel-groups.js.map +0 -1
- package/es/components/sidebar/panel-guides.js +0 -185
- package/es/components/sidebar/panel-guides.js.map +0 -1
- package/es/components/sidebar/panel-layer-elements.js +0 -251
- package/es/components/sidebar/panel-layer-elements.js.map +0 -1
- package/es/components/sidebar/panel-layers.js +0 -340
- package/es/components/sidebar/panel-layers.js.map +0 -1
- package/es/components/sidebar/panel.js +0 -103
- package/es/components/sidebar/panel.js.map +0 -1
- package/es/components/sidebar/sidebar.js +0 -109
- package/es/components/sidebar/sidebar.js.map +0 -1
- package/es/components/sidebar/toolbar-panel.js +0 -164
- package/es/components/sidebar/toolbar-panel.js.map +0 -1
- package/es/components/sign/export.js +0 -6
- package/es/components/sign/export.js.map +0 -1
- package/es/components/sign/main/index.js +0 -560
- package/es/components/sign/main/index.js.map +0 -1
- package/es/components/sign/main/styles.js +0 -20
- package/es/components/sign/main/styles.js.map +0 -1
- package/es/components/style/button.js +0 -114
- package/es/components/style/button.js.map +0 -1
- package/es/components/style/cancel-button.js +0 -23
- package/es/components/style/cancel-button.js.map +0 -1
- package/es/components/style/content-container.js +0 -34
- package/es/components/style/content-container.js.map +0 -1
- package/es/components/style/content-title.js +0 -30
- package/es/components/style/content-title.js.map +0 -1
- package/es/components/style/delete-button.js +0 -26
- package/es/components/style/delete-button.js.map +0 -1
- package/es/components/style/export.js +0 -32
- package/es/components/style/export.js.map +0 -1
- package/es/components/style/form-block.js +0 -25
- package/es/components/style/form-block.js.map +0 -1
- package/es/components/style/form-color-input.js +0 -28
- package/es/components/style/form-color-input.js.map +0 -1
- package/es/components/style/form-label.js +0 -27
- package/es/components/style/form-label.js.map +0 -1
- package/es/components/style/form-number-input.js +0 -190
- package/es/components/style/form-number-input.js.map +0 -1
- package/es/components/style/form-number-input_2.js +0 -207
- package/es/components/style/form-number-input_2.js.map +0 -1
- package/es/components/style/form-select.js +0 -21
- package/es/components/style/form-select.js.map +0 -1
- package/es/components/style/form-slider.js +0 -46
- package/es/components/style/form-slider.js.map +0 -1
- package/es/components/style/form-submit-button.js +0 -27
- package/es/components/style/form-submit-button.js.map +0 -1
- package/es/components/style/form-text-input.js +0 -77
- package/es/components/style/form-text-input.js.map +0 -1
- package/es/components/toolbar/button/ControlButton.js +0 -69
- package/es/components/toolbar/button/ControlButton.js.map +0 -1
- package/es/components/toolbar/button/DirectionButton.js +0 -50
- package/es/components/toolbar/button/DirectionButton.js.map +0 -1
- package/es/components/toolbar/button/RightButton.js +0 -133
- package/es/components/toolbar/button/RightButton.js.map +0 -1
- package/es/components/toolbar/button/ToggleButton.js +0 -59
- package/es/components/toolbar/button/ToggleButton.js.map +0 -1
- package/es/components/toolbar/button/index.js +0 -88
- package/es/components/toolbar/button/index.js.map +0 -1
- package/es/components/toolbar/button/styles.js +0 -14
- package/es/components/toolbar/button/styles.js.map +0 -1
- package/es/components/toolbar/components/DoorStyleMenu.js +0 -105
- package/es/components/toolbar/components/DoorStyleMenu.js.map +0 -1
- package/es/components/toolbar/components/Pricing.js +0 -101
- package/es/components/toolbar/components/Pricing.js.map +0 -1
- package/es/components/toolbar/components/ReviewForQuote.js +0 -476
- package/es/components/toolbar/components/ReviewForQuote.js.map +0 -1
- package/es/components/toolbar/export.js +0 -14
- package/es/components/toolbar/export.js.map +0 -1
- package/es/components/toolbar/main/Alert.js +0 -125
- package/es/components/toolbar/main/Alert.js.map +0 -1
- package/es/components/toolbar/main/TakePictureModal.js +0 -100
- package/es/components/toolbar/main/TakePictureModal.js.map +0 -1
- package/es/components/toolbar/main/confirm-popup.js +0 -88
- package/es/components/toolbar/main/confirm-popup.js.map +0 -1
- package/es/components/toolbar/main/index.js +0 -4612
- package/es/components/toolbar/main/index.js.map +0 -1
- package/es/components/toolbar/main/myComponents.js +0 -118
- package/es/components/toolbar/main/myComponents.js.map +0 -1
- package/es/components/toolbar/main/styles.js +0 -64
- package/es/components/toolbar/main/styles.js.map +0 -1
- package/es/components/toolbar/plugin-item.js +0 -150
- package/es/components/toolbar/plugin-item.js.map +0 -1
- package/es/components/toolbar/popup/appliance/appliance-category/index.js +0 -77
- package/es/components/toolbar/popup/appliance/appliance-category/index.js.map +0 -1
- package/es/components/toolbar/popup/appliance/choose-appliance/index.js +0 -76
- package/es/components/toolbar/popup/appliance/choose-appliance/index.js.map +0 -1
- package/es/components/toolbar/popup/appliance/index.js +0 -81
- package/es/components/toolbar/popup/appliance/index.js.map +0 -1
- package/es/components/toolbar/popup/autosaveprompt/index.js +0 -91
- package/es/components/toolbar/popup/autosaveprompt/index.js.map +0 -1
- package/es/components/toolbar/popup/autosaveprompt/styles.js +0 -9
- package/es/components/toolbar/popup/autosaveprompt/styles.js.map +0 -1
- package/es/components/toolbar/popup/cabinet/cabinet-category/index.js +0 -77
- package/es/components/toolbar/popup/cabinet/cabinet-category/index.js.map +0 -1
- package/es/components/toolbar/popup/cabinet/choose-product/index.js +0 -98
- package/es/components/toolbar/popup/cabinet/choose-product/index.js.map +0 -1
- package/es/components/toolbar/popup/cabinet/index.js +0 -83
- package/es/components/toolbar/popup/cabinet/index.js.map +0 -1
- package/es/components/toolbar/popup/doorStyle/choose-style/index.js +0 -50
- package/es/components/toolbar/popup/doorStyle/choose-style/index.js.map +0 -1
- package/es/components/toolbar/popup/doorStyle/index.js +0 -61
- package/es/components/toolbar/popup/doorStyle/index.js.map +0 -1
- package/es/components/toolbar/popup/doorStyle/style-category/index.js +0 -143
- package/es/components/toolbar/popup/doorStyle/style-category/index.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/downloadSummaryContext.js +0 -3
- package/es/components/toolbar/popup/downloadsummary/downloadSummaryContext.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/downloadSummaryTemp.js +0 -119
- package/es/components/toolbar/popup/downloadsummary/downloadSummaryTemp.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/index.js +0 -564
- package/es/components/toolbar/popup/downloadsummary/index.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/show2D/show2DView.js +0 -51
- package/es/components/toolbar/popup/downloadsummary/show2D/show2DView.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/show2D/viewer2DDownLoad.js +0 -191
- package/es/components/toolbar/popup/downloadsummary/show2D/viewer2DDownLoad.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/show3D/show3DView.js +0 -245
- package/es/components/toolbar/popup/downloadsummary/show3D/show3DView.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/show3D/viewer3DDownLoad.js +0 -1758
- package/es/components/toolbar/popup/downloadsummary/show3D/viewer3DDownLoad.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showCabinetInfo.js +0 -87
- package/es/components/toolbar/popup/downloadsummary/showCabinetInfo.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showElevation/showElevationView.js +0 -116
- package/es/components/toolbar/popup/downloadsummary/showElevation/showElevationView.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showElevation/viewer3DElevationDownload.js +0 -1710
- package/es/components/toolbar/popup/downloadsummary/showElevation/viewer3DElevationDownload.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showElevation/viewerElevationDownload.js +0 -175
- package/es/components/toolbar/popup/downloadsummary/showElevation/viewerElevationDownload.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/showWarranty.js +0 -106
- package/es/components/toolbar/popup/downloadsummary/showWarranty.js.map +0 -1
- package/es/components/toolbar/popup/downloadsummary/styles.js +0 -40
- package/es/components/toolbar/popup/downloadsummary/styles.js.map +0 -1
- package/es/components/toolbar/popup/finishingtouch/category/index.js +0 -35
- package/es/components/toolbar/popup/finishingtouch/category/index.js.map +0 -1
- package/es/components/toolbar/popup/finishingtouch/index.js +0 -47
- package/es/components/toolbar/popup/finishingtouch/index.js.map +0 -1
- package/es/components/toolbar/popup/finishingtouch/material-edit.js +0 -156
- package/es/components/toolbar/popup/finishingtouch/material-edit.js.map +0 -1
- package/es/components/toolbar/popup/finishingtouch/product/index.js +0 -56
- package/es/components/toolbar/popup/finishingtouch/product/index.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/choose-floor/confirm-popup.js +0 -116
- package/es/components/toolbar/popup/floorplan/choose-floor/confirm-popup.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/choose-floor/index.js +0 -246
- package/es/components/toolbar/popup/floorplan/choose-floor/index.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/choose-floor/styles.js +0 -11
- package/es/components/toolbar/popup/floorplan/choose-floor/styles.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/floor-category/index.js +0 -90
- package/es/components/toolbar/popup/floorplan/floor-category/index.js.map +0 -1
- package/es/components/toolbar/popup/floorplan/index.js +0 -49
- package/es/components/toolbar/popup/floorplan/index.js.map +0 -1
- package/es/components/toolbar/popup/index.js +0 -188
- package/es/components/toolbar/popup/index.js.map +0 -1
- package/es/components/toolbar/popup/newproject/index.js +0 -67
- package/es/components/toolbar/popup/newproject/index.js.map +0 -1
- package/es/components/toolbar/popup/newproject/styles.js +0 -9
- package/es/components/toolbar/popup/newproject/styles.js.map +0 -1
- package/es/components/toolbar/popup/product/appliance.js +0 -65
- package/es/components/toolbar/popup/product/appliance.js.map +0 -1
- package/es/components/toolbar/popup/product/cabinetproduct.js +0 -25
- package/es/components/toolbar/popup/product/cabinetproduct.js.map +0 -1
- package/es/components/toolbar/popup/product/doorstyle.js +0 -50
- package/es/components/toolbar/popup/product/doorstyle.js.map +0 -1
- package/es/components/toolbar/popup/product/doorstyleproduct.js +0 -51
- package/es/components/toolbar/popup/product/doorstyleproduct.js.map +0 -1
- package/es/components/toolbar/popup/product/floor.js +0 -52
- package/es/components/toolbar/popup/product/floor.js.map +0 -1
- package/es/components/toolbar/popup/product/floorproduct.js +0 -61
- package/es/components/toolbar/popup/product/floorproduct.js.map +0 -1
- package/es/components/toolbar/popup/product/index.js +0 -52
- package/es/components/toolbar/popup/product/index.js.map +0 -1
- package/es/components/toolbar/popup/product/primary.js +0 -63
- package/es/components/toolbar/popup/product/primary.js.map +0 -1
- package/es/components/toolbar/popup/product/productline.js +0 -120
- package/es/components/toolbar/popup/product/productline.js.map +0 -1
- package/es/components/toolbar/popup/product/reviewItem.js +0 -338
- package/es/components/toolbar/popup/product/reviewItem.js.map +0 -1
- package/es/components/toolbar/popup/product/reviewMolding.js +0 -282
- package/es/components/toolbar/popup/product/reviewMolding.js.map +0 -1
- package/es/components/toolbar/popup/product/styles.js +0 -71
- package/es/components/toolbar/popup/product/styles.js.map +0 -1
- package/es/components/toolbar/popup/savedesign/FullPictureForm.js +0 -161
- package/es/components/toolbar/popup/savedesign/FullPictureForm.js.map +0 -1
- package/es/components/toolbar/popup/savedesign/index.js +0 -508
- package/es/components/toolbar/popup/savedesign/index.js.map +0 -1
- package/es/components/toolbar/popup/savedesign/styles.js +0 -19
- package/es/components/toolbar/popup/savedesign/styles.js.map +0 -1
- package/es/components/toolbar/popup/setDoorStyleOption/index.js +0 -57
- package/es/components/toolbar/popup/setDoorStyleOption/index.js.map +0 -1
- package/es/components/toolbar/popup/styles.js +0 -98
- package/es/components/toolbar/popup/styles.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/AddToCartOptions.js +0 -157
- package/es/components/toolbar/popup/submitforquote/AddToCartOptions.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/CustomerRequestsForm.js +0 -85
- package/es/components/toolbar/popup/submitforquote/CustomerRequestsForm.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/SkipDesignerReview.js +0 -36
- package/es/components/toolbar/popup/submitforquote/SkipDesignerReview.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/StepDots.js +0 -33
- package/es/components/toolbar/popup/submitforquote/StepDots.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/cart-choice.js +0 -132
- package/es/components/toolbar/popup/submitforquote/cart-choice.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/doorstyle-menus.js +0 -43
- package/es/components/toolbar/popup/submitforquote/doorstyle-menus.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/index.js +0 -690
- package/es/components/toolbar/popup/submitforquote/index.js.map +0 -1
- package/es/components/toolbar/popup/submitforquote/styles.js +0 -31
- package/es/components/toolbar/popup/submitforquote/styles.js.map +0 -1
- package/es/components/toolbar/popup/submitprompt/index.js +0 -71
- package/es/components/toolbar/popup/submitprompt/index.js.map +0 -1
- package/es/components/toolbar/popup/submitprompt/styles.js +0 -9
- package/es/components/toolbar/popup/submitprompt/styles.js.map +0 -1
- package/es/components/toolbar/toolbar-button.js +0 -105
- package/es/components/toolbar/toolbar-button.js.map +0 -1
- package/es/components/toolbar/toolbar-load-button.js +0 -29
- package/es/components/toolbar/toolbar-load-button.js.map +0 -1
- package/es/components/toolbar/toolbar-save-button.js +0 -27
- package/es/components/toolbar/toolbar-save-button.js.map +0 -1
- package/es/components/tutorial-view/Modal.js +0 -498
- package/es/components/tutorial-view/Modal.js.map +0 -1
- package/es/components/tutorial-view/styles.js +0 -6
- package/es/components/tutorial-view/styles.js.map +0 -1
- package/es/components/viewer2d/area.js +0 -83
- package/es/components/viewer2d/area.js.map +0 -1
- package/es/components/viewer2d/export.js +0 -32
- package/es/components/viewer2d/export.js.map +0 -1
- package/es/components/viewer2d/grids/grid-horizontal-streak.js +0 -38
- package/es/components/viewer2d/grids/grid-horizontal-streak.js.map +0 -1
- package/es/components/viewer2d/grids/grid-streak.js +0 -38
- package/es/components/viewer2d/grids/grid-streak.js.map +0 -1
- package/es/components/viewer2d/grids/grid-vertical-streak.js +0 -38
- package/es/components/viewer2d/grids/grid-vertical-streak.js.map +0 -1
- package/es/components/viewer2d/grids/grids.js +0 -36
- package/es/components/viewer2d/grids/grids.js.map +0 -1
- package/es/components/viewer2d/group.js +0 -54
- package/es/components/viewer2d/group.js.map +0 -1
- package/es/components/viewer2d/item.js +0 -514
- package/es/components/viewer2d/item.js.map +0 -1
- package/es/components/viewer2d/layer.js +0 -165
- package/es/components/viewer2d/layer.js.map +0 -1
- package/es/components/viewer2d/line.js +0 -889
- package/es/components/viewer2d/line.js.map +0 -1
- package/es/components/viewer2d/ruler.js +0 -101
- package/es/components/viewer2d/ruler.js.map +0 -1
- package/es/components/viewer2d/rulerDist.js +0 -147
- package/es/components/viewer2d/rulerDist.js.map +0 -1
- package/es/components/viewer2d/rulerX.js +0 -152
- package/es/components/viewer2d/rulerX.js.map +0 -1
- package/es/components/viewer2d/rulerY.js +0 -154
- package/es/components/viewer2d/rulerY.js.map +0 -1
- package/es/components/viewer2d/scene.js +0 -141
- package/es/components/viewer2d/scene.js.map +0 -1
- package/es/components/viewer2d/snap.js +0 -75
- package/es/components/viewer2d/snap.js.map +0 -1
- package/es/components/viewer2d/state.js +0 -79
- package/es/components/viewer2d/state.js.map +0 -1
- package/es/components/viewer2d/utils.js +0 -163
- package/es/components/viewer2d/utils.js.map +0 -1
- package/es/components/viewer2d/vertex.js +0 -67
- package/es/components/viewer2d/vertex.js.map +0 -1
- package/es/components/viewer2d/viewer2d.js +0 -1402
- package/es/components/viewer2d/viewer2d.js.map +0 -1
- package/es/components/viewer3d/camera-controls-module/camera-controls.module.js +0 -2593
- package/es/components/viewer3d/camera-controls-module/camera-controls.module.js.map +0 -1
- package/es/components/viewer3d/dcm.js +0 -402
- package/es/components/viewer3d/dcm.js.map +0 -1
- package/es/components/viewer3d/fbm.js +0 -415
- package/es/components/viewer3d/fbm.js.map +0 -1
- package/es/components/viewer3d/front3D.js +0 -67
- package/es/components/viewer3d/front3D.js.map +0 -1
- package/es/components/viewer3d/grid-creator.js +0 -26
- package/es/components/viewer3d/grid-creator.js.map +0 -1
- package/es/components/viewer3d/grids/grid-horizontal-streak.js +0 -37
- package/es/components/viewer3d/grids/grid-horizontal-streak.js.map +0 -1
- package/es/components/viewer3d/grids/grid-streak.js +0 -28
- package/es/components/viewer3d/grids/grid-streak.js.map +0 -1
- package/es/components/viewer3d/grids/grid-vertical-streak.js +0 -37
- package/es/components/viewer3d/grids/grid-vertical-streak.js.map +0 -1
- package/es/components/viewer3d/libs/first-person-controls.js +0 -68
- package/es/components/viewer3d/libs/first-person-controls.js.map +0 -1
- package/es/components/viewer3d/libs/helvetiker_regular.typeface.js +0 -1282
- package/es/components/viewer3d/libs/helvetiker_regular.typeface.js.map +0 -1
- package/es/components/viewer3d/libs/mtl-loader.js +0 -358
- package/es/components/viewer3d/libs/mtl-loader.js.map +0 -1
- package/es/components/viewer3d/libs/obj-loader.js +0 -463
- package/es/components/viewer3d/libs/obj-loader.js.map +0 -1
- package/es/components/viewer3d/libs/orbit-controls.js +0 -699
- package/es/components/viewer3d/libs/orbit-controls.js.map +0 -1
- package/es/components/viewer3d/libs/pointer-lock-controls.js +0 -46
- package/es/components/viewer3d/libs/pointer-lock-controls.js.map +0 -1
- package/es/components/viewer3d/lrm.js +0 -306
- package/es/components/viewer3d/lrm.js.map +0 -1
- package/es/components/viewer3d/model.js +0 -709
- package/es/components/viewer3d/model.js.map +0 -1
- package/es/components/viewer3d/pointer-lock-navigation.js +0 -116
- package/es/components/viewer3d/pointer-lock-navigation.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/itemRect.js +0 -62
- package/es/components/viewer3d/ruler-utils/itemRect.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/layer3D.js +0 -496
- package/es/components/viewer3d/ruler-utils/layer3D.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/ruler3D.js +0 -228
- package/es/components/viewer3d/ruler-utils/ruler3D.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/scene3D.js +0 -62
- package/es/components/viewer3d/ruler-utils/scene3D.js.map +0 -1
- package/es/components/viewer3d/ruler-utils/state3D.js +0 -19
- package/es/components/viewer3d/ruler-utils/state3D.js.map +0 -1
- package/es/components/viewer3d/scene-creator.js +0 -3607
- package/es/components/viewer3d/scene-creator.js.map +0 -1
- package/es/components/viewer3d/three-memory-cleaner.js +0 -52
- package/es/components/viewer3d/three-memory-cleaner.js.map +0 -1
- package/es/components/viewer3d/viewer3d-first-person.js +0 -316
- package/es/components/viewer3d/viewer3d-first-person.js.map +0 -1
- package/es/components/viewer3d/viewer3d.js +0 -2504
- package/es/components/viewer3d/viewer3d.js.map +0 -1
- package/es/components/wizardstep/button/styles.js +0 -60
- package/es/components/wizardstep/button/styles.js.map +0 -1
- package/es/components/wizardstep/export.js +0 -5
- package/es/components/wizardstep/export.js.map +0 -1
- package/es/components/wizardstep/index.js +0 -971
- package/es/components/wizardstep/index.js.map +0 -1
- package/es/components/wizardstep/styles.js +0 -61
- package/es/components/wizardstep/styles.js.map +0 -1
- package/es/components/wizardstep/wizardstep-content-button.js +0 -217
- package/es/components/wizardstep/wizardstep-content-button.js.map +0 -1
- package/es/components/wizardstep/wizardstep-toggle-button.js +0 -126
- package/es/components/wizardstep/wizardstep-toggle-button.js.map +0 -1
- package/es/constants.js +0 -637
- package/es/constants.js.map +0 -1
- package/es/hooks/useCheckCart.js +0 -53
- package/es/hooks/useCheckCart.js.map +0 -1
- package/es/hooks/useGetPricesBySku.js +0 -74
- package/es/hooks/useGetPricesBySku.js.map +0 -1
- package/es/hooks/useValidateToken.js +0 -201
- package/es/hooks/useValidateToken.js.map +0 -1
- package/es/index.js +0 -17
- package/es/index.js.map +0 -1
- package/es/models.js +0 -511
- package/es/models.js.map +0 -1
- package/es/plugins/SVGLoader.js +0 -1413
- package/es/plugins/SVGLoader.js.map +0 -1
- package/es/plugins/autosave.js +0 -34
- package/es/plugins/autosave.js.map +0 -1
- package/es/plugins/console-debugger.js +0 -38
- package/es/plugins/console-debugger.js.map +0 -1
- package/es/plugins/export.js +0 -10
- package/es/plugins/export.js.map +0 -1
- package/es/plugins/keyboard.js +0 -102
- package/es/plugins/keyboard.js.map +0 -1
- package/es/reducers/areas-reducer.js +0 -13
- package/es/reducers/areas-reducer.js.map +0 -1
- package/es/reducers/export.js +0 -26
- package/es/reducers/export.js.map +0 -1
- package/es/reducers/groups-reducer.js +0 -39
- package/es/reducers/groups-reducer.js.map +0 -1
- package/es/reducers/holes-reducer.js +0 -63
- package/es/reducers/holes-reducer.js.map +0 -1
- package/es/reducers/items-reducer.js +0 -144
- package/es/reducers/items-reducer.js.map +0 -1
- package/es/reducers/lines-reducer.js +0 -46
- package/es/reducers/lines-reducer.js.map +0 -1
- package/es/reducers/project-reducer.js +0 -130
- package/es/reducers/project-reducer.js.map +0 -1
- package/es/reducers/reducer.js +0 -20
- package/es/reducers/reducer.js.map +0 -1
- package/es/reducers/scene-reducer.js +0 -29
- package/es/reducers/scene-reducer.js.map +0 -1
- package/es/reducers/user-reducer.js +0 -42
- package/es/reducers/user-reducer.js.map +0 -1
- package/es/reducers/vertices-reducer.js +0 -20
- package/es/reducers/vertices-reducer.js.map +0 -1
- package/es/reducers/viewer2d-reducer.js +0 -76
- package/es/reducers/viewer2d-reducer.js.map +0 -1
- package/es/reducers/viewer3d-reducer.js +0 -57
- package/es/reducers/viewer3d-reducer.js.map +0 -1
- package/es/shared-style.js +0 -67
- package/es/shared-style.js.map +0 -1
- package/es/styles/export.js +0 -6
- package/es/styles/export.js.map +0 -1
- package/es/styles/tabs.css +0 -40
- package/es/translator/en.js +0 -105
- package/es/translator/en.js.map +0 -1
- package/es/translator/it.js +0 -80
- package/es/translator/it.js.map +0 -1
- package/es/translator/ru.js +0 -80
- package/es/translator/ru.js.map +0 -1
- package/es/translator/translator.js +0 -85
- package/es/translator/translator.js.map +0 -1
- package/es/utils/browser.js +0 -34
- package/es/utils/browser.js.map +0 -1
- package/es/utils/email-validator.js +0 -5
- package/es/utils/email-validator.js.map +0 -1
- package/es/utils/export.js +0 -26
- package/es/utils/export.js.map +0 -1
- package/es/utils/geometry.js +0 -2237
- package/es/utils/geometry.js.map +0 -1
- package/es/utils/get-edges-of-subgraphs.js +0 -27
- package/es/utils/get-edges-of-subgraphs.js.map +0 -1
- package/es/utils/graph-cycles.js +0 -239
- package/es/utils/graph-cycles.js.map +0 -1
- package/es/utils/graph-inner-cycles.js +0 -47
- package/es/utils/graph-inner-cycles.js.map +0 -1
- package/es/utils/graph.js +0 -150
- package/es/utils/graph.js.map +0 -1
- package/es/utils/helper.js +0 -337
- package/es/utils/helper.js.map +0 -1
- package/es/utils/history.js +0 -30
- package/es/utils/history.js.map +0 -1
- package/es/utils/id-broker.js +0 -20
- package/es/utils/id-broker.js.map +0 -1
- package/es/utils/logger.js +0 -9
- package/es/utils/logger.js.map +0 -1
- package/es/utils/math.js +0 -51
- package/es/utils/math.js.map +0 -1
- package/es/utils/molding.js +0 -840
- package/es/utils/molding.js.map +0 -1
- package/es/utils/name-generator.js +0 -19
- package/es/utils/name-generator.js.map +0 -1
- package/es/utils/objects-utils.js +0 -51
- package/es/utils/objects-utils.js.map +0 -1
- package/es/utils/phone-validator.js +0 -5
- package/es/utils/phone-validator.js.map +0 -1
- package/es/utils/process-black-list.js +0 -19
- package/es/utils/process-black-list.js.map +0 -1
- package/es/utils/react-if.js +0 -19
- package/es/utils/react-if.js.map +0 -1
- package/es/utils/snap-scene.js +0 -100
- package/es/utils/snap-scene.js.map +0 -1
- package/es/utils/snap.js +0 -238
- package/es/utils/snap.js.map +0 -1
- package/es/utils/threeCSG.es6.js +0 -499
- package/es/utils/threeCSG.es6.js.map +0 -1
- package/es/version.js +0 -2
- package/es/version.js.map +0 -1
- /package/{es → src}/catalog/areas/area/textures/ceramic-tile.jpg +0 -0
- /package/{es → src}/catalog/areas/area/textures/grass.jpg +0 -0
- /package/{es → src}/catalog/areas/area/textures/parquet.jpg +0 -0
- /package/{es → src}/catalog/areas/area/textures/strand-porcelain.jpg +0 -0
- /package/{es → src}/catalog/areas/area/textures/tile1.jpg +0 -0
- /package/{es → src}/catalog/back.png +0 -0
- /package/{es → src}/catalog/doors.png +0 -0
- /package/{es → src}/catalog/doorways.png +0 -0
- /package/{es → src}/catalog/envMap/nx.hdr +0 -0
- /package/{es → src}/catalog/envMap/ny.hdr +0 -0
- /package/{es → src}/catalog/envMap/nz.hdr +0 -0
- /package/{es → src}/catalog/envMap/px.hdr +0 -0
- /package/{es → src}/catalog/envMap/py.hdr +0 -0
- /package/{es → src}/catalog/envMap/pz.hdr +0 -0
- /package/{es → src}/catalog/holes/door-double/door_double.png +0 -0
- /package/{es → src}/catalog/holes/door-panic/panicDoor.png +0 -0
- /package/{es → src}/catalog/holes/door-panic-double/panicDoorDouble.png +0 -0
- /package/{es → src}/catalog/holes/gate/gate.jpg +0 -0
- /package/{es → src}/catalog/holes/window-clear/texture.png +0 -0
- /package/{es → src}/catalog/holes/window-cross/texture.png +0 -0
- /package/{es → src}/catalog/holes/window-double-hung/texture.png +0 -0
- /package/{es → src}/catalog/holes/window-vertical/texture.png +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks-normal.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks-normal2.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks2.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/bricks3.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/morden-normal.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/morden.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/painted-normal.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/painted.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/plaster-normal.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/textures/plaster.jpg +0 -0
- /package/{es → src}/catalog/lines/wall/wall.png +0 -0
- /package/{es → src}/catalog/molding/molding-dcm/texture.png +0 -0
- /package/{es → src}/catalog/molding/molding-fbm/texture.png +0 -0
- /package/{es → src}/catalog/molding/molding-lrm/texture.png +0 -0
- /package/{es → src}/catalog/windows.png +0 -0
- /package/{es → src}/components/header/header.style.css +0 -0
- /package/{es → src}/components/login/style.css +0 -0
- /package/{es → src}/components/login/style.scss +0 -0
- /package/{es → src}/components/molecules/slider/styles.scss +0 -0
- /package/{es → src}/components/toolbar/main/lShaped.json +0 -0
- /package/{es → src}/components/toolbar/main/longNarrow.json +0 -0
- /package/{es → src}/components/toolbar/main/oRectangle.json +0 -0
- /package/{es → src}/components/toolbar/main/rectangle.json +0 -0
- /package/{es → src}/components/toolbar/main/style.css +0 -0
- /package/{es → src}/components/toolbar/popup/autosaveprompt/styles.css +0 -0
- /package/{es → src}/components/toolbar/popup/downloadsummary/styles.css +0 -0
- /package/{es → src}/components/toolbar/popup/floorplan/choose-floor/lShaped.json +0 -0
- /package/{es → src}/components/toolbar/popup/floorplan/choose-floor/longNarrow.json +0 -0
- /package/{es → src}/components/toolbar/popup/floorplan/choose-floor/oRectangle.json +0 -0
- /package/{es → src}/components/toolbar/popup/floorplan/choose-floor/rectangle.json +0 -0
- /package/{es → src}/components/toolbar/popup/newproject/styles.css +0 -0
- /package/{es → src}/components/toolbar/popup/product/style.css +0 -0
- /package/{es → src}/components/toolbar/popup/savedesign/savedesign.style.css +0 -0
- /package/{es → src}/components/toolbar/popup/submitforquote/styles.css +0 -0
- /package/{es → src}/components/toolbar/popup/submitprompt/styles.css +0 -0
- /package/{es → src}/components/tutorial-view/style.css +0 -0
|
@@ -0,0 +1,1103 @@
|
|
|
1
|
+
import Tooltip from '@material-ui/core/Tooltip';
|
|
2
|
+
import React, { Component } from 'react';
|
|
3
|
+
import PropTypes from 'prop-types';
|
|
4
|
+
import * as S from './styles';
|
|
5
|
+
import { GeometryUtils } from '../../utils/export';
|
|
6
|
+
import { toFixedFloat } from '../../utils/math';
|
|
7
|
+
import convert from 'convert-units';
|
|
8
|
+
import { zoom } from 'react-svg-pan-zoom';
|
|
9
|
+
import SnackBar from '../atoms/Snackbar/index';
|
|
10
|
+
import ToggleMeasureButton from '../button/ToggleMeasureButton';
|
|
11
|
+
|
|
12
|
+
import {
|
|
13
|
+
EPSILON,
|
|
14
|
+
MODE_IDLE,
|
|
15
|
+
MODE_IDLE_3D,
|
|
16
|
+
ARRAY_3D_MODES,
|
|
17
|
+
KEYBOARD_BUTTON_CODE,
|
|
18
|
+
TEXT_COLOR_NEUTRAL_5,
|
|
19
|
+
MODE_ELEVATION_VIEW
|
|
20
|
+
} from '../../constants';
|
|
21
|
+
import * as constants from '../../constants';
|
|
22
|
+
import { isElevationView } from '../../utils/helper';
|
|
23
|
+
|
|
24
|
+
let allItemRect;
|
|
25
|
+
let allItemSnap;
|
|
26
|
+
let allLines;
|
|
27
|
+
let allLineRects;
|
|
28
|
+
let allLineSnap;
|
|
29
|
+
let allRect;
|
|
30
|
+
|
|
31
|
+
export default class FooterBar extends Component {
|
|
32
|
+
constructor(props, context) {
|
|
33
|
+
super(props, context);
|
|
34
|
+
let selectedLayout = props.state.scene.selectedLayer;
|
|
35
|
+
let height = props.state.scene.layers.get(selectedLayout).ceilHeight;
|
|
36
|
+
let unit = props.state.scene.layers.get(selectedLayout).unit;
|
|
37
|
+
this.state = {
|
|
38
|
+
objectSetting: null,
|
|
39
|
+
controlButton: '',
|
|
40
|
+
panButton: '',
|
|
41
|
+
toggleUnit: 'in',
|
|
42
|
+
dragFlag: true,
|
|
43
|
+
unit: unit,
|
|
44
|
+
ceilFlag: false,
|
|
45
|
+
ceil3DFlag: false,
|
|
46
|
+
height: height,
|
|
47
|
+
zoomValue: 100,
|
|
48
|
+
isSnackBarOpen: false,
|
|
49
|
+
snackBarMessage: ''
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
componentDidMount() {}
|
|
53
|
+
|
|
54
|
+
componentWillReceiveProps(nextProps) {
|
|
55
|
+
let selectedLayout = nextProps.state.scene.selectedLayer;
|
|
56
|
+
let height = nextProps.state.scene.layers.get(selectedLayout).ceilHeight;
|
|
57
|
+
let unit = nextProps.state.scene.layers.get(selectedLayout).unit;
|
|
58
|
+
let viewer2DValue = nextProps.state.get('viewer2D').toJS();
|
|
59
|
+
let _zoomValue = parseInt(
|
|
60
|
+
(viewer2DValue.a - 0.5) / constants.ZOOM_VARIABLE
|
|
61
|
+
);
|
|
62
|
+
if (_zoomValue > 380) {
|
|
63
|
+
_zoomValue = 400;
|
|
64
|
+
}
|
|
65
|
+
if (_zoomValue < 35 || Number.isNaN(_zoomValue)) {
|
|
66
|
+
_zoomValue = 30;
|
|
67
|
+
}
|
|
68
|
+
this.setState({ height: height, unit: unit, zoomValue: _zoomValue });
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
render() {
|
|
72
|
+
let { state: globalState } = this.props;
|
|
73
|
+
|
|
74
|
+
let layer = globalState.scene.layers.get(globalState.scene.selectedLayer);
|
|
75
|
+
let selectedItems = [];
|
|
76
|
+
if (layer.selected.items.size > 0) {
|
|
77
|
+
selectedItems = layer.selected.items.toJS();
|
|
78
|
+
}
|
|
79
|
+
let selLineFlag = true; // this flag whether line was selected or not
|
|
80
|
+
if (layer.selected.lines.size === 0) {
|
|
81
|
+
selLineFlag = false;
|
|
82
|
+
} else selLineFlag = true;
|
|
83
|
+
let {
|
|
84
|
+
projectActions,
|
|
85
|
+
viewer3DActions,
|
|
86
|
+
viewer2DActions,
|
|
87
|
+
itemsActions,
|
|
88
|
+
catalog
|
|
89
|
+
} = this.context;
|
|
90
|
+
let {
|
|
91
|
+
controlButton: control,
|
|
92
|
+
panButton: pan_control,
|
|
93
|
+
toggleUnit,
|
|
94
|
+
dragFlag
|
|
95
|
+
} = this.state;
|
|
96
|
+
// let { x, y } = globalState.get('mouse').toJS();
|
|
97
|
+
// let zoom = globalState.get('zoom');
|
|
98
|
+
let mode = globalState.get('mode');
|
|
99
|
+
let scene = globalState.get('scene');
|
|
100
|
+
let elevationImg = '/assets/img/svg/bottombar/elevation.svg';
|
|
101
|
+
|
|
102
|
+
let update = (LengthInput, unitInput, type) => {
|
|
103
|
+
let newLength = toFixedFloat(LengthInput);
|
|
104
|
+
|
|
105
|
+
if (type === 0) {
|
|
106
|
+
this.setState({ height: newLength });
|
|
107
|
+
viewer2DActions.updateCeilHeight(newLength);
|
|
108
|
+
viewer2DActions.updateCeilHeightUnit(unitInput);
|
|
109
|
+
viewer3DActions.update3DCeilHeight(newLength);
|
|
110
|
+
viewer3DActions.update3DCeilHeightUnit(unitInput);
|
|
111
|
+
} else {
|
|
112
|
+
this.setState({
|
|
113
|
+
height: convert(newLength).from(this.state.unit).to(unitInput)
|
|
114
|
+
});
|
|
115
|
+
this.setState({ unit: unitInput });
|
|
116
|
+
viewer2DActions.updateCeilHeight(
|
|
117
|
+
convert(newLength).from(this.state.unit).to(unitInput)
|
|
118
|
+
);
|
|
119
|
+
viewer2DActions.updateCeilHeightUnit(unitInput);
|
|
120
|
+
viewer3DActions.update3DCeilHeightUnit(unitInput);
|
|
121
|
+
viewer3DActions.update3DCeilHeight(
|
|
122
|
+
convert(newLength).from(this.state.unit).to(unitInput)
|
|
123
|
+
);
|
|
124
|
+
}
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
let prepareSnap = () => {
|
|
128
|
+
allItemRect = GeometryUtils.getAllItems(scene, catalog);
|
|
129
|
+
allItemSnap = GeometryUtils.getAllItemSnap(allItemRect);
|
|
130
|
+
allLines = GeometryUtils.getAllLines(layer);
|
|
131
|
+
allLineRects = GeometryUtils.buildRectFromLines(layer, allLines);
|
|
132
|
+
allLineSnap = GeometryUtils.getAllLineSnap(allLineRects, allItemRect.cur);
|
|
133
|
+
allRect = allItemRect.others.concat(allLineRects);
|
|
134
|
+
allItemSnap = GeometryUtils.validateSnaps(allItemSnap, allRect);
|
|
135
|
+
allLineSnap = GeometryUtils.validateSnaps(allLineSnap, allRect);
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
function spinDragStart(key) {
|
|
139
|
+
if (dragFlag) {
|
|
140
|
+
window.interval = setInterval(() => {
|
|
141
|
+
window.SPKeyDown({ keyCode: key });
|
|
142
|
+
}, 50);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
function spinDragStop() {
|
|
147
|
+
clearInterval(window.interval);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
function panDragStart(key) {
|
|
151
|
+
if (dragFlag) {
|
|
152
|
+
window.interval = setInterval(() => {
|
|
153
|
+
window.tDKeyDown({ keyCode: key });
|
|
154
|
+
}, 50);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
function panDragStop() {
|
|
159
|
+
clearInterval(window.interval);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
function validOutSVG(x, y) {
|
|
163
|
+
const { SVGWidth, SVGHeight } = globalState.get('viewer2D').toJS();
|
|
164
|
+
if (x < 0 || x > SVGWidth || y < 0 || y > SVGHeight) return false;
|
|
165
|
+
return true;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
const OpenSettings = e => {
|
|
169
|
+
e.preventDefault();
|
|
170
|
+
|
|
171
|
+
document.getElementById('setting_dialog').style.display = 'flex';
|
|
172
|
+
// closes the selected item dialog
|
|
173
|
+
// projectActions.unselectAll()
|
|
174
|
+
};
|
|
175
|
+
|
|
176
|
+
// handle action to view elevation
|
|
177
|
+
const ViewElevation = () => {
|
|
178
|
+
let layer = globalState.scene.getIn([
|
|
179
|
+
'layers',
|
|
180
|
+
globalState.scene.selectedLayer
|
|
181
|
+
]);
|
|
182
|
+
if (layer.selected.lines.size === 0) {
|
|
183
|
+
this.setState({
|
|
184
|
+
isSnackBarOpen: true,
|
|
185
|
+
snackBarMessage:
|
|
186
|
+
'Please select the wall you want to see in Elevation View'
|
|
187
|
+
});
|
|
188
|
+
return;
|
|
189
|
+
}
|
|
190
|
+
projectActions.setMode(MODE_ELEVATION_VIEW);
|
|
191
|
+
};
|
|
192
|
+
|
|
193
|
+
let footerview = isElevationView(mode) ? (
|
|
194
|
+
<div
|
|
195
|
+
style={{
|
|
196
|
+
display: 'flex',
|
|
197
|
+
position: 'relative',
|
|
198
|
+
backgroundColor: 'white',
|
|
199
|
+
height: 70,
|
|
200
|
+
cursor: 'pointer',
|
|
201
|
+
boxShadow:
|
|
202
|
+
'0px 3px 5px -1px rgba(156, 154, 154, 0.2), 0px 6px 10px 0px rgba(156, 154, 154, 0.39), 0px 1px 18px 0px rgba(156, 154, 154, 0.12)',
|
|
203
|
+
borderRadius: 10,
|
|
204
|
+
alignItems: 'center'
|
|
205
|
+
}}
|
|
206
|
+
>
|
|
207
|
+
<S.Toggle_2D_3D
|
|
208
|
+
onClick={() => {
|
|
209
|
+
this.props.setToolbar('');
|
|
210
|
+
projectActions.setMode(MODE_IDLE);
|
|
211
|
+
let layer = globalState.scene.getIn([
|
|
212
|
+
'layers',
|
|
213
|
+
globalState.scene.selectedLayer
|
|
214
|
+
]);
|
|
215
|
+
let sCount =
|
|
216
|
+
layer.selected.areas.size +
|
|
217
|
+
layer.selected.holes.size +
|
|
218
|
+
layer.selected.items.size +
|
|
219
|
+
layer.selected.lines.size;
|
|
220
|
+
if (sCount > 1) projectActions.unselectAll();
|
|
221
|
+
// this.props.setShowProperty(true);
|
|
222
|
+
this.setState({ ceil3DFlag: false });
|
|
223
|
+
// document.getElementById('item_custom') && (document.getElementById('item_custom').style.display = document.getElementById('item_custom').style.display === 'flex' && 'none');
|
|
224
|
+
document.getElementById('item_warning') &&
|
|
225
|
+
document.getElementById('item_custom') &&
|
|
226
|
+
(document.getElementById('item_warning').style.display =
|
|
227
|
+
document.getElementById('item_custom').style.display ===
|
|
228
|
+
'flex' && 'none');
|
|
229
|
+
}}
|
|
230
|
+
>
|
|
231
|
+
<S.FooterTitle>2D</S.FooterTitle>
|
|
232
|
+
</S.Toggle_2D_3D>
|
|
233
|
+
<S.Toggle_2D_3D
|
|
234
|
+
style={{ marginLeft: 5 }}
|
|
235
|
+
onClick={() => {
|
|
236
|
+
this.props.setToolbar('');
|
|
237
|
+
projectActions.setMode(MODE_IDLE_3D);
|
|
238
|
+
let layer = globalState.scene.getIn([
|
|
239
|
+
'layers',
|
|
240
|
+
globalState.scene.selectedLayer
|
|
241
|
+
]);
|
|
242
|
+
let sCount =
|
|
243
|
+
layer.selected.areas.size +
|
|
244
|
+
layer.selected.holes.size +
|
|
245
|
+
layer.selected.items.size +
|
|
246
|
+
layer.selected.lines.size;
|
|
247
|
+
if (sCount > 1) projectActions.unselectAll();
|
|
248
|
+
this.setState({ ceilFlag: false });
|
|
249
|
+
}}
|
|
250
|
+
>
|
|
251
|
+
<S.FooterTitle>3D</S.FooterTitle>
|
|
252
|
+
</S.Toggle_2D_3D>
|
|
253
|
+
|
|
254
|
+
{selLineFlag ? (
|
|
255
|
+
<Tooltip title="Elevation View">
|
|
256
|
+
<S.Toggle_2D_3D
|
|
257
|
+
style={{ backgroundColor: TEXT_COLOR_NEUTRAL_5 }}
|
|
258
|
+
onClick={() => ViewElevation()}
|
|
259
|
+
>
|
|
260
|
+
<S.ArrowIcon
|
|
261
|
+
style={{ width: 20, height: 20 }}
|
|
262
|
+
src={elevationImg}
|
|
263
|
+
/>
|
|
264
|
+
</S.Toggle_2D_3D>
|
|
265
|
+
</Tooltip>
|
|
266
|
+
) : (
|
|
267
|
+
<Tooltip title={<span>Please select a wall</span>}>
|
|
268
|
+
<S.Toggle_2D_3D_Button
|
|
269
|
+
style={{ backgroundColor: TEXT_COLOR_NEUTRAL_5 }}
|
|
270
|
+
>
|
|
271
|
+
<S.ArrowIcon
|
|
272
|
+
style={{ width: 20, height: 20 }}
|
|
273
|
+
src={elevationImg}
|
|
274
|
+
/>
|
|
275
|
+
</S.Toggle_2D_3D_Button>
|
|
276
|
+
</Tooltip>
|
|
277
|
+
)}
|
|
278
|
+
{/* <S.Direction_Left_Right
|
|
279
|
+
onClick={() => {
|
|
280
|
+
this.props.setToolbar('');
|
|
281
|
+
this.setState({ controlButton: 'Left' });
|
|
282
|
+
let value = globalState.get('viewer2D').toJS();
|
|
283
|
+
value.e -= 5;
|
|
284
|
+
if (
|
|
285
|
+
value.e <= 10 &&
|
|
286
|
+
value.e + value.a * value.SVGWidth + 10 >= value.viewerWidth &&
|
|
287
|
+
value.f <= 80 &&
|
|
288
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
289
|
+
) {
|
|
290
|
+
viewer2DActions.updateCameraView(value);
|
|
291
|
+
}
|
|
292
|
+
}}
|
|
293
|
+
>
|
|
294
|
+
<S.ArrowIcon src="/assets/img/svg/bottombar/arrow-left.svg" />
|
|
295
|
+
</S.Direction_Left_Right>
|
|
296
|
+
<div>
|
|
297
|
+
<S.Direction_Up_Down
|
|
298
|
+
onClick={() => {
|
|
299
|
+
this.props.setToolbar('');
|
|
300
|
+
this.setState({ controlButton: 'Top' });
|
|
301
|
+
let value = globalState.get('viewer2D').toJS();
|
|
302
|
+
value.f -= 5;
|
|
303
|
+
if (
|
|
304
|
+
value.e <= 10 &&
|
|
305
|
+
value.e + value.a * value.SVGWidth + 10 >=
|
|
306
|
+
value.viewerWidth &&
|
|
307
|
+
value.f <= 80 &&
|
|
308
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
309
|
+
) {
|
|
310
|
+
viewer2DActions.updateCameraView(value);
|
|
311
|
+
}
|
|
312
|
+
}}
|
|
313
|
+
>
|
|
314
|
+
<S.ArrowIcon src="/assets/img/svg/bottombar/arrow-up.svg" />
|
|
315
|
+
</S.Direction_Up_Down>
|
|
316
|
+
<S.Direction_Up_Down
|
|
317
|
+
onClick={() => {
|
|
318
|
+
this.props.setToolbar('');
|
|
319
|
+
this.setState({ controlButton: 'Bottom' });
|
|
320
|
+
let value = globalState.get('viewer2D').toJS();
|
|
321
|
+
value.f += 5;
|
|
322
|
+
if (
|
|
323
|
+
value.e <= 10 &&
|
|
324
|
+
value.e + value.a * value.SVGWidth + 10 >=
|
|
325
|
+
value.viewerWidth &&
|
|
326
|
+
value.f <= 80 &&
|
|
327
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
328
|
+
) {
|
|
329
|
+
viewer2DActions.updateCameraView(value);
|
|
330
|
+
}
|
|
331
|
+
}}
|
|
332
|
+
>
|
|
333
|
+
<S.ArrowIcon src="/assets/img/svg/bottombar/arrow-down.svg" />
|
|
334
|
+
</S.Direction_Up_Down>
|
|
335
|
+
</div>
|
|
336
|
+
<S.Direction_Left_Right
|
|
337
|
+
onClick={() => {
|
|
338
|
+
this.props.setToolbar('');
|
|
339
|
+
this.setState({ controlButton: 'Right' });
|
|
340
|
+
let value = globalState.get('viewer2D').toJS();
|
|
341
|
+
value.e += 5;
|
|
342
|
+
if (
|
|
343
|
+
value.e <= 10 &&
|
|
344
|
+
value.e + value.a * value.SVGWidth + 10 >= value.viewerWidth &&
|
|
345
|
+
value.f <= 80 &&
|
|
346
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
347
|
+
) {
|
|
348
|
+
viewer2DActions.updateCameraView(value);
|
|
349
|
+
}
|
|
350
|
+
}}
|
|
351
|
+
>
|
|
352
|
+
<S.ArrowIcon src="/assets/img/svg/bottombar/arrow-right.svg" />
|
|
353
|
+
</S.Direction_Left_Right>
|
|
354
|
+
<S.ZoomButton
|
|
355
|
+
onClick={() => {
|
|
356
|
+
this.props.setToolbar('');
|
|
357
|
+
this.setState({ controlButton: 'Zoom Out' });
|
|
358
|
+
let value = globalState.get('viewer2D').toJS();
|
|
359
|
+
let width = value.viewerWidth;
|
|
360
|
+
let height = value.viewerHeight;
|
|
361
|
+
let len = value.SVGWidth;
|
|
362
|
+
let _e = (width - len * value.a) / 2;
|
|
363
|
+
let _f = (height - len * value.d) / 2;
|
|
364
|
+
let offsetE = (value.e - _e) / value.a;
|
|
365
|
+
let offsetF = (value.f - _f) / value.a;
|
|
366
|
+
value.a -= 0.1;
|
|
367
|
+
value.d -= 0.1;
|
|
368
|
+
value.e -=
|
|
369
|
+
(value.SVGWidth * value.a - value.SVGWidth * (value.a + 0.1)) /
|
|
370
|
+
2;
|
|
371
|
+
value.f -=
|
|
372
|
+
(value.SVGHeight * value.d -
|
|
373
|
+
value.SVGHeight * (value.d + 0.1)) /
|
|
374
|
+
2;
|
|
375
|
+
let _zoomValue = parseInt(
|
|
376
|
+
(value.a - 0.5) / constants.ZOOM_VARIABLE
|
|
377
|
+
);
|
|
378
|
+
if (_zoomValue > 404) return;
|
|
379
|
+
if (_zoomValue < 30 || Number.isNaN(_zoomValue)) return;
|
|
380
|
+
// value = zoom(value, 0, 0, 1/1.06)
|
|
381
|
+
while (!(value.e <= 10)) {
|
|
382
|
+
value.e -= 0.1;
|
|
383
|
+
}
|
|
384
|
+
while (
|
|
385
|
+
!(value.e + value.a * value.SVGWidth + 10 >= value.viewerWidth)
|
|
386
|
+
) {
|
|
387
|
+
value.e += 0.1;
|
|
388
|
+
}
|
|
389
|
+
while (!(value.f <= 80)) {
|
|
390
|
+
value.f -= 0.1;
|
|
391
|
+
}
|
|
392
|
+
while (
|
|
393
|
+
!(
|
|
394
|
+
value.f + value.a * value.SVGHeight + 10 >=
|
|
395
|
+
value.viewerHeight
|
|
396
|
+
)
|
|
397
|
+
) {
|
|
398
|
+
value.f += 0.1;
|
|
399
|
+
}
|
|
400
|
+
if (
|
|
401
|
+
value.e <= 10 &&
|
|
402
|
+
value.e + value.a * value.SVGWidth + 10 >= value.viewerWidth &&
|
|
403
|
+
value.f <= 80 &&
|
|
404
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
405
|
+
) {
|
|
406
|
+
viewer2DActions.updateCameraView(value);
|
|
407
|
+
}
|
|
408
|
+
}}
|
|
409
|
+
>
|
|
410
|
+
<img
|
|
411
|
+
style={{ margin: 'auto', width: 15, userSelect: 'none' }}
|
|
412
|
+
src="/assets/img/svg/bottombar/arrow-minus.svg"
|
|
413
|
+
/>
|
|
414
|
+
</S.ZoomButton>
|
|
415
|
+
<S.ZoomInput
|
|
416
|
+
value={`${this.state.zoomValue}%`}
|
|
417
|
+
type="text"
|
|
418
|
+
onChange={event => {
|
|
419
|
+
let _zoomValue = parseInt(event.target.value.replace('%', ''));
|
|
420
|
+
if (_zoomValue > 380) {
|
|
421
|
+
_zoomValue = 400;
|
|
422
|
+
}
|
|
423
|
+
if (_zoomValue < 0 || Number.isNaN(_zoomValue)) {
|
|
424
|
+
_zoomValue = 1;
|
|
425
|
+
} else {
|
|
426
|
+
this.setState({
|
|
427
|
+
zoomValue: _zoomValue
|
|
428
|
+
});
|
|
429
|
+
}
|
|
430
|
+
}}
|
|
431
|
+
onKeyDown={e => {
|
|
432
|
+
let keyCode = e.keyCode || e.which;
|
|
433
|
+
if (keyCode === KEYBOARD_BUTTON_CODE.ENTER) {
|
|
434
|
+
let value = globalState.get('viewer2D').toJS();
|
|
435
|
+
let _zoomValue =
|
|
436
|
+
this.state.zoomValue * constants.ZOOM_VARIABLE + 0.5;
|
|
437
|
+
value = zoom(
|
|
438
|
+
value,
|
|
439
|
+
value.SVGWidth / 2,
|
|
440
|
+
value.SVGHeight / 2,
|
|
441
|
+
_zoomValue / value.a
|
|
442
|
+
);
|
|
443
|
+
if (this.state.zoomValue > 404) return;
|
|
444
|
+
if (
|
|
445
|
+
this.state.zoomValue < 35 ||
|
|
446
|
+
Number.isNaN(this.state.zoomValue)
|
|
447
|
+
)
|
|
448
|
+
return;
|
|
449
|
+
if (
|
|
450
|
+
value.e <= 10 &&
|
|
451
|
+
value.e + value.a * value.SVGWidth + 10 >=
|
|
452
|
+
value.viewerWidth &&
|
|
453
|
+
value.f <= 80 &&
|
|
454
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
455
|
+
) {
|
|
456
|
+
viewer2DActions.updateCameraView(value);
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
}}
|
|
460
|
+
name="zoominout"
|
|
461
|
+
/>
|
|
462
|
+
<S.ZoomButton
|
|
463
|
+
onClick={() => {
|
|
464
|
+
this.props.setToolbar('');
|
|
465
|
+
this.setState({ controlButton: 'Zoom In' });
|
|
466
|
+
let value = globalState.get('viewer2D').toJS();
|
|
467
|
+
let width = value.viewerWidth;
|
|
468
|
+
let height = value.viewerHeight;
|
|
469
|
+
let len = value.SVGWidth;
|
|
470
|
+
let _e = (width - len * value.a) / 2;
|
|
471
|
+
let _f = (height - len * value.d) / 2;
|
|
472
|
+
let offsetE = (value.e - _e) / value.a;
|
|
473
|
+
let offsetF = (value.f - _f) / value.a;
|
|
474
|
+
value.a += 0.1;
|
|
475
|
+
value.d += 0.1;
|
|
476
|
+
value.e -=
|
|
477
|
+
(value.SVGWidth * value.a - value.SVGWidth * (value.a - 0.1)) /
|
|
478
|
+
2;
|
|
479
|
+
value.f -=
|
|
480
|
+
(value.SVGHeight * value.d -
|
|
481
|
+
value.SVGHeight * (value.d - 0.1)) /
|
|
482
|
+
2;
|
|
483
|
+
let _zoomValue = parseInt(
|
|
484
|
+
(value.a - 0.5) / constants.ZOOM_VARIABLE
|
|
485
|
+
);
|
|
486
|
+
if (_zoomValue > 404) return;
|
|
487
|
+
if (_zoomValue < 35 || Number.isNaN(_zoomValue)) return;
|
|
488
|
+
// value = zoom(value, value.SVGWidth / 2, value.SVGHeight / 2, 1.06);
|
|
489
|
+
if (
|
|
490
|
+
value.e <= 10 &&
|
|
491
|
+
value.e + value.a * value.SVGWidth + 10 >= value.viewerWidth &&
|
|
492
|
+
value.f <= 80 &&
|
|
493
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
494
|
+
) {
|
|
495
|
+
viewer2DActions.updateCameraView(value);
|
|
496
|
+
}
|
|
497
|
+
}}
|
|
498
|
+
>
|
|
499
|
+
<img
|
|
500
|
+
style={{ margin: 'auto', width: 18, userSelect: 'none' }}
|
|
501
|
+
src="/assets/img/svg/bottombar/arrow-plus.svg"
|
|
502
|
+
/>
|
|
503
|
+
</S.ZoomButton> */}
|
|
504
|
+
<S.Toggle_2D_3D
|
|
505
|
+
style={{
|
|
506
|
+
marginLeft: 5,
|
|
507
|
+
marginRight: 10,
|
|
508
|
+
backgroundColor:
|
|
509
|
+
document.getElementById('setting_dialog') &&
|
|
510
|
+
document.getElementById('setting_dialog').style.display ===
|
|
511
|
+
'flex' &&
|
|
512
|
+
TEXT_COLOR_NEUTRAL_5
|
|
513
|
+
}}
|
|
514
|
+
onClick={e => {
|
|
515
|
+
this.props.setToolbar('');
|
|
516
|
+
OpenSettings(e);
|
|
517
|
+
}}
|
|
518
|
+
>
|
|
519
|
+
<img
|
|
520
|
+
src="/assets/img/svg/headerbar/setting.svg"
|
|
521
|
+
style={{ height: 18 }}
|
|
522
|
+
/>
|
|
523
|
+
</S.Toggle_2D_3D>
|
|
524
|
+
</div>
|
|
525
|
+
) : !ARRAY_3D_MODES.includes(mode) ? (
|
|
526
|
+
<div
|
|
527
|
+
style={{
|
|
528
|
+
display: 'flex',
|
|
529
|
+
position: 'relative',
|
|
530
|
+
backgroundColor: 'white',
|
|
531
|
+
height: 70,
|
|
532
|
+
cursor: 'pointer',
|
|
533
|
+
boxShadow:
|
|
534
|
+
'0px 3px 5px -1px rgba(156, 154, 154, 0.2), 0px 6px 10px 0px rgba(156, 154, 154, 0.39), 0px 1px 18px 0px rgba(156, 154, 154, 0.12)',
|
|
535
|
+
borderRadius: 10,
|
|
536
|
+
alignItems: 'center'
|
|
537
|
+
}}
|
|
538
|
+
>
|
|
539
|
+
<S.Toggle_2D_3D style={{ backgroundColor: TEXT_COLOR_NEUTRAL_5 }}>
|
|
540
|
+
<S.FooterTitle style={{ fontWeight: '800' }}>2D</S.FooterTitle>
|
|
541
|
+
</S.Toggle_2D_3D>
|
|
542
|
+
<S.Toggle_2D_3D
|
|
543
|
+
style={{ marginLeft: 5 }}
|
|
544
|
+
onClick={() => {
|
|
545
|
+
this.props.setToolbar('');
|
|
546
|
+
projectActions.setMode(MODE_IDLE_3D);
|
|
547
|
+
let layer = globalState.scene.getIn([
|
|
548
|
+
'layers',
|
|
549
|
+
globalState.scene.selectedLayer
|
|
550
|
+
]);
|
|
551
|
+
let sCount =
|
|
552
|
+
layer.selected.areas.size +
|
|
553
|
+
layer.selected.holes.size +
|
|
554
|
+
layer.selected.items.size +
|
|
555
|
+
layer.selected.lines.size;
|
|
556
|
+
if (sCount > 1) projectActions.unselectAll();
|
|
557
|
+
this.setState({ ceilFlag: false });
|
|
558
|
+
}}
|
|
559
|
+
>
|
|
560
|
+
<S.FooterTitle>3D</S.FooterTitle>
|
|
561
|
+
</S.Toggle_2D_3D>
|
|
562
|
+
{selLineFlag ? (
|
|
563
|
+
<Tooltip title="Elevation View">
|
|
564
|
+
<S.Toggle_2D_3D onClick={() => ViewElevation()}>
|
|
565
|
+
<S.ArrowIcon
|
|
566
|
+
style={{ width: 20, height: 20 }}
|
|
567
|
+
src={elevationImg}
|
|
568
|
+
/>
|
|
569
|
+
</S.Toggle_2D_3D>
|
|
570
|
+
</Tooltip>
|
|
571
|
+
) : (
|
|
572
|
+
<Tooltip title={<span>Please select a wall</span>}>
|
|
573
|
+
<S.Toggle_2D_3D_Button>
|
|
574
|
+
<S.ArrowIcon
|
|
575
|
+
style={{ width: 20, height: 20 }}
|
|
576
|
+
src={elevationImg}
|
|
577
|
+
/>
|
|
578
|
+
</S.Toggle_2D_3D_Button>
|
|
579
|
+
</Tooltip>
|
|
580
|
+
)}
|
|
581
|
+
|
|
582
|
+
<S.Direction_Left_Right
|
|
583
|
+
onClick={() => {
|
|
584
|
+
this.props.setToolbar('');
|
|
585
|
+
this.setState({ controlButton: 'Left' });
|
|
586
|
+
let value = globalState.get('viewer2D').toJS();
|
|
587
|
+
value.e -= 5;
|
|
588
|
+
if (
|
|
589
|
+
value.e <= 10 &&
|
|
590
|
+
value.e + value.a * value.SVGWidth + 10 >= value.viewerWidth &&
|
|
591
|
+
value.f <= 80 &&
|
|
592
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
593
|
+
) {
|
|
594
|
+
viewer2DActions.updateCameraView(value);
|
|
595
|
+
}
|
|
596
|
+
}}
|
|
597
|
+
>
|
|
598
|
+
<S.ArrowIcon src="/assets/img/svg/bottombar/arrow-left.svg" />
|
|
599
|
+
</S.Direction_Left_Right>
|
|
600
|
+
<div>
|
|
601
|
+
<S.Direction_Up_Down
|
|
602
|
+
onClick={() => {
|
|
603
|
+
this.props.setToolbar('');
|
|
604
|
+
this.setState({ controlButton: 'Top' });
|
|
605
|
+
let value = globalState.get('viewer2D').toJS();
|
|
606
|
+
value.f -= 5;
|
|
607
|
+
if (
|
|
608
|
+
value.e <= 10 &&
|
|
609
|
+
value.e + value.a * value.SVGWidth + 10 >= value.viewerWidth &&
|
|
610
|
+
value.f <= 80 &&
|
|
611
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
612
|
+
) {
|
|
613
|
+
viewer2DActions.updateCameraView(value);
|
|
614
|
+
}
|
|
615
|
+
}}
|
|
616
|
+
>
|
|
617
|
+
<S.ArrowIcon src="/assets/img/svg/bottombar/arrow-up.svg" />
|
|
618
|
+
</S.Direction_Up_Down>
|
|
619
|
+
<S.Direction_Up_Down
|
|
620
|
+
onClick={() => {
|
|
621
|
+
this.props.setToolbar('');
|
|
622
|
+
this.setState({ controlButton: 'Bottom' });
|
|
623
|
+
let value = globalState.get('viewer2D').toJS();
|
|
624
|
+
value.f += 5;
|
|
625
|
+
if (
|
|
626
|
+
value.e <= 10 &&
|
|
627
|
+
value.e + value.a * value.SVGWidth + 10 >= value.viewerWidth &&
|
|
628
|
+
value.f <= 80 &&
|
|
629
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
630
|
+
) {
|
|
631
|
+
viewer2DActions.updateCameraView(value);
|
|
632
|
+
}
|
|
633
|
+
}}
|
|
634
|
+
>
|
|
635
|
+
<S.ArrowIcon src="/assets/img/svg/bottombar/arrow-down.svg" />
|
|
636
|
+
</S.Direction_Up_Down>
|
|
637
|
+
</div>
|
|
638
|
+
<S.Direction_Left_Right
|
|
639
|
+
onClick={() => {
|
|
640
|
+
this.props.setToolbar('');
|
|
641
|
+
this.setState({ controlButton: 'Right' });
|
|
642
|
+
let value = globalState.get('viewer2D').toJS();
|
|
643
|
+
value.e += 5;
|
|
644
|
+
if (
|
|
645
|
+
value.e <= 10 &&
|
|
646
|
+
value.e + value.a * value.SVGWidth + 10 >= value.viewerWidth &&
|
|
647
|
+
value.f <= 80 &&
|
|
648
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
649
|
+
) {
|
|
650
|
+
viewer2DActions.updateCameraView(value);
|
|
651
|
+
}
|
|
652
|
+
}}
|
|
653
|
+
>
|
|
654
|
+
<S.ArrowIcon src="/assets/img/svg/bottombar/arrow-right.svg" />
|
|
655
|
+
</S.Direction_Left_Right>
|
|
656
|
+
<S.ZoomButton
|
|
657
|
+
onClick={() => {
|
|
658
|
+
this.props.setToolbar('');
|
|
659
|
+
this.setState({ controlButton: 'Zoom Out' });
|
|
660
|
+
let value = globalState.get('viewer2D').toJS();
|
|
661
|
+
let width = value.viewerWidth;
|
|
662
|
+
let height = value.viewerHeight;
|
|
663
|
+
let len = value.SVGWidth;
|
|
664
|
+
let _e = (width - len * value.a) / 2;
|
|
665
|
+
let _f = (height - len * value.d) / 2;
|
|
666
|
+
let offsetE = (value.e - _e) / value.a;
|
|
667
|
+
let offsetF = (value.f - _f) / value.a;
|
|
668
|
+
value.a -= 0.1;
|
|
669
|
+
value.d -= 0.1;
|
|
670
|
+
value.e -=
|
|
671
|
+
(value.SVGWidth * value.a - value.SVGWidth * (value.a + 0.1)) / 2;
|
|
672
|
+
value.f -=
|
|
673
|
+
(value.SVGHeight * value.d - value.SVGHeight * (value.d + 0.1)) /
|
|
674
|
+
2;
|
|
675
|
+
let _zoomValue = parseInt(
|
|
676
|
+
(value.a - 0.5) / constants.ZOOM_VARIABLE
|
|
677
|
+
);
|
|
678
|
+
if (_zoomValue > 404) return;
|
|
679
|
+
if (_zoomValue < 30 || Number.isNaN(_zoomValue)) return;
|
|
680
|
+
// value = zoom(value, 0, 0, 1/1.06)
|
|
681
|
+
while (!(value.e <= 10)) {
|
|
682
|
+
value.e -= 0.1;
|
|
683
|
+
}
|
|
684
|
+
while (
|
|
685
|
+
!(value.e + value.a * value.SVGWidth + 10 >= value.viewerWidth)
|
|
686
|
+
) {
|
|
687
|
+
value.e += 0.1;
|
|
688
|
+
}
|
|
689
|
+
while (!(value.f <= 80)) {
|
|
690
|
+
value.f -= 0.1;
|
|
691
|
+
}
|
|
692
|
+
while (
|
|
693
|
+
!(value.f + value.a * value.SVGHeight + 10 >= value.viewerHeight)
|
|
694
|
+
) {
|
|
695
|
+
value.f += 0.1;
|
|
696
|
+
}
|
|
697
|
+
if (
|
|
698
|
+
value.e <= 10 &&
|
|
699
|
+
value.e + value.a * value.SVGWidth + 10 >= value.viewerWidth &&
|
|
700
|
+
value.f <= 80 &&
|
|
701
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
702
|
+
) {
|
|
703
|
+
viewer2DActions.updateCameraView(value);
|
|
704
|
+
}
|
|
705
|
+
}}
|
|
706
|
+
>
|
|
707
|
+
<img
|
|
708
|
+
style={{ margin: 'auto', width: 15, userSelect: 'none' }}
|
|
709
|
+
src="/assets/img/svg/bottombar/arrow-minus.svg"
|
|
710
|
+
/>
|
|
711
|
+
</S.ZoomButton>
|
|
712
|
+
<S.ZoomInput
|
|
713
|
+
value={`${this.state.zoomValue}%`}
|
|
714
|
+
type="text"
|
|
715
|
+
onChange={event => {
|
|
716
|
+
let _zoomValue = parseInt(event.target.value.replace('%', ''));
|
|
717
|
+
if (_zoomValue > 380) {
|
|
718
|
+
_zoomValue = 400;
|
|
719
|
+
}
|
|
720
|
+
if (_zoomValue < 0 || Number.isNaN(_zoomValue)) {
|
|
721
|
+
_zoomValue = 1;
|
|
722
|
+
} else {
|
|
723
|
+
this.setState({
|
|
724
|
+
zoomValue: _zoomValue
|
|
725
|
+
});
|
|
726
|
+
}
|
|
727
|
+
}}
|
|
728
|
+
onKeyDown={e => {
|
|
729
|
+
let keyCode = e.keyCode || e.which;
|
|
730
|
+
if (keyCode === KEYBOARD_BUTTON_CODE.ENTER) {
|
|
731
|
+
let value = globalState.get('viewer2D').toJS();
|
|
732
|
+
let _zoomValue =
|
|
733
|
+
this.state.zoomValue * constants.ZOOM_VARIABLE + 0.5;
|
|
734
|
+
value = zoom(
|
|
735
|
+
value,
|
|
736
|
+
value.SVGWidth / 2,
|
|
737
|
+
value.SVGHeight / 2,
|
|
738
|
+
_zoomValue / value.a
|
|
739
|
+
);
|
|
740
|
+
if (this.state.zoomValue > 404) return;
|
|
741
|
+
if (
|
|
742
|
+
this.state.zoomValue < 35 ||
|
|
743
|
+
Number.isNaN(this.state.zoomValue)
|
|
744
|
+
)
|
|
745
|
+
return;
|
|
746
|
+
if (
|
|
747
|
+
value.e <= 10 &&
|
|
748
|
+
value.e + value.a * value.SVGWidth + 10 >= value.viewerWidth &&
|
|
749
|
+
value.f <= 80 &&
|
|
750
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
751
|
+
) {
|
|
752
|
+
viewer2DActions.updateCameraView(value);
|
|
753
|
+
}
|
|
754
|
+
}
|
|
755
|
+
}}
|
|
756
|
+
name="zoominout"
|
|
757
|
+
/>
|
|
758
|
+
<S.ZoomButton
|
|
759
|
+
onClick={() => {
|
|
760
|
+
this.props.setToolbar('');
|
|
761
|
+
this.setState({ controlButton: 'Zoom In' });
|
|
762
|
+
let value = globalState.get('viewer2D').toJS();
|
|
763
|
+
let width = value.viewerWidth;
|
|
764
|
+
let height = value.viewerHeight;
|
|
765
|
+
let len = value.SVGWidth;
|
|
766
|
+
let _e = (width - len * value.a) / 2;
|
|
767
|
+
let _f = (height - len * value.d) / 2;
|
|
768
|
+
let offsetE = (value.e - _e) / value.a;
|
|
769
|
+
let offsetF = (value.f - _f) / value.a;
|
|
770
|
+
value.a += 0.1;
|
|
771
|
+
value.d += 0.1;
|
|
772
|
+
value.e -=
|
|
773
|
+
(value.SVGWidth * value.a - value.SVGWidth * (value.a - 0.1)) / 2;
|
|
774
|
+
value.f -=
|
|
775
|
+
(value.SVGHeight * value.d - value.SVGHeight * (value.d - 0.1)) /
|
|
776
|
+
2;
|
|
777
|
+
let _zoomValue = parseInt(
|
|
778
|
+
(value.a - 0.5) / constants.ZOOM_VARIABLE
|
|
779
|
+
);
|
|
780
|
+
if (_zoomValue > 404) return;
|
|
781
|
+
if (_zoomValue < 35 || Number.isNaN(_zoomValue)) return;
|
|
782
|
+
// value = zoom(value, value.SVGWidth / 2, value.SVGHeight / 2, 1.06);
|
|
783
|
+
if (
|
|
784
|
+
value.e <= 10 &&
|
|
785
|
+
value.e + value.a * value.SVGWidth + 10 >= value.viewerWidth &&
|
|
786
|
+
value.f <= 80 &&
|
|
787
|
+
value.f + value.d * value.SVGHeight + 10 >= value.viewerHeight
|
|
788
|
+
) {
|
|
789
|
+
viewer2DActions.updateCameraView(value);
|
|
790
|
+
}
|
|
791
|
+
}}
|
|
792
|
+
>
|
|
793
|
+
<img
|
|
794
|
+
style={{ margin: 'auto', width: 18, userSelect: 'none' }}
|
|
795
|
+
src="/assets/img/svg/bottombar/arrow-plus.svg"
|
|
796
|
+
/>
|
|
797
|
+
</S.ZoomButton>
|
|
798
|
+
<S.Toggle_2D_3D
|
|
799
|
+
style={{
|
|
800
|
+
marginLeft: 5,
|
|
801
|
+
marginRight: 10,
|
|
802
|
+
backgroundColor:
|
|
803
|
+
document.getElementById('setting_dialog') &&
|
|
804
|
+
document.getElementById('setting_dialog').style.display ===
|
|
805
|
+
'flex' &&
|
|
806
|
+
TEXT_COLOR_NEUTRAL_5
|
|
807
|
+
}}
|
|
808
|
+
onClick={e => {
|
|
809
|
+
this.props.setToolbar('');
|
|
810
|
+
OpenSettings(e);
|
|
811
|
+
}}
|
|
812
|
+
>
|
|
813
|
+
<img
|
|
814
|
+
src="/assets/img/svg/headerbar/setting.svg"
|
|
815
|
+
style={{ height: 18 }}
|
|
816
|
+
/>
|
|
817
|
+
</S.Toggle_2D_3D>
|
|
818
|
+
</div>
|
|
819
|
+
) : (
|
|
820
|
+
<div
|
|
821
|
+
style={{
|
|
822
|
+
display: 'flex',
|
|
823
|
+
position: 'relative',
|
|
824
|
+
backgroundColor: 'white',
|
|
825
|
+
height: 70,
|
|
826
|
+
cursor: 'pointer',
|
|
827
|
+
boxShadow:
|
|
828
|
+
'0px 3px 5px -1px rgba(156, 154, 154, 0.2), 0px 6px 10px 0px rgba(156, 154, 154, 0.39), 0px 1px 18px 0px rgba(156, 154, 154, 0.12)',
|
|
829
|
+
borderRadius: 10,
|
|
830
|
+
alignItems: 'center'
|
|
831
|
+
}}
|
|
832
|
+
>
|
|
833
|
+
<S.Toggle_2D_3D
|
|
834
|
+
onClick={() => {
|
|
835
|
+
this.props.setToolbar('');
|
|
836
|
+
projectActions.setMode(MODE_IDLE);
|
|
837
|
+
let layer = globalState.scene.getIn([
|
|
838
|
+
'layers',
|
|
839
|
+
globalState.scene.selectedLayer
|
|
840
|
+
]);
|
|
841
|
+
let sCount =
|
|
842
|
+
layer.selected.areas.size +
|
|
843
|
+
layer.selected.holes.size +
|
|
844
|
+
layer.selected.items.size +
|
|
845
|
+
layer.selected.lines.size;
|
|
846
|
+
if (sCount > 1) projectActions.unselectAll();
|
|
847
|
+
// this.props.setShowProperty(true);
|
|
848
|
+
this.setState({ ceil3DFlag: false });
|
|
849
|
+
// document.getElementById('item_custom') && (document.getElementById('item_custom').style.display = document.getElementById('item_custom').style.display === 'flex' && 'none');
|
|
850
|
+
document.getElementById('item_warning') &&
|
|
851
|
+
document.getElementById('item_custom') &&
|
|
852
|
+
(document.getElementById('item_warning').style.display =
|
|
853
|
+
document.getElementById('item_custom').style.display ===
|
|
854
|
+
'flex' && 'none');
|
|
855
|
+
}}
|
|
856
|
+
>
|
|
857
|
+
<S.FooterTitle>2D</S.FooterTitle>
|
|
858
|
+
</S.Toggle_2D_3D>
|
|
859
|
+
<S.Toggle_2D_3D
|
|
860
|
+
style={{ backgroundColor: TEXT_COLOR_NEUTRAL_5, marginLeft: 5 }}
|
|
861
|
+
>
|
|
862
|
+
<S.FooterTitle>3D</S.FooterTitle>
|
|
863
|
+
</S.Toggle_2D_3D>
|
|
864
|
+
{selLineFlag ? (
|
|
865
|
+
<Tooltip title="Elevation View">
|
|
866
|
+
<S.Toggle_2D_3D onClick={() => ViewElevation()}>
|
|
867
|
+
<S.ArrowIcon
|
|
868
|
+
style={{ width: 20, height: 20 }}
|
|
869
|
+
src={elevationImg}
|
|
870
|
+
/>
|
|
871
|
+
</S.Toggle_2D_3D>
|
|
872
|
+
</Tooltip>
|
|
873
|
+
) : (
|
|
874
|
+
<Tooltip title={<span>Please select a wall</span>}>
|
|
875
|
+
<S.Toggle_2D_3D_Button>
|
|
876
|
+
<S.ArrowIcon
|
|
877
|
+
style={{ width: 20, height: 20 }}
|
|
878
|
+
src={elevationImg}
|
|
879
|
+
/>
|
|
880
|
+
</S.Toggle_2D_3D_Button>
|
|
881
|
+
</Tooltip>
|
|
882
|
+
)}
|
|
883
|
+
<S.Direction_Left_Right
|
|
884
|
+
onMouseDown={() => {
|
|
885
|
+
window.tDKeyDown({ keyCode: 37 }); //Up key
|
|
886
|
+
panDragStart(37);
|
|
887
|
+
this.setState({ panButton: 'Left', dragFlag: false });
|
|
888
|
+
|
|
889
|
+
document.addEventListener(
|
|
890
|
+
'mouseup',
|
|
891
|
+
() => {
|
|
892
|
+
this.props.setToolbar('');
|
|
893
|
+
panDragStop();
|
|
894
|
+
this.setState({ panButton: 'Left', dragFlag: true });
|
|
895
|
+
},
|
|
896
|
+
{ once: true }
|
|
897
|
+
);
|
|
898
|
+
}}
|
|
899
|
+
>
|
|
900
|
+
<S.ArrowIcon src="/assets/img/svg/bottombar/arrow-left.svg" />
|
|
901
|
+
</S.Direction_Left_Right>
|
|
902
|
+
<div>
|
|
903
|
+
<S.Direction_Up_Down
|
|
904
|
+
onMouseDown={() => {
|
|
905
|
+
window.tDKeyDown({ keyCode: 38 }); //Up key
|
|
906
|
+
panDragStart(38);
|
|
907
|
+
this.setState({ panButton: 'Top', dragFlag: false });
|
|
908
|
+
|
|
909
|
+
document.addEventListener(
|
|
910
|
+
'mouseup',
|
|
911
|
+
() => {
|
|
912
|
+
this.props.setToolbar('');
|
|
913
|
+
panDragStop();
|
|
914
|
+
this.setState({ panButton: 'Top', dragFlag: true });
|
|
915
|
+
},
|
|
916
|
+
{ once: true }
|
|
917
|
+
);
|
|
918
|
+
}}
|
|
919
|
+
>
|
|
920
|
+
<S.ArrowIcon src="/assets/img/svg/bottombar/arrow-up.svg" />
|
|
921
|
+
</S.Direction_Up_Down>
|
|
922
|
+
<S.Direction_Up_Down
|
|
923
|
+
onMouseDown={() => {
|
|
924
|
+
window.tDKeyDown({ keyCode: 40 }); //Up key
|
|
925
|
+
panDragStart(40);
|
|
926
|
+
this.setState({ panButton: 'Bottom', dragFlag: false });
|
|
927
|
+
|
|
928
|
+
document.addEventListener(
|
|
929
|
+
'mouseup',
|
|
930
|
+
() => {
|
|
931
|
+
this.props.setToolbar('');
|
|
932
|
+
panDragStop();
|
|
933
|
+
this.setState({ panButton: 'Bottom', dragFlag: true });
|
|
934
|
+
},
|
|
935
|
+
{ once: true }
|
|
936
|
+
);
|
|
937
|
+
}}
|
|
938
|
+
>
|
|
939
|
+
<S.ArrowIcon src="/assets/img/svg/bottombar/arrow-down.svg" />
|
|
940
|
+
</S.Direction_Up_Down>
|
|
941
|
+
</div>
|
|
942
|
+
<S.Direction_Left_Right
|
|
943
|
+
onMouseDown={() => {
|
|
944
|
+
window.tDKeyDown({ keyCode: 39 }); //Up key
|
|
945
|
+
panDragStart(39);
|
|
946
|
+
this.setState({ panButton: 'Right', dragFlag: false });
|
|
947
|
+
|
|
948
|
+
document.addEventListener(
|
|
949
|
+
'mouseup',
|
|
950
|
+
() => {
|
|
951
|
+
this.props.setToolbar('');
|
|
952
|
+
panDragStop();
|
|
953
|
+
this.setState({ panButton: 'Right', dragFlag: true });
|
|
954
|
+
},
|
|
955
|
+
{ once: true }
|
|
956
|
+
);
|
|
957
|
+
}}
|
|
958
|
+
>
|
|
959
|
+
<S.ArrowIcon src="/assets/img/svg/bottombar/arrow-right.svg" />
|
|
960
|
+
</S.Direction_Left_Right>
|
|
961
|
+
<S.Rotation_Button
|
|
962
|
+
isVertical
|
|
963
|
+
onMouseDown={() => {
|
|
964
|
+
window.SPKeyDown({ keyCode: 87 });
|
|
965
|
+
spinDragStart(87);
|
|
966
|
+
this.setState({ panButton: 'spinTop', dragFlag: false });
|
|
967
|
+
}}
|
|
968
|
+
onMouseUp={() => {
|
|
969
|
+
this.props.setToolbar('');
|
|
970
|
+
spinDragStop();
|
|
971
|
+
this.setState({ panButton: 'spinTop', dragFlag: true });
|
|
972
|
+
}}
|
|
973
|
+
>
|
|
974
|
+
<S.Rotation_Icon
|
|
975
|
+
src="/assets/img/svg/bottombar/spin-up.svg"
|
|
976
|
+
width="unset"
|
|
977
|
+
/>
|
|
978
|
+
</S.Rotation_Button>
|
|
979
|
+
<div>
|
|
980
|
+
<S.Rotation_Button
|
|
981
|
+
onMouseDown={() => {
|
|
982
|
+
window.SPKeyDown({ keyCode: 68 });
|
|
983
|
+
spinDragStart(68);
|
|
984
|
+
this.setState({ panButton: 'spinRight', dragFlag: false });
|
|
985
|
+
}}
|
|
986
|
+
onMouseUp={() => {
|
|
987
|
+
this.props.setToolbar('');
|
|
988
|
+
spinDragStop();
|
|
989
|
+
this.setState({ panButton: 'spinRight', dragFlag: true });
|
|
990
|
+
}}
|
|
991
|
+
>
|
|
992
|
+
<S.Rotation_Icon
|
|
993
|
+
src="/assets/img/svg/bottombar/spin-right.svg"
|
|
994
|
+
height="unset"
|
|
995
|
+
/>
|
|
996
|
+
</S.Rotation_Button>
|
|
997
|
+
<S.Rotation_Button
|
|
998
|
+
onMouseDown={() => {
|
|
999
|
+
window.SPKeyDown({ keyCode: 65 });
|
|
1000
|
+
spinDragStart(65);
|
|
1001
|
+
this.setState({ panButton: 'spinLeft', dragFlag: false });
|
|
1002
|
+
}}
|
|
1003
|
+
onMouseUp={() => {
|
|
1004
|
+
this.props.setToolbar('');
|
|
1005
|
+
spinDragStop();
|
|
1006
|
+
this.setState({ panButton: 'spinLeft', dragFlag: true });
|
|
1007
|
+
}}
|
|
1008
|
+
>
|
|
1009
|
+
<S.Rotation_Icon
|
|
1010
|
+
height="unset"
|
|
1011
|
+
src="/assets/img/svg/bottombar/spin-left.svg"
|
|
1012
|
+
/>
|
|
1013
|
+
</S.Rotation_Button>
|
|
1014
|
+
</div>
|
|
1015
|
+
<S.Rotation_Button
|
|
1016
|
+
isVertical
|
|
1017
|
+
onMouseDown={() => {
|
|
1018
|
+
window.SPKeyDown({ keyCode: 83 });
|
|
1019
|
+
spinDragStart(83);
|
|
1020
|
+
this.setState({ panButton: 'spinBottom', dragFlag: false });
|
|
1021
|
+
}}
|
|
1022
|
+
onMouseUp={() => {
|
|
1023
|
+
this.props.setToolbar('');
|
|
1024
|
+
spinDragStop();
|
|
1025
|
+
this.setState({ panButton: 'spinBottom', dragFlag: true });
|
|
1026
|
+
}}
|
|
1027
|
+
>
|
|
1028
|
+
<S.Rotation_Icon
|
|
1029
|
+
src="/assets/img/svg/bottombar/spin-down.svg"
|
|
1030
|
+
width="unset"
|
|
1031
|
+
/>
|
|
1032
|
+
</S.Rotation_Button>
|
|
1033
|
+
<S.Toggle_2D_3D
|
|
1034
|
+
style={{
|
|
1035
|
+
marginLeft: 5,
|
|
1036
|
+
marginRight: 10,
|
|
1037
|
+
backgroundColor:
|
|
1038
|
+
document.getElementById('setting_dialog') &&
|
|
1039
|
+
document.getElementById('setting_dialog').style.display ===
|
|
1040
|
+
'flex' &&
|
|
1041
|
+
TEXT_COLOR_NEUTRAL_5
|
|
1042
|
+
}}
|
|
1043
|
+
onClick={e => {
|
|
1044
|
+
this.props.setToolbar('');
|
|
1045
|
+
OpenSettings(e);
|
|
1046
|
+
}}
|
|
1047
|
+
>
|
|
1048
|
+
<img
|
|
1049
|
+
src="/assets/img/svg/headerbar/setting.svg"
|
|
1050
|
+
style={{ height: 18 }}
|
|
1051
|
+
/>
|
|
1052
|
+
</S.Toggle_2D_3D>
|
|
1053
|
+
</div>
|
|
1054
|
+
);
|
|
1055
|
+
|
|
1056
|
+
let snackBar = (
|
|
1057
|
+
<SnackBar
|
|
1058
|
+
style={{ top: 90 }}
|
|
1059
|
+
isOpen={this.state.isSnackBarOpen}
|
|
1060
|
+
message={this.state.snackBarMessage}
|
|
1061
|
+
handleClose={() =>
|
|
1062
|
+
this.setState({ isSnackBarOpen: false, snackBarMessage: '' })
|
|
1063
|
+
}
|
|
1064
|
+
/>
|
|
1065
|
+
);
|
|
1066
|
+
return mode !== 'MODE_VIEWING_CATALOG' ? (
|
|
1067
|
+
<div
|
|
1068
|
+
style={{
|
|
1069
|
+
position: 'absolute',
|
|
1070
|
+
bottom: 10,
|
|
1071
|
+
display: 'flex',
|
|
1072
|
+
width: '100%',
|
|
1073
|
+
justifyContent: 'center',
|
|
1074
|
+
alignItems: 'flex-end',
|
|
1075
|
+
zIndex: 0
|
|
1076
|
+
}}
|
|
1077
|
+
>
|
|
1078
|
+
{snackBar}
|
|
1079
|
+
{footerview}
|
|
1080
|
+
</div>
|
|
1081
|
+
) : null;
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
FooterBar.propTypes = {
|
|
1086
|
+
state: PropTypes.object.isRequired,
|
|
1087
|
+
// footerbarComponents: PropTypes.array.isRequired,
|
|
1088
|
+
// width: PropTypes.number.isRequired,
|
|
1089
|
+
// height: PropTypes.number.isRequired,
|
|
1090
|
+
content: PropTypes.number.isRequired
|
|
1091
|
+
// softwareSignature: PropTypes.string
|
|
1092
|
+
};
|
|
1093
|
+
|
|
1094
|
+
FooterBar.contextTypes = {
|
|
1095
|
+
projectActions: PropTypes.object.isRequired,
|
|
1096
|
+
viewer2DActions: PropTypes.object.isRequired,
|
|
1097
|
+
viewer3DActions: PropTypes.object.isRequired,
|
|
1098
|
+
// linesActions: PropTypes.object.isRequired,
|
|
1099
|
+
// holesActions: PropTypes.object.isRequired,
|
|
1100
|
+
itemsActions: PropTypes.object.isRequired,
|
|
1101
|
+
// translator: PropTypes.object.isRequired,
|
|
1102
|
+
catalog: PropTypes.object.isRequired
|
|
1103
|
+
};
|