From 3cdd43cee7355743eb554badf5b742e061ab2172 Mon Sep 17 00:00:00 2001
From: JLChen <551775569@qq.com>
Date: 星期四, 17 十二月 2020 10:39:00 +0800
Subject: [PATCH] 2020-12-17 1.成员管理UI还原度优化

---
 HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPage.cs |  232 ++++++++++++++++++++++++++++++++++++++++++++--------------
 1 files changed, 176 insertions(+), 56 deletions(-)

diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPage.cs
index 99953e8..dea9002 100644
--- a/HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPage.cs
+++ b/HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPage.cs
@@ -58,9 +58,11 @@
                 TextAlignment = TextAlignment.CenterLeft,
                 TextColor = CSS_Color.FirstLevelTitleColor,
                 TextSize = CSS_FontSize.TextFontSize,
-                Text = memberInfo.nickName + "(" + memberInfo.Account + ")",
+                //Text = memberInfo.nickName + "(" + memberInfo.UserName + ")",
             };
             headPortraitView.AddChidren(btnMemberName);
+            string username = HDLCommon.Current.GetUserName(memberInfo.memberName);
+            btnMemberName.Text = memberInfo.nickName + "(" + username + ")";
 
             #region RoomList
             roomListView = new VerticalScrolViewLayout()
@@ -117,35 +119,54 @@
             var btnLine = new Button()
             {
                 X = Application.GetRealWidth(16),
-                Y = btnTitle.Bottom,
+                Y = titleView.Height - Application.GetRealHeight(2),
                 Width = Application.GetRealWidth(360),
                 Height = Application.GetRealHeight(1),
                 BackgroundColor = CSS_Color.DividingLineColor,
             };
-            roomListView.AddChidren(btnLine);
+            titleView.AddChidren(btnLine);
 
             //---------------------------------------------
-            //var roomListView = new VerticalScrolViewLayout()
-            //{
-            //    Y = btnLine.Bottom,
-            //    Height = Application.GetRealHeight(440),
-            //};
-            //contentView.AddChidren(roomListView);
+            //鏈垎閰嶅尯鍩熺殑鍔熻兘
+            List<Function> allFunctionList = FunctionList.List.GetDeviceFunctionList();
+            //鏈垎閰嶅尯鍩熺殑鍔熻兘
+            List<Function> unallocatedList = new List<Function>();
+            foreach (var function in allFunctionList)
+            {
+                function.roomIds.Remove(null);
+                if (function.roomIds.Count > 0)
+                {
+                    //allocatedList.Add(function);
+                }
+                else
+                {
+                    unallocatedList.Add(function);
+                }
+            }
 
-            //List<Function> funss = new List<Function>();
-            //if (memberInfo.CurResidenceShareDate.Count > 0)
-            //{
-            //    foreach (var sd in memberInfo.CurResidenceShareDate)
-            //    {
-            //        funss.Add(Newtonsoft.Json.JsonConvert.DeserializeObject<ShareData>(System.Text.Encoding.UTF8.GetString(sd.ShareDataBytes)));
-            //    }
-            //}
+            //绉婚櫎褰撳墠浣忓畢宸茬粡涓嶅瓨鍦ㄧ殑鍔熻兘
+            for (int i = 0; i < memberInfo.CurResidenceShareDate.Count;)
+            {
+                var sd = memberInfo.CurResidenceShareDate[i];
+                if (allFunctionList.Find((obj) => obj.deviceId == sd.shareTypeId) == null)
+                {
+                    //new DAL.Server.HttpServerRequest().DeleteShareData(sd);
+                    //寰呯‘璁ゆ槸鍚﹀悓姝ヤ簯绔垹闄ゅ垎浜�
+                    memberInfo.CurResidenceShareDate.Remove(sd);
+                }
+                else
+                {
+                    i++;
+                }
+            }
+
             foreach (var room in SpatialInfo.CurrentSpatial.RoomList)
             {
-                var roomView = new FrameLayout()
+                var roomView = new RowLayout()
                 {
                     Height = Application.GetRealWidth(50),
                     BackgroundColor = CSS_Color.MainBackgroundColor,
+                    LineColor = CSS_Color.MainBackgroundColor,
                 };
                 roomListView.AddChidren(roomView);
 
@@ -171,20 +192,20 @@
                         addCount++;
                     }
                 }
-                //绉婚櫎褰撳墠浣忓畢宸茬粡涓嶅瓨鍦ㄧ殑鍔熻兘
-                for (int i = 0; i < memberInfo.CurResidenceShareDate.Count;)
-                {
-                    var sd = memberInfo.CurResidenceShareDate[i];
-                    if (FunctionList.List.GetDeviceFunctionList().Find((obj) => obj.deviceId == sd.shareTypeId) == null)
-                    {
-                        //new DAL.Server.HttpServerRequest().DeleteShareData(sd);
-                        memberInfo.CurResidenceShareDate.Remove(sd);
-                    }
-                    else
-                    {
-                        i++;
-                    }
-                }
+                ////绉婚櫎褰撳墠浣忓畢宸茬粡涓嶅瓨鍦ㄧ殑鍔熻兘
+                //for (int i = 0; i < memberInfo.CurResidenceShareDate.Count;)
+                //{
+                //    var sd = memberInfo.CurResidenceShareDate[i];
+                //    if (allFunctionList.Find((obj) => obj.deviceId == sd.shareTypeId) == null)
+                //    {
+                //        //new DAL.Server.HttpServerRequest().DeleteShareData(sd);
+                //        memberInfo.CurResidenceShareDate.Remove(sd);
+                //    }
+                //    else
+                //    {
+                //        i++;
+                //    }
+                //}
 
                 var btnFunctionCount = new Button()
                 {
@@ -208,6 +229,22 @@
                     UnSelectedImagePath = "Public/Right.png",
                 };
                 roomView.AddChidren(btnRight);
+                //鍒嗗壊绾�
+                var lineView = new LineView(roomView.Height - Application.GetRealHeight(1));
+                roomView.AddChidren(lineView);
+                //鍒犻櫎鎸夐挳
+                var deleteBtn = new Button()
+                {
+                    TextID = StringId.Del,
+                    BackgroundColor = CSS_Color.AuxiliaryColor2,
+                    TextColor = CSS_Color.MainBackgroundColor,
+                    TextSize = CSS_FontSize.TextFontSize,
+                };
+                roomView.AddRightView(deleteBtn);
+                deleteBtn.MouseUpEventHandler = (sender, e) =>
+                {
+                    //鍒犻櫎浜嬩欢
+                };
 
                 EventHandler<MouseEventArgs> eHandler = (sender, e) =>
                 {
@@ -223,35 +260,118 @@
                 btnRoomName.MouseUpEventHandler = eHandler;
                 btnRight.MouseUpEventHandler = eHandler;
                 btnFunctionCount.MouseUpEventHandler = eHandler;
-
-                if (SpatialInfo.CurrentSpatial.RoomList.IndexOf(room) < SpatialInfo.CurrentSpatial.RoomList.Count - 2)
-                {
-                    var btnRoomLine = new Button()
-                    {
-                        X = Application.GetRealWidth(16),
-                        Y = Application.GetRealWidth(49),
-                        Width = Application.GetRealWidth(343),
-                        Height = Application.GetRealWidth(1),
-                        BackgroundColor = CSS_Color.DividingLineColor,
-                    };
-                    roomView.AddChidren(btnRoomLine);
-                }
             }
 
-            //if (DB_ResidenceData.rooms.Count > 10)
-            //{
-            //    roomListView.ScrollEnabled = true;
-            //}
-            //else
-            //{
-            //    roomListView.ScrollEnabled = false;
+            //2020-12-16 鍔犺浇鏈垎閰嶅尯鍩熷姛鑳�
+            AddNoAreaFunction(unallocatedList);
+        }
 
-            //    roomListView.AddChidren(new Button()
+        /// <summary>
+        /// 娣诲姞鏈垎閰嶅尯鍩熷姛鑳�
+        /// </summary>
+        /// <param name="unallocatedList"></param>
+        void AddNoAreaFunction(List<Function> unallocatedList)
+        {
+            var roomView = new RowLayout()
+            {
+                Height = Application.GetRealWidth(50),
+                BackgroundColor = CSS_Color.MainBackgroundColor,
+                LineColor = CSS_Color.MainBackgroundColor,
+            };
+            roomListView.AddChidren(roomView);
+
+            var btnRoomName = new Button()
+            {
+                X = Application.GetRealWidth(16),
+                Y = Application.GetRealWidth(4),
+                Width = Application.GetRealWidth(330),
+                Height = Application.GetRealWidth(24),
+                TextAlignment = TextAlignment.CenterLeft,
+                TextColor = CSS_Color.FirstLevelTitleColor,
+                TextSize = CSS_FontSize.TextFontSize,
+                TextID = StringId.NoAreaFunction
+            };
+            roomView.AddChidren(btnRoomName);
+
+            //璁$畻宸茬粡鍔犲叆鎴块棿鐨勮澶囨暟閲�
+            int addCount = 0;
+            foreach (var sd in memberInfo.CurResidenceShareDate)
+            {
+                if (unallocatedList.Find((obj) => obj.deviceId == sd.shareTypeId) != null)
+                {
+                    addCount++;
+                }
+            }
+            ////绉婚櫎褰撳墠浣忓畢宸茬粡涓嶅瓨鍦ㄧ殑鍔熻兘
+            //for (int i = 0; i < memberInfo.CurResidenceShareDate.Count;)
+            //{
+            //    var sd = memberInfo.CurResidenceShareDate[i];
+            //    if (allFunctionList.Find((obj) => obj.deviceId == sd.shareTypeId) == null)
             //    {
-            //        Height = Application.GetRealWidth(441),
-            //        BackgroundColor = CSS_Color.BackgroundColor,
-            //    });
+            //        //new DAL.Server.HttpServerRequest().DeleteShareData(sd);
+            //        memberInfo.CurResidenceShareDate.Remove(sd);
+            //    }
+            //    else
+            //    {
+            //        i++;
+            //    }
             //}
+
+            var btnFunctionCount = new Button()
+            {
+                X = Application.GetRealWidth(16),
+                Y = btnRoomName.Bottom,
+                Width = Application.GetRealWidth(330),
+                Height = Application.GetRealWidth(18),
+                TextAlignment = TextAlignment.CenterLeft,
+                TextColor = CSS_Color.PromptingColor1,
+                TextSize = CSS_FontSize.PromptFontSize_SecondaryLevel,
+                Text = addCount + "/" + unallocatedList.Count.ToString(),
+            };
+            roomView.AddChidren(btnFunctionCount);
+
+            var btnRight = new Button()
+            {
+                X = Application.GetRealWidth(351),
+                Gravity = Gravity.CenterVertical,
+                Width = Application.GetMinRealAverage(16),
+                Height = Application.GetMinRealAverage(16),
+                UnSelectedImagePath = "Public/Right.png",
+            };
+            roomView.AddChidren(btnRight);
+            ////鍒嗗壊绾�
+            //var lineView = new LineView(roomView.Height - Application.GetRealHeight(1));
+            //roomView.AddChidren(lineView);
+            //鍒犻櫎鎸夐挳
+            var deleteBtn = new Button()
+            {
+                TextID = StringId.Del,
+                BackgroundColor = CSS_Color.AuxiliaryColor2,
+                TextColor = CSS_Color.MainBackgroundColor,
+                TextSize = CSS_FontSize.TextFontSize,
+            };
+            roomView.AddRightView(deleteBtn);
+            deleteBtn.MouseUpEventHandler = (sender, e) =>
+            {
+                //鍒犻櫎浜嬩欢
+            };
+
+            EventHandler<MouseEventArgs> eHandler = (sender, e) =>
+            {
+                Action<string> refreshFunctionCount = (newCount) => {
+                    btnFunctionCount.Text = newCount + "/" + unallocatedList.Count.ToString();
+                };
+                //var mmp = new MemberFunctionPermissionPage(memberInfo, room, refreshFunctionCount);
+                //MainPage.BasePageView.AddChidren(mmp);
+                //mmp.LoadPage(StringId.PermissionToUse);
+                //MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
+            };
+            roomView.MouseUpEventHandler = eHandler;
+            btnRoomName.MouseUpEventHandler = eHandler;
+            btnRight.MouseUpEventHandler = eHandler;
+            btnFunctionCount.MouseUpEventHandler = eHandler;
+
+           
         }
     }
 }

--
Gitblit v1.8.0