From 517f36f9f4e36432f073196e84986532fc6c5926 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期二, 26 三月 2024 11:10:43 +0800
Subject: [PATCH] Merge branch 'Four-Way-Rack' of http://47.97.1.152:5880/r/zy-asrs-master into Four-Way-Rack

---
 zy-asrs-flow/src/pages/map/index.jsx |  257 ++++++++++++++++++++++++++++++---------------------
 1 files changed, 150 insertions(+), 107 deletions(-)

diff --git a/zy-asrs-flow/src/pages/map/index.jsx b/zy-asrs-flow/src/pages/map/index.jsx
index 9b94472..7158df3 100644
--- a/zy-asrs-flow/src/pages/map/index.jsx
+++ b/zy-asrs-flow/src/pages/map/index.jsx
@@ -1,7 +1,7 @@
 import * as React from 'react'
 import * as PIXI from 'pixi.js';
 import { FormattedMessage, useIntl, useModel } from '@umijs/max';
-import { Layout, Button, Flex, Row, Col, FloatButton, Select, notification } from 'antd';
+import { Layout, Button, Flex, Row, Col, FloatButton, Select, notification, Segmented } from 'antd';
 const { Header, Content } = Layout;
 import {
     AppstoreAddOutlined,
@@ -17,7 +17,9 @@
 import * as Utils from './utils'
 import Player from './player';
 import MapSearch from './header/search';
+import MapFloor from './header/floor';
 import MapDrawer from './drawer';
+import BatchDrawer from './batch';
 
 const useStyles = createStyles(({ token }) => {
     let dark = token.colorBgBase === '#000';
@@ -39,7 +41,8 @@
         },
         content: {
             backgroundColor: '#F8FAFB',
-            height: 'calc(100vh - 120px)'
+            height: 'calc(100vh - 120px)',
+            position: 'relative'
         },
         select: {
             color: 'red',
@@ -76,18 +79,25 @@
     });
     const [app, setApp] = React.useState(null);
     const [mapContainer, setMapContainer] = React.useState(null);
-    const [didClickSprite, setDidClickSprite] = React.useState(false);
     const [spriteBySettings, setSpriteBySettings] = React.useState(null);
     const prevSpriteBySettingsRef = React.useRef();
     const [drawerVisible, setDrawerVisible] = React.useState(false);
     const [dataFetched, setDataFetched] = React.useState(false);
     const [curSprite, setCurSPrite] = React.useState(null);
     const prevCurSpriteRef = React.useRef();
+    const hasFloor = true;
+    // const [hasFloor, setHasFloor] = React.useState(true);
+    const [curFloor, setCurFloor] = React.useState(() => {
+        const storedValue = localStorage.getItem('curFloor');
+        return storedValue !== null ? JSON.parse(storedValue) : 1;
+    });
+    const [batchSprites, setBatchSprites] = React.useState([]);
+    const [batchDrawerVisible, setBatchDrawerVisible] = React.useState(false);
 
     // init func
     React.useEffect(() => {
         const initialize = async () => {
-            player = new Player(mapRef.current, styles.dark, didClickSprite);
+            player = new Player(mapRef.current, styles.dark);
             setApp(player.app);
             setMapContainer(player.mapContainer);
             Utils.syncApp(player.app);
@@ -101,7 +111,8 @@
                 });
             };
             window.addEventListener('resize', handleResize);
-            await Utils.fetchMapData(intl);
+
+            await Utils.fetchMapData(curFloor);
             setDataFetched(true);
             setModel(MapModel.OBSERVER_MODEL)
             setTimeout(() => {
@@ -125,61 +136,69 @@
         }
     }, [app, mapContainer, windowSize])
 
-    // model
-    React.useEffect(() => {
-        if (!mapContainer && !dataFetched) {
-            return;
-        }
+    // fn switch model
+    const switchModel = (model) => {
+        Utils.removeSelectedEffect();
+
+        setCurSPrite(null);
+        setDrawerVisible(false);
+        setSpriteBySettings(null);
+        setSettingsVisible(false);
+        setBatchSprites([]);
+        setBatchDrawerVisible(false);
+
         switch (model) {
             case MapModel.OBSERVER_MODEL:
-
                 player.hideGridlines();
                 player.hideStarryBackground();
 
-                player.activateMapEvent(null);
-
-                Utils.removeSelectedEffect();
-                setCurSPrite(null);
                 setDeviceVisible(false);
-                setSettingsVisible(false);
+                player.activateMapEvent(Utils.MapEvent.SELECTION_BOX, (selectedSprites, resetFn) => {
+                    setBatchSprites(selectedSprites);
+                });
 
                 mapContainer.children.forEach(child => {
                     Utils.viewFeature(child, setCurSPrite);
                 })
                 break
             case MapModel.MOVABLE_MODEL:
-
                 player.showGridlines();
                 player.hideStarryBackground();
 
-                player.activateMapEvent(Utils.MapEvent.SELECTION_BOX);
-
-                Utils.removeSelectedEffect();
-                setSpriteBySettings(null);
-                setSettingsVisible(false);
-                setDrawerVisible(false);
+                player.activateMapEvent(Utils.MapEvent.SELECTION_BOX, (selectedSprites, resetFn) => {
+                    Utils.spriteListBeMovable(selectedSprites, () => {
+                        resetFn();
+                    });
+                });
 
                 mapContainer.children.forEach(child => {
-                    Utils.beMovable(child, setDidClickSprite);
+                    Utils.beMovable(child);
                 })
                 break
             case MapModel.SETTINGS_MODEL:
-
                 player.showGridlines();
                 player.showStarryBackground();
 
-                player.activateMapEvent(null);
-
                 setDeviceVisible(false);
-                setDrawerVisible(false);
+                player.activateMapEvent(Utils.MapEvent.SELECTION_BOX, (selectedSprites, resetFn) => {
+                    setBatchSprites(selectedSprites);
+                });
 
                 mapContainer.children.forEach(child => {
-                    Utils.beSettings(child, setSpriteBySettings, setDidClickSprite);
+                    Utils.beSettings(child, setSpriteBySettings);
                 })
                 break
             default:
                 break
         }
+    }
+
+    // model
+    React.useEffect(() => {
+        if (!mapContainer && !dataFetched) {
+            return;
+        }
+        switchModel(model);
     }, [model]);
 
     // Add New Device
@@ -190,7 +209,7 @@
 
         Utils.initSprite(sprite, type);
         mapContainer.addChild(sprite);
-        Utils.beMovable(sprite, setDidClickSprite);
+        Utils.beMovable(sprite);
     };
 
     // watch curSprite
@@ -213,10 +232,25 @@
     }, [curSprite]);
     const prevCurSprite = prevCurSpriteRef.current;
 
-    // didClickSprite, stop triggers both sprite click and play's selection boxs
+    // fn switch floor
+    const switchFloor = async (floor) => {
+        await Utils.fetchMapData(floor);
+
+        switchModel(model);
+
+        setTimeout(() => {
+            player.adaptScreen();
+        }, 200)
+    }
+
+    // watch curFloor
     React.useEffect(() => {
-        player.updateDidClickSprite(didClickSprite);
-    }, [didClickSprite])
+        if (!mapContainer && !dataFetched) {
+            return;
+        }
+        switchFloor(curFloor);
+        localStorage.setItem('curFloor', JSON.stringify(curFloor));
+    }, [curFloor]);
 
     // watch spriteBySettings
     React.useEffect(() => {
@@ -236,11 +270,18 @@
     }, [spriteBySettings])
     const prevSpriteBySettings = prevSpriteBySettingsRef.current;
 
-    const settingsFinish = (values, fn) => {
-        fn();
-        // setSettingsVisible(false);
-        // setSpriteBySettings(null);
-    }
+    // watch batchSprites
+    React.useEffect(() => {
+        if (!mapContainer) {
+            return;
+        }
+        if (batchSprites?.length > 0) {
+            setBatchDrawerVisible(true)
+        } else {
+            player.clearSelectedSprites();
+            setBatchDrawerVisible(false)
+        }
+    }, [batchSprites])
 
     return (
         <>
@@ -254,13 +295,14 @@
                                     model={model}
                                     setModel={setModel}
                                     ModelEnum={MapModel}
+                                    curFloor={curFloor}
                                     curSprite={curSprite}
                                     setCurSPrite={setCurSPrite}
                                     setSpriteBySettings={setSpriteBySettings}
                                 />
                             )}
                         </Col>
-                        <Col span={12} style={{ backgroundColor: styles.dark ? '#2C3A47' : '#4a69bd' }}>
+                        <Col span={12} style={{ backgroundColor: styles.dark ? '#2f3542' : '#4a69bd' }}>
                             <Flex className={styles.flex} gap={'large'} justify={'flex-end'} align={'center'}>
 
                                 {model === MapModel.OBSERVER_MODEL && (
@@ -268,24 +310,8 @@
                                         <Button
                                             className='map-header-button'
                                             size={'large'}
-                                            onClick={async () => {
-                                                await Utils.fetchMapData(intl);
-
-                                                player.hideGridlines();
-                                                player.hideStarryBackground();
-
-                                                player.activateMapEvent(null);
-
-                                                Utils.removeSelectedEffect();
-                                                setCurSPrite(null);
-                                                setDeviceVisible(false);
-                                                setSettingsVisible(false);
-                                                setDrawerVisible(false);
-
-                                                mapContainer.children.forEach(child => {
-                                                    Utils.viewFeature(child, setCurSPrite);
-                                                })
-
+                                            onClick={() => {
+                                                switchFloor(curFloor)
                                             }}
                                         >
                                             <FormattedMessage id='map.load' defaultMessage='鍔犺浇鍦板浘' />
@@ -308,7 +334,7 @@
                                             className='map-header-button'
                                             size={'large'}
                                             onClick={() => {
-                                                Utils.saveMapData(intl);
+                                                Utils.saveMapData(intl, curFloor);
                                             }}
                                         >
                                             <FormattedMessage id='map.save' defaultMessage='淇濆瓨鍦板浘' />
@@ -340,55 +366,62 @@
                     </Row>
                 </Header>
                 <Content ref={contentRef} className={styles.content}>
-                    <div ref={mapRef} style={{ position: "relative" }} >
-                        <FloatButton.Group
-                            shape="square"
-                            style={{
-                                left: 35,
-                                bottom: 35
-                            }}
-                        >
-                            <FloatButton
-                                icon={<CompressOutlined />}
-                                onClick={() => {
-                                    player.adaptScreen();
-                                }}
-                            />
-                        </FloatButton.Group>
+                    <div ref={mapRef} />
 
-                        <FloatButton.Group
-                            hidden={model === MapModel.OBSERVER_MODEL}
-                            style={{
-                                left: 35,
-                                bottom: window.innerHeight / 2
+                    {hasFloor && (
+                        <MapFloor
+                            curFloor={curFloor}
+                            setCurFloor={setCurFloor}
+                        />
+                    )}
+
+                    <FloatButton.Group
+                        shape="square"
+                        style={{
+                            left: 35,
+                            bottom: 35
+                        }}
+                    >
+                        <FloatButton
+                            icon={<CompressOutlined />}
+                            onClick={() => {
+                                player.adaptScreen();
                             }}
-                            icon={<AppstoreAddOutlined />}
-                        >
-                            <FloatButton
-                                hidden={model === MapModel.OBSERVER_MODEL}
-                                type={deviceVisible ? 'primary' : 'default'}
-                                tooltip={<div><FormattedMessage id='map.device.add' defaultMessage='娣诲姞璁惧' /></div>}
-                                icon={<FileAddOutlined />}
-                                onClick={() => {
-                                    if (deviceVisible) {
-                                        setDeviceVisible(false);
-                                    } else {
-                                        setDeviceVisible(true);
-                                        setModel(MapModel.MOVABLE_MODEL);
-                                    }
-                                }}
-                            />
-                            <FloatButton
-                                hidden={model === MapModel.OBSERVER_MODEL}
-                                type={model === MapModel.SETTINGS_MODEL ? 'primary' : 'default'}
-                                tooltip={<div><FormattedMessage id='map.device.oper' defaultMessage='鍙傛暟璁剧疆' /></div>}
-                                icon={<SettingOutlined />}
-                                onClick={() => {
-                                    setModel(model === MapModel.SETTINGS_MODEL ? MapModel.MOVABLE_MODEL : MapModel.SETTINGS_MODEL)
-                                }}
-                            />
-                        </FloatButton.Group>
-                    </div>
+                        />
+                    </FloatButton.Group>
+
+                    <FloatButton.Group
+                        hidden={model === MapModel.OBSERVER_MODEL}
+                        style={{
+                            left: 35,
+                            bottom: window.innerHeight / 2
+                        }}
+                        icon={<AppstoreAddOutlined />}
+                    >
+                        <FloatButton
+                            hidden={model === MapModel.OBSERVER_MODEL}
+                            type={deviceVisible ? 'primary' : 'default'}
+                            tooltip={<div><FormattedMessage id='map.device.add' defaultMessage='娣诲姞璁惧' /></div>}
+                            icon={<FileAddOutlined />}
+                            onClick={() => {
+                                if (deviceVisible) {
+                                    setDeviceVisible(false);
+                                } else {
+                                    setModel(MapModel.MOVABLE_MODEL);
+                                    setDeviceVisible(true);
+                                }
+                            }}
+                        />
+                        <FloatButton
+                            hidden={model === MapModel.OBSERVER_MODEL}
+                            type={model === MapModel.SETTINGS_MODEL ? 'primary' : 'default'}
+                            tooltip={<div><FormattedMessage id='map.device.oper' defaultMessage='鍙傛暟璁剧疆' /></div>}
+                            icon={<SettingOutlined />}
+                            onClick={() => {
+                                setModel(model === MapModel.SETTINGS_MODEL ? MapModel.MOVABLE_MODEL : MapModel.SETTINGS_MODEL)
+                            }}
+                        />
+                    </FloatButton.Group>
                 </Content>
             </Layout >
 
@@ -399,6 +432,18 @@
                 onCancel={() => {
                     setCurSPrite(null);
                     setDrawerVisible(false);
+                }}
+            />
+
+            <BatchDrawer
+                open={batchDrawerVisible}
+                batchSprites={batchSprites}
+                refCurr={mapRef.current}
+                model={model}
+                ModelEnum={MapModel}
+                onCancel={() => {
+                    setBatchSprites([]);
+                    setBatchDrawerVisible(false);
                 }}
             />
 
@@ -419,9 +464,7 @@
                     setSpriteBySettings(null);
                 }}
                 setSpriteBySettings={setSpriteBySettings}
-                setDidClickSprite={setDidClickSprite}
                 refCurr={mapRef.current}
-                onSubmit={settingsFinish}
             />
         </>
     )

--
Gitblit v1.9.1