| | |
| | | /// </summary>
|
| | | private Common.Room lookRoom = null;
|
| | | /// <summary>
|
| | | /// 成员的分享数据
|
| | | /// 成员ID
|
| | | /// </summary>
|
| | | private MemberShardInfoData memberShardInfo = null;
|
| | | private string ChildAccountId = string.Empty;
|
| | | /// <summary>
|
| | | /// 设备桌布控件
|
| | | /// </summary>
|
| | |
| | | /// </summary>
|
| | | /// <param name="i_room">查看的房间对象</param>
|
| | | /// <param name="i_memberShardInfo">成员的分享数据</param>
|
| | | public void ShowForm(Common.Room i_room, MemberShardInfoData i_memberShardInfo)
|
| | | public void ShowForm(Common.Room i_room, string i_ChildAccountId)
|
| | | {
|
| | | this.lookRoom = i_room;
|
| | | this.memberShardInfo = i_memberShardInfo;
|
| | | this.ChildAccountId = i_ChildAccountId;
|
| | |
|
| | | //设置头部信息
|
| | | base.SetTitleText(i_room.Name);
|
| | |
| | | this.frameSceneTable.RemoveAll();
|
| | |
|
| | | var listScene = new List<Common.SceneUI>();
|
| | | for (int i = 0; i < lookRoom.ListSceneId.Count; i++)
|
| | | foreach (var sceneId in lookRoom.ListSceneId)
|
| | | {
|
| | | var byteData = HdlShardLogic.Current.GetShardFileContent($"Scene_{lookRoom.ListSceneId[i]}.json");
|
| | | if (byteData == null)
|
| | | var scene = HdlShardLogic.Current.GetShardSceneFromMemory(sceneId);
|
| | | if (scene != null)
|
| | | {
|
| | | continue;
|
| | | listScene.Add(scene);
|
| | | }
|
| | | try
|
| | | {
|
| | | var sceneUi = Newtonsoft.Json.JsonConvert.DeserializeObject<Common.SceneUI>(System.Text.Encoding.UTF8.GetString(byteData));
|
| | | listScene.Add(sceneUi);
|
| | | }
|
| | | catch { }
|
| | | }
|
| | | if (listScene.Count == 0)
|
| | | {
|
| | |
| | | else
|
| | | {
|
| | | var frameBack = new FrameLayout();
|
| | | frameBack.X = ControlCommonResourse.XXLeft;
|
| | | frameBack.X = HdlControlResourse.XXLeft;
|
| | | frameBack.Y = Application.GetRealHeight(178);
|
| | | frameBack.BackgroundColor = UserCenterColor.Current.White;
|
| | | frameBack.Width = bodyFrameLayout.Width;
|
| | |
| | | foreach (var device in listDevice)
|
| | | {
|
| | | var frameRow = new FrameRowControl(listView.rowSpace / 2);
|
| | | frameRow.LeftOffset = Application.GetRealWidth(46) - ControlCommonResourse.XXLeft;
|
| | | frameRow.RightOffset = -ControlCommonResourse.XXLeft;
|
| | | frameRow.LeftOffset = Application.GetRealWidth(46) - HdlControlResourse.XXLeft;
|
| | | frameRow.RightOffset = -HdlControlResourse.XXLeft;
|
| | | listView.AddChidren(frameRow);
|
| | | //图标
|
| | | var btnIcon = frameRow.AddLeftIcon(81);
|
| | | Common.LocalDevice.Current.SetDeviceIconToControl(btnIcon, device);
|
| | | HdlDeviceCommonLogic.Current.SetDeviceIconToControl(btnIcon, device);
|
| | | //名称
|
| | | var btnView = frameRow.AddLeftCaption(string.Empty, 600);
|
| | | btnView.Text = Common.LocalDevice.Current.GetDeviceEpointName(device);
|
| | | btnView.Text = HdlDeviceCommonLogic.Current.GetDeviceEpointName(device);
|
| | | btnView.TextSize = 15;
|
| | | //底线
|
| | | frameRow.AddBottomLine();
|
| | |
| | | btnSelect.UnSelectedImagePath = "Item/ItemUnSelected.png";
|
| | | btnSelect.SelectedImagePath = "Item/ItemSelected.png";
|
| | |
|
| | | string mainKeys = Common.LocalDevice.Current.GetDeviceMainKeys(device);
|
| | | string mainKeys = HdlDeviceCommonLogic.Current.GetDeviceMainKeys(device);
|
| | | if (dicSelectDevice.ContainsKey(mainKeys) == true)
|
| | | {
|
| | | btnSelect.IsSelected = true;
|
| | |
| | | var dic = new Dictionary<string, List<CommonDevice>>();
|
| | | foreach (var device in listDevice)
|
| | | {
|
| | | var typeInfo = Common.LocalDevice.Current.GetDeviceBelongEnumInfo(device);
|
| | | var typeInfo = HdlDeviceCommonLogic.Current.GetDeviceBelongEnumInfo(device);
|
| | | if (dic.ContainsKey(typeInfo.BeloneText) == false)
|
| | | {
|
| | | dic[typeInfo.BeloneText] = new List<CommonDevice>();
|
| | |
| | | HdlThreadLogic.Current.RunThread(() =>
|
| | | {
|
| | | //上传文件
|
| | | var result = HdlShardLogic.Current.DoDeleteSharedContent(memberShardInfo, this.lookRoom, listDevice, listScene);
|
| | | var result = HdlShardLogic.Current.DeleteSharedContent(this.ChildAccountId, this.lookRoom, listDevice, listScene);
|
| | | if (result == true)
|
| | | {
|
| | | HdlThreadLogic.Current.RunMain(() =>
|
| | |
| | | {
|
| | | //获取这个房间里面的分享设备
|
| | | var listDevice = new List<CommonDevice>();
|
| | | foreach (var deviceKeys in this.lookRoom.ListDevice)
|
| | | foreach (var deviceKey in this.lookRoom.ListDevice)
|
| | | {
|
| | | string deviceFile = HdlShardLogic.Current.GetShardDeviceFileName(deviceKeys);
|
| | | if (memberShardInfo.dicAllShardKeys.ContainsKey(deviceFile) == true)
|
| | | var device = HdlShardLogic.Current.GetShardDeviceFromMemory(deviceKey);
|
| | | if (device != null)
|
| | | {
|
| | | //从分享文件中序列化回来
|
| | | var deviceData = HdlShardLogic.Current.GetShardFileContent(deviceFile);
|
| | | if (deviceData == null)
|
| | | {
|
| | | continue;
|
| | | }
|
| | | try
|
| | | {
|
| | | var jobject = Newtonsoft.Json.Linq.JObject.Parse(System.Text.Encoding.UTF8.GetString(deviceData));
|
| | | if (jobject.Property("DeviceID") == null)
|
| | | {
|
| | | continue;
|
| | | }
|
| | | var device = ZigBee.Device.CommonDevice.CommonDeviceByByteString(Convert.ToInt32(jobject["DeviceID"].ToString()), System.Text.Encoding.UTF8.GetString(deviceData));
|
| | | if (device != null)
|
| | | {
|
| | | listDevice.Add(device);
|
| | | }
|
| | | }
|
| | | catch { }
|
| | | listDevice.Add(device);
|
| | | }
|
| | | }
|
| | | return listDevice;
|