New file |
| | |
| | | using System;
|
| | | using System.Collections.Generic;
|
| | | using System.Text;
|
| | | using ZigBee.Device;
|
| | |
|
| | | namespace Shared.Phone.UserCenter.SharedContent
|
| | | {
|
| | | /// <summary>
|
| | | /// 查看已配置共享内容的主界面
|
| | | /// </summary>
|
| | | public class LookSharedContentForm : EditorCommonForm
|
| | | {
|
| | | #region ■ 变量声明___________________________
|
| | |
|
| | | /// <summary>
|
| | | /// 查看的房间对象
|
| | | /// </summary>
|
| | | private Common.Room lookRoom = null;
|
| | | /// <summary>
|
| | | /// 成员的分享数据
|
| | | /// </summary>
|
| | | private MemberShardInfoData memberShardInfo = null;
|
| | | /// <summary>
|
| | | /// 设备桌布控件
|
| | | /// </summary>
|
| | | private FrameLayout frameDeviceTable = null;
|
| | | /// <summary>
|
| | | /// 设备桌布控件
|
| | | /// </summary>
|
| | | private FrameLayout frameSceneTable = null;
|
| | | /// <summary>
|
| | | /// 删除按钮
|
| | | /// </summary>
|
| | | private BottomClickButton btnDelete = null;
|
| | | /// <summary>
|
| | | /// 选择的场景
|
| | | /// </summary>
|
| | | private Dictionary<int, Common.SceneUI> dicSelectScene = new Dictionary<int, Common.SceneUI>();
|
| | | /// <summary>
|
| | | /// 选择的设备
|
| | | /// </summary>
|
| | | private Dictionary<string, CommonDevice> dicSelectDevice = new Dictionary<string, CommonDevice>();
|
| | | /// <summary>
|
| | | /// 当前选择的分支 0:场景 1:功能
|
| | | /// </summary>
|
| | | private int nowSwitchIndex = 0;
|
| | | /// <summary>
|
| | | /// 当前选择的设备索引
|
| | | /// </summary>
|
| | | private string nowDeviceIndex = string.Empty;
|
| | |
|
| | | #endregion
|
| | |
|
| | | #region ■ 初始化_____________________________
|
| | |
|
| | | /// <summary>
|
| | | /// 画面显示(底层会固定调用此方法,借以完成画面创建)
|
| | | /// </summary>
|
| | | /// <param name="i_room">查看的房间对象</param>
|
| | | /// <param name="i_memberShardInfo">成员的分享数据</param>
|
| | | public void ShowForm(Common.Room i_room, MemberShardInfoData i_memberShardInfo)
|
| | | {
|
| | | this.lookRoom = i_room;
|
| | | this.memberShardInfo = i_memberShardInfo;
|
| | |
|
| | | //设置头部信息
|
| | | base.SetTitleText(i_room.Name);
|
| | |
|
| | | //初始化中部信息
|
| | | this.InitMiddleFrame();
|
| | | }
|
| | |
|
| | | /// <summary>
|
| | | /// 初始化中部信息
|
| | | /// </summary>
|
| | | private void InitMiddleFrame()
|
| | | {
|
| | | //清空bodyFrame
|
| | | this.ClearBodyFrame();
|
| | | this.dicSelectDevice = new Dictionary<string, CommonDevice>();
|
| | | this.dicSelectScene = new Dictionary<int, Common.SceneUI>();
|
| | |
|
| | | //初始化桌布控件
|
| | | this.frameSceneTable = new FrameLayout();
|
| | | frameSceneTable.Y = Application.GetRealHeight(132);
|
| | | frameSceneTable.Height = bodyFrameLayout.Height - Application.GetRealHeight(132);
|
| | | bodyFrameLayout.AddChidren(frameSceneTable);
|
| | |
|
| | | this.frameDeviceTable = new FrameLayout();
|
| | | frameDeviceTable.Y = frameSceneTable.Y;
|
| | | frameDeviceTable.Height = frameSceneTable.Height;
|
| | | bodyFrameLayout.AddChidren(frameDeviceTable);
|
| | | frameDeviceTable.Visible = false;
|
| | |
|
| | | //初始化分支控件
|
| | | this.InitSwitchControl();
|
| | |
|
| | | //删除按钮
|
| | | this.btnDelete = new BottomClickButton();
|
| | | btnDelete.BackgroundColor = 0xfff75858;
|
| | | btnDelete.TextID = R.MyInternationalizationString.uDelete;
|
| | | bodyFrameLayout.AddChidren(btnDelete);
|
| | | btnDelete.Visible = false;
|
| | | btnDelete.ButtonClickEvent += (sender, e) =>
|
| | | {
|
| | | //删除分享
|
| | | this.DeleteShardData();
|
| | | };
|
| | |
|
| | | //初始化场景列表
|
| | | this.InitSceneList();
|
| | | //初始功能列表
|
| | | this.InitFunctionList();
|
| | | }
|
| | |
|
| | | /// <summary>
|
| | | /// 初始化分支控件
|
| | | /// </summary>
|
| | | private void InitSwitchControl()
|
| | | {
|
| | | var tabControl = new SceneFunctionSwitchControl();
|
| | | tabControl.Y = Application.GetRealHeight(40);
|
| | | bodyFrameLayout.AddChidren(tabControl);
|
| | | //设置初始化值
|
| | | tabControl.SetDefultIndex(nowSwitchIndex);
|
| | | tabControl.SelectTabEvent += (tabIndex) =>
|
| | | {
|
| | | this.nowSwitchIndex = tabIndex;
|
| | | if (tabIndex == 0)
|
| | | {
|
| | | //显示场景列表
|
| | | this.frameSceneTable.Visible = true;
|
| | | this.frameDeviceTable.Visible = false;
|
| | | }
|
| | | else
|
| | | {
|
| | | //显示功能列表
|
| | | this.frameSceneTable.Visible = false;
|
| | | this.frameDeviceTable.Visible = true;
|
| | | }
|
| | | };
|
| | | //开始初始化场景功能切换控件
|
| | | var listTitle = new List<string>();
|
| | | listTitle.Add(Language.StringByID(R.MyInternationalizationString.uScence));
|
| | | listTitle.Add(Language.StringByID(R.MyInternationalizationString.uFunction));
|
| | | tabControl.InitControl(listTitle);
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | #region ■ 场景显示___________________________
|
| | |
|
| | | /// <summary>
|
| | | /// 初始化场景列表
|
| | | /// </summary>
|
| | | private void InitSceneList()
|
| | | {
|
| | | //清空桌布
|
| | | this.frameSceneTable.RemoveAll();
|
| | |
|
| | | var listScene = new List<Common.SceneUI>();
|
| | | for (int i = 0; i < lookRoom.ListSceneId.Count; i++)
|
| | | {
|
| | | var byteData = HdlShardLogic.Current.GetShardFileContent($"Scene_{lookRoom.ListSceneId[i]}.json");
|
| | | if (byteData == null)
|
| | | {
|
| | | continue;
|
| | | }
|
| | | var sceneUi = Newtonsoft.Json.JsonConvert.DeserializeObject<Common.SceneUI>(System.Text.Encoding.UTF8.GetString(byteData));
|
| | | listScene.Add(sceneUi);
|
| | | }
|
| | | if (listScene.Count == 0)
|
| | | {
|
| | | //无可取消共享的场景
|
| | | this.ShowNotDataImage(frameSceneTable, Language.StringByID(R.MyInternationalizationString.uNotCanCancelShardSceneMsg), "Item/NotShardPic.png", 383, 279);
|
| | | return;
|
| | | }
|
| | |
|
| | | HdlThreadLogic.Current.RunMainInThread(() =>
|
| | | {
|
| | | var listView = new VerticalFrameControl(3);
|
| | | listView.Y = Application.GetRealHeight(53);
|
| | | listView.Height = bodyFrameLayout.Height - Application.GetRealHeight(187);
|
| | | frameSceneTable.AddChidren(listView);
|
| | |
|
| | | foreach (var data in listScene)
|
| | | {
|
| | | //场景控件
|
| | | var frameContr = new ScenePictrueControl();
|
| | | listView.AddChidrenFrame(frameContr);
|
| | | frameContr.InitControl(data);
|
| | |
|
| | | var btnSelect = new IconViewControl(58);
|
| | | btnSelect.UnSelectedImagePath = "Item/ItemUnSelected.png";
|
| | | btnSelect.SelectedImagePath = "Item/ItemSelected.png";
|
| | | btnSelect.X = Application.GetRealWidth(887);
|
| | | btnSelect.Y = Application.GetRealHeight(35);
|
| | | frameContr.AddChidren(btnSelect, ChidrenBindMode.BindEventOnly);
|
| | | if (dicSelectScene.ContainsKey(data.Id) == true)
|
| | | {
|
| | | btnSelect.IsSelected = true;
|
| | | }
|
| | | frameContr.ButtonClickEvent += (sender, e) =>
|
| | | {
|
| | | //选择
|
| | | btnSelect.IsSelected = !btnSelect.IsSelected;
|
| | | if (btnSelect.IsSelected == true)
|
| | | {
|
| | | dicSelectScene[data.Id] = data;
|
| | | if (this.btnDelete.Visible == false)
|
| | | {
|
| | | this.btnDelete.Visible = true;
|
| | | }
|
| | | }
|
| | | else
|
| | | {
|
| | | dicSelectScene.Remove(data.Id);
|
| | | if (dicSelectScene.Count == 0 && dicSelectDevice.Count == 0)
|
| | | {
|
| | | this.btnDelete.Visible = false;
|
| | | }
|
| | | }
|
| | | };
|
| | | }
|
| | | //调整一下高度
|
| | | listView.AdjustRealHeightByBottomButton(Application.GetRealHeight(185));
|
| | | });
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | #region ■ 功能显示___________________________
|
| | |
|
| | | /// <summary>
|
| | | /// 初始化功能列表
|
| | | /// </summary>
|
| | | private void InitFunctionList()
|
| | | {
|
| | | //清空桌布
|
| | | this.frameDeviceTable.RemoveAll();
|
| | |
|
| | | HdlThreadLogic.Current.RunMainInThread(() =>
|
| | | {
|
| | | //获取分组后的设备列表
|
| | | var dicGroupDevice = this.GetAllGroupDevice();
|
| | | if (dicGroupDevice.Count == 0)
|
| | | {
|
| | | //无可取消共享的设备
|
| | | this.ShowNotDataImage(frameDeviceTable, Language.StringByID(R.MyInternationalizationString.uNotCanCancelDeviceMsg), "Item/NotShardPic.png", 383, 279);
|
| | | }
|
| | | else
|
| | | {
|
| | | var frameBack = new FrameLayout();
|
| | | frameBack.X = ControlCommonResourse.XXLeft;
|
| | | frameBack.Y = Application.GetRealHeight(178);
|
| | | frameBack.BackgroundColor = UserCenterColor.Current.White;
|
| | | frameBack.Width = bodyFrameLayout.Width;
|
| | | frameBack.Height = Application.GetRealHeight(1650);
|
| | | frameBack.Radius = (uint)Application.GetRealHeight(58);
|
| | | frameDeviceTable.AddChidren(frameBack);
|
| | |
|
| | | var listView = new VerticalListControl(23);
|
| | | listView.Y = Application.GetRealHeight(23);
|
| | | listView.Height = Application.GetRealHeight(1437 - 23);
|
| | | frameBack.AddChidren(listView);
|
| | | //初始化设备类型行
|
| | | this.InitDeviceObjectRow(dicGroupDevice, listView);
|
| | | }
|
| | | });
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | #region ■ 初始化设备类型行___________________
|
| | |
|
| | | /// <summary>
|
| | | /// 初始化设备类型行
|
| | | /// </summary>
|
| | | /// <param name="dicData"></param>
|
| | | /// <param name="listView"></param>
|
| | | private void InitDeviceObjectRow(Dictionary<int, List<CommonDevice>> dicData, VerticalListControl listView)
|
| | | {
|
| | | var scrolContr = new RoomDeviceGroupMenuControl(dicData);
|
| | | this.frameDeviceTable.AddChidren(scrolContr);
|
| | | //设置初始值
|
| | | scrolContr.SetDefultIndex(nowDeviceIndex);
|
| | | scrolContr.SelectDeviceEvent += (listdevice) =>
|
| | | {
|
| | | this.nowDeviceIndex = scrolContr.nowSelectKeys;
|
| | | //添加设备行
|
| | | this.AddDeviceRow(listdevice, listView);
|
| | | };
|
| | | scrolContr.InitControl();
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | #region ■ 添加设备行_________________________
|
| | |
|
| | | /// <summary>
|
| | | /// 添加设备行
|
| | | /// </summary>
|
| | | /// <param name="listDevice"></param>
|
| | | /// <param name="listView"></param>
|
| | | private void AddDeviceRow(List<CommonDevice> listDevice, VerticalListControl listView)
|
| | | {
|
| | | listView.RemoveAll();
|
| | | //还原高度
|
| | | listView.RecoverHeight();
|
| | |
|
| | | foreach (var device in listDevice)
|
| | | {
|
| | | var frameRow = new FrameRowControl(listView.rowSpace / 2);
|
| | | frameRow.LeftOffset = Application.GetRealWidth(46) - ControlCommonResourse.XXLeft;
|
| | | frameRow.RightOffset = -ControlCommonResourse.XXLeft;
|
| | | listView.AddChidren(frameRow);
|
| | | //图标
|
| | | var btnIcon = frameRow.AddLeftIcon(81);
|
| | | Common.LocalDevice.Current.SetDeviceIconToControl(btnIcon, device);
|
| | | //名称
|
| | | var btnView = frameRow.AddLeftCaption(string.Empty, 600);
|
| | | btnView.Text = Common.LocalDevice.Current.GetDeviceEpointName(device);
|
| | | btnView.TextSize = 15;
|
| | | //底线
|
| | | frameRow.AddBottomLine();
|
| | | //选择
|
| | | var btnSelect = frameRow.AddMostRightEmptyIcon(69, 69);
|
| | | btnSelect.UnSelectedImagePath = "Item/ItemUnSelected.png";
|
| | | btnSelect.SelectedImagePath = "Item/ItemSelected.png";
|
| | |
|
| | | string mainKeys = Common.LocalDevice.Current.GetDeviceMainKeys(device);
|
| | | if (dicSelectDevice.ContainsKey(mainKeys) == true)
|
| | | {
|
| | | btnSelect.IsSelected = true;
|
| | | }
|
| | | frameRow.ButtonClickEvent += (sender, e) =>
|
| | | {
|
| | | //选择
|
| | | btnSelect.IsSelected = !btnSelect.IsSelected;
|
| | | if (btnSelect.IsSelected == true)
|
| | | {
|
| | | dicSelectDevice[mainKeys] = device;
|
| | | if (this.btnDelete.Visible == false)
|
| | | {
|
| | | this.btnDelete.Visible = true;
|
| | | }
|
| | | }
|
| | | else
|
| | | {
|
| | | dicSelectDevice.Remove(mainKeys);
|
| | | if (dicSelectScene.Count == 0 && dicSelectDevice.Count == 0)
|
| | | {
|
| | | this.btnDelete.Visible = false;
|
| | | }
|
| | | }
|
| | | };
|
| | | }
|
| | | //列表自己有个23的Y轴坐标
|
| | | listView.AdjustRealHeightByBottomButton(Application.GetRealHeight(23), Application.GetRealHeight(300 - 23));
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | #region ■ 整合设备___________________________
|
| | |
|
| | | /// <summary>
|
| | | /// 获取分组后的设备
|
| | | /// </summary>
|
| | | /// <returns></returns>
|
| | | private Dictionary<int, List<CommonDevice>> GetAllGroupDevice()
|
| | | {
|
| | | //全部的设备
|
| | | var listDevice = this.GetShardListDevice();
|
| | | var dic = new Dictionary<int, List<CommonDevice>>();
|
| | | foreach (var device in listDevice)
|
| | | {
|
| | | var typeInfo = Common.LocalDevice.Current.GetDeviceBelongEnumInfo(device);
|
| | | if (dic.ContainsKey(typeInfo.BeloneTextId) == false)
|
| | | {
|
| | | dic[typeInfo.BeloneTextId] = new List<CommonDevice>();
|
| | | }
|
| | | dic[typeInfo.BeloneTextId].Add(device);
|
| | | }
|
| | | return dic;
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | #region ■ 删除分享___________________________
|
| | |
|
| | | /// <summary>
|
| | | /// 删除分享
|
| | | /// </summary>
|
| | | private void DeleteShardData()
|
| | | {
|
| | | //选择的设备
|
| | | var listDevice = new List<CommonDevice>();
|
| | | foreach (var device in dicSelectDevice.Values)
|
| | | {
|
| | | listDevice.Add(device);
|
| | | }
|
| | | //选择的场景
|
| | | var listScene = new List<Common.SceneUI>();
|
| | | foreach (var scene in dicSelectScene.Values)
|
| | | {
|
| | | listScene.Add(scene);
|
| | | }
|
| | |
|
| | | //确认删除选择的共享场景和功能?
|
| | | this.ShowMassage(ShowMsgType.Confirm, Language.StringByID(R.MyInternationalizationString.uDeleteShardContentMsg), () =>
|
| | | {
|
| | | HdlThreadLogic.Current.RunThread(async () =>
|
| | | {
|
| | | //上传文件
|
| | | var result = await HdlShardLogic.Current.DoDeleteSharedContent(memberShardInfo, this.lookRoom, listDevice, listScene);
|
| | | if (result == true)
|
| | | {
|
| | | HdlThreadLogic.Current.RunMain(() =>
|
| | | {
|
| | | //重新初始化界面
|
| | | this.InitMiddleFrame();
|
| | | });
|
| | | }
|
| | | });
|
| | | });
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | #region ■ 一般方法___________________________
|
| | |
|
| | | /// <summary>
|
| | | /// 获取分享的设备
|
| | | /// </summary>
|
| | | /// <returns></returns>
|
| | | private List<CommonDevice> GetShardListDevice()
|
| | | {
|
| | | //获取这个房间里面的分享设备
|
| | | var listDevice = new List<CommonDevice>();
|
| | | foreach (var deviceKeys in this.lookRoom.ListDevice)
|
| | | {
|
| | | string deviceFile = HdlShardLogic.Current.GetShardDeviceFileName(deviceKeys);
|
| | | if (memberShardInfo.dicAllShardKeys.ContainsKey(deviceFile) == true)
|
| | | {
|
| | | var strArry = deviceFile.Split('_');
|
| | | if (strArry.Length < 3)
|
| | | {
|
| | | continue;
|
| | | }
|
| | | //从分享文件中序列化回来
|
| | | var deviceData = HdlShardLogic.Current.GetShardFileContent(deviceFile);
|
| | | var device = ZigBee.Device.CommonDevice.CommonDeviceByByteString(strArry[1], System.Text.Encoding.UTF8.GetString(deviceData));
|
| | | if (device != null)
|
| | | {
|
| | | listDevice.Add(device);
|
| | | }
|
| | | }
|
| | | }
|
| | | return listDevice;
|
| | | }
|
| | |
|
| | | #endregion
|
| | | }
|
| | | }
|