HDL Home App 第二版本 旧平台金堂用 正在使用
hxb
2022-08-30 25429f085093d89d543a0b90e30d0d62d1b7dac9
ZigbeeApp/Shared/Phone/UserCenter/SharedContent/LookSharedListRoomForm.cs
@@ -67,21 +67,18 @@
            //清空bodyFrame
            this.ClearBodyFrame();
            HdlThreadLogic.Current.RunThread(async () =>
            HdlThreadLogic.Current.RunThread(() =>
            {
                //获取成员的共享列表
                var result = await HdlShardLogic.Current.GetMemberShardContentListAndSetToLocation(memberShardInfo);
                var result = HdlShardLogic.Current.GetMemberShardContentListAndSetToLocation(memberShardInfo);
                if (result == false)
                {
                    //显示重新加载的界面
                    this.ShowReLoadView();
                    return;
                }
                //从本地获取成员的分享列表
                HdlShardLogic.Current.GetMemberShardContentListFromLocal(memberShardInfo);
                //初始化区域列表
                this.InitAreaListRow();
            });
        }
@@ -98,8 +95,11 @@
            {
                HdlThreadLogic.Current.RunMain(() =>
                {
                    //显示没有分享数据模式
                    this.ShowNotShardMode();
                    bodyFrameLayout.RemoveAll();
                    //还没有共享区域给成员{0}可点击右上角“+”添加
                    string msg = Language.StringByID(R.MyInternationalizationString.uNotShardComtentMsg);
                    string[] Arry = msg.Split(new string[] { "{0}" }, StringSplitOptions.RemoveEmptyEntries);
                    this.ShowNotDataImage(bodyFrameLayout, Arry, "Item/NotShardPic.png", 383, 279);
                });
            }
            else
@@ -124,7 +124,7 @@
                    bodyFrameLayout.AddChidren(listView);
                    //排序楼层
                    var dicSort = Common.Room.CurrentRoom.GetFloorSortList();
                    var dicSort = HdlRoomLogic.Current.GetFloorSortList();
                    foreach (var floorId in dicSort.Keys)
                    {
                        if (dicGroup.ContainsKey(floorId) == true)
@@ -139,6 +139,8 @@
                    {
                        this.AddRoomListRow(floorId, dicGroup[floorId]);
                    }
                    //调整桌布高度
                    listView.AdjustTableHeight();
                });
            }
        }
@@ -152,7 +154,7 @@
            var frameBack = new FrameListControl(29);
            frameBack.BackgroundColor = UserCenterColor.Current.White;
            frameBack.Height = 10;
            this.listView.AddChidrenFrame(frameBack);
            this.listView.AddChidren(frameBack);
            //楼层
            if (string.IsNullOrEmpty(floorId) == false)
@@ -178,7 +180,7 @@
                }
            }
            //房间排序
            var listSortRoom = Common.Room.CurrentRoom.GetFloorSortRoom(floorId, false);
            var listSortRoom = HdlRoomLogic.Current.GetFloorSortRoom(floorId, false);
            var listSort = new HashSet<string>();
            foreach (var room in listSortRoom)
            {
@@ -223,6 +225,8 @@
                }
                frameRow.frameTable.ButtonClickEvent += (sender, e) =>
                {
                    var form = new LookSharedContentForm();
                    form.AddForm(room, memberShardInfo);
                };
                //删除
@@ -259,32 +263,39 @@
        {
            //获取全部设备
            var listDevice = new List<CommonDevice>();
            foreach (var deviceUi in room.DeviceUIList)
            foreach (var deviceKeys in room.ListDevice)
            {
                var device = deviceUi.CommonDevice;
                if (device == null)
                string deviceFile = HdlShardLogic.Current.GetShardDeviceFileName(deviceKeys);
                if (deviceFile == string.Empty)
                {
                    string deviceFile = deviceUi.FileName.Replace("DeviceUI_", string.Empty);
                    var byteData = HdlShardLogic.Current.GetShardFileContent(deviceFile);
                    if (byteData == null)
                    {
                        continue;
                    }
                    device = Newtonsoft.Json.JsonConvert.DeserializeObject<CommonDevice>(System.Text.Encoding.UTF8.GetString(byteData));
                    continue;
                }
                var byteData = HdlShardLogic.Current.GetShardFileContent(deviceFile);
                if (byteData == null)
                {
                    continue;
                }
                var device = Newtonsoft.Json.JsonConvert.DeserializeObject<CommonDevice>(System.Text.Encoding.UTF8.GetString(byteData));
                device.Type = (DeviceType)device.DeviceID;
                listDevice.Add(device);
            }
            //获取全部场景
            var listScene = new List<Common.SceneUI>();
            foreach (var sceneUi in room.SceneUIList)
            foreach (var sceneId in room.ListSceneId)
            {
                var byteData = HdlShardLogic.Current.GetShardFileContent($"Scene_{sceneId}.json");
                if (byteData == null)
                {
                    continue;
                }
                var sceneUi = Newtonsoft.Json.JsonConvert.DeserializeObject<Common.SceneUI>(System.Text.Encoding.UTF8.GetString(byteData));
                listScene.Add(sceneUi);
            }
            HdlThreadLogic.Current.RunThread(async () =>
            HdlThreadLogic.Current.RunThread(() =>
            {
                //执行删除
                var result = await HdlShardLogic.Current.DoDeleteSharedContent(memberShardInfo, room, listDevice, listScene);
                var result = HdlShardLogic.Current.DoDeleteSharedContent(memberShardInfo, room, listDevice, listScene);
                if (result == true)
                {
                    HdlThreadLogic.Current.RunMain(() =>
@@ -308,45 +319,6 @@
            //重新刷新界面
            this.InitMiddleFrame();
            return 1;
        }
        #endregion
        #region ■ 一般方法___________________________
        /// <summary>
        /// 显示没有分享数据模式
        /// </summary>
        private void ShowNotShardMode()
        {
            bodyFrameLayout.RemoveAll();
            //图片
            var btnPic = new PicViewControl(383, 279);
            btnPic.Gravity = Gravity.CenterHorizontal;
            btnPic.Y = Application.GetRealHeight(498);
            btnPic.UnSelectedImagePath = "Item/NotShardPic.png";
            bodyFrameLayout.AddChidren(btnPic);
            //还没有共享区域给成员{0}可点击右上角“+”添加
            string msg = Language.StringByID(R.MyInternationalizationString.uNotShardComtentMsg);
            string[] Arry = msg.Split(new string[] { "{0}" }, StringSplitOptions.RemoveEmptyEntries);
            var btnMsg1 = new NormalViewControl(bodyFrameLayout.Width, Application.GetRealHeight(50), false);
            btnMsg1.Y = Application.GetRealHeight(962);
            btnMsg1.TextAlignment = TextAlignment.Center;
            btnMsg1.TextSize = 12;
            btnMsg1.TextColor = UserCenterColor.Current.TextGrayColor1;
            btnMsg1.Text = Arry[0];
            bodyFrameLayout.AddChidren(btnMsg1);
            if (Arry.Length > 1)
            {
                var btnMsg2 = new NormalViewControl(bodyFrameLayout.Width, Application.GetRealHeight(50), false);
                btnMsg2.Y = btnMsg1.Bottom;
                btnMsg2.TextAlignment = TextAlignment.Center;
                btnMsg2.TextSize = 12;
                btnMsg2.TextColor = UserCenterColor.Current.TextGrayColor1;
                btnMsg2.Text = Arry[1];
                bodyFrameLayout.AddChidren(btnMsg2);
            }
        }
        #endregion