黄学彪
2019-11-25 5727cf0b9b54da0a191dd1e23cb5abf21320fbff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
using System;
using System.Collections.Generic;
using System.Globalization;
using Shared.Common;
using Shared.Phone.UserCenter;
using ZigBee.Device;
 
namespace Shared.Phone.Device.CommonForm
{
    public class DeviceDetailInfo : FrameLayout
    {
        #region ◆ 变量____________________________
        /// <summary>
        /// bodyFrameLayout
        /// </summary>
        private FrameLayout bodyFrameLayout;
        /// <summary>
        /// 所属区域
        /// </summary>
        private string roomName;
        /// <summary>
        /// action
        /// </summary>
        public Action action;
        /// <summary>
        /// curRoom
        /// </summary>
        private Common.Room curRoom;
        /// <summary>
        /// curRoom
        /// </summary>
        private Common.Room befRoom;
        /// <summary>
        /// sharedRow
        /// </summary>
        private DeviceInfoRow sharedRow;
        /// <summary>
        /// functionTypeRow
        /// </summary>
        private DeviceInfoRow functionTypeRow;
 
        #endregion
 
        #region ◆ 移除____________________________
        /// <summary>
        /// RemoveFromParent
        /// </summary>
        public override void RemoveFromParent()
        {
            action();
            base.RemoveFromParent();
        }
        #endregion
 
        #region ◆ 构造方法_________________________
        /// <summary>
        /// DeviceDetailInfo
        /// </summary>
        public DeviceDetailInfo()
        {
            BackgroundColor = ZigbeeColor.Current.GXCBackgroundColor;
        }
 
        #endregion
 
        #region ◆ 显示界面_________________________
        /// <summary>
        /// Show
        /// </summary>
        /// <param name="device"></param>
        /// <param name="room"></param>
        public void Show(DeviceUI device, Common.Room room)
        {
            Init(device);
 
            AddTop();
 
            AddBodyView(device);
 
        }
 
        #endregion
 
        #region Add____________________________________
 
        /// <summary>
        /// AddTop
        /// </summary>
        public void AddTop()
        {
            var top = new TopFrameLayout();
            AddChidren(top);
            top.InitTopview();
            top.SetTopTitle(R.MyInternationalizationString.FunctionSetting);
            top.backButton.MouseUpEventHandler += (sender, e) =>
            {
                RemoveFromParent();
            };
 
        }
        /// <summary>
        /// AddBodyView
        /// </summary>
        public void AddBodyView(DeviceUI device)
        {
            bodyFrameLayout = new FrameLayout()
            {
                Y = Application.GetRealHeight(184),
                Height = Application.GetRealHeight(1737),
                BackgroundColor = ZigbeeColor.Current.GXCGrayBackgroundColor,
            };
            AddChidren(bodyFrameLayout);
 
            var deviceBG = new Button()
            {
                Y = Application.GetRealHeight(118),
                Width = Application.GetMinRealAverage(207),
                Height = Application.GetMinRealAverage(207),
                Gravity = Gravity.CenterHorizontal,
                BackgroundColor = ZigbeeColor.Current.GXCBackgroundColor,
                Radius = (uint)Application.GetMinRealAverage(207)
            };
            bodyFrameLayout.AddChidren(deviceBG);
 
            var deviceBG2 = new Button()
            {
                Y = Application.GetRealHeight(130),
                Width = Application.GetMinRealAverage(184),
                Height = Application.GetMinRealAverage(184),
                Gravity = Gravity.CenterHorizontal,
                BackgroundColor = ZigbeeColor.Current.GXCSelectedBackgroundColor,
                Radius = (uint)Application.GetMinRealAverage(184)
            };
            bodyFrameLayout.AddChidren(deviceBG2);
 
            var deviceIMG = new Button()
            {
                Y = Application.GetRealHeight(161),
                Width = Application.GetMinRealAverage(124),
                Height = Application.GetMinRealAverage(124),
                UnSelectedImagePath = device.IconPath,
                Gravity = Gravity.CenterHorizontal
            };
            bodyFrameLayout.AddChidren(deviceIMG);
 
            var deviceTypeName = new Button()
            {
                Y = Application.GetRealHeight(360),
                Width = Application.GetRealWidth(900),
                Height = Application.GetRealHeight(80),
                TextColor = ZigbeeColor.Current.GXCTextBlackColor,
                Text = DeviceUI.GetDeviceTypeName(device.CommonDevice.Type),
                Gravity = Gravity.CenterHorizontal
            };
            bodyFrameLayout.AddChidren(deviceTypeName);
 
 
            var infoFL = new FrameLayout
            {
                Y = Application.GetRealHeight(540),
                Height = Application.GetRealHeight(1195),
                BackgroundColor = ZigbeeColor.Current.GXCBackgroundColor
            };
            bodyFrameLayout.AddChidren(infoFL);
 
            var tipBtn = new Button
            {
                X = Application.GetRealWidth(CommonFormResouce.X_Left),
                Y = Application.GetRealHeight(81),
                Width = Application.GetRealWidth(500),
                Height = Application.GetRealHeight(60),
                TextColor = ZigbeeColor.Current.GXCTextDeepBlackColor,
                TextAlignment = TextAlignment.CenterLeft,
                TextSize = 15,
                TextID = R.MyInternationalizationString.EditInfo
            };
            infoFL.AddChidren(tipBtn);
 
            var nameRow = new DeviceInfoEditRow(170);
            nameRow.Init();
            nameRow.SetTipTitle($"{Language.StringByID(R.MyInternationalizationString.FunctionName)} : ");
            nameRow.SetTitle(string.IsNullOrEmpty(device.CommonDevice.DeviceEpointName) ? Language.StringByID(R.MyInternationalizationString.UNKnown) : device.CommonDevice.DeviceEpointName);
            infoFL.AddChidren(nameRow);
 
            var zoneRow = new DeviceInfoRow(308);
            zoneRow.Init();
            zoneRow.SetTipTitle($"{Language.StringByID(R.MyInternationalizationString.BelongZone)} : ");
            zoneRow.SetTitle(roomName);
            infoFL.AddChidren(zoneRow);
 
            var modelRow = new DeviceInfoRow(446);
            modelRow.Init();
            modelRow.SetTipTitle($"{Language.StringByID(R.MyInternationalizationString.BelongModel)} : ");
            modelRow.SetTitle(string.IsNullOrEmpty(device.CommonDevice.DeviceName) ? Language.StringByID(R.MyInternationalizationString.UNKnown) : device.CommonDevice.DeviceName);
            modelRow.HideNext(true);
            infoFL.AddChidren(modelRow);
 
            if (device.CommonDevice.Type==ZigBee.Device.DeviceType.OnOffOutput)
            {
                functionTypeRow = new DeviceInfoRow(585);
                functionTypeRow.Init();
                functionTypeRow.SetTipTitle($"{Language.StringByID(R.MyInternationalizationString.FunctionType)} : ");
                //functionTypeRow.SetTitle(device.CommonDevice.DfunctionType);
                infoFL.AddChidren(functionTypeRow);
                var dfunctionType = device.CommonDevice.DfunctionType;
 
                //功能类型的翻译名字
                string strT = string.Empty;
                if (dfunctionType == DeviceFunctionType.A灯光)
                {
                    strT = Language.StringByID(R.MyInternationalizationString.uLight);
                }
                else if (dfunctionType == DeviceFunctionType.A开关)
                {
                    strT = Language.StringByID(R.MyInternationalizationString.uSwitch);
                }
                else if (dfunctionType == DeviceFunctionType.A插座)
                {
                    strT = Language.StringByID(R.MyInternationalizationString.uSocket1);
                }
                functionTypeRow.SetTitle(strT);
 
                functionTypeRow.ClickBtn.MouseUpEventHandler += (sender, e) =>
                {
                    var DfunctionType = device.CommonDevice.DfunctionType;
                    
                    //功能类型的翻译名字
                    int nowSelectNo = 1;
                    string strType = string.Empty;
                    if (DfunctionType == DeviceFunctionType.A灯光)
                    {
                        strType = Language.StringByID(R.MyInternationalizationString.uLight);
                        nowSelectNo = 1;
                    }
                    else if (DfunctionType == DeviceFunctionType.A开关)
                    {
                        strType = Language.StringByID(R.MyInternationalizationString.uSwitch);
                        nowSelectNo = 0;
                    }
                    else if (DfunctionType == DeviceFunctionType.A插座)
                    {
                        strType = Language.StringByID(R.MyInternationalizationString.uSocket1);
                        nowSelectNo = 2;
                    }
                    //显示列表
                    var listText = new List<string>();
                    listText.Add(Language.StringByID(R.MyInternationalizationString.uSwitch));//开关
                    listText.Add(Language.StringByID(R.MyInternationalizationString.uLight));//灯光
                    listText.Add(Language.StringByID(R.MyInternationalizationString.uSocket1));//插座
                                                                                               //标题:选择功能类型
                    var title = Language.StringByID(R.MyInternationalizationString.uSelectFunctionType);
 
                    var form = new BottomItemSelectForm();
                    form.AddForm(title, listText, nowSelectNo);
                    form.FinishSelectEvent += (selectNo) =>
                    {
                        functionTypeRow.NameText.Text = listText[selectNo];
                        nowSelectNo = selectNo;
                        //记录起当前选择的功能类型
                        if (selectNo == 0)
                        {
                            device.CommonDevice.DfunctionType  = DeviceFunctionType.A开关;
                        }
                        else if (selectNo == 1)
                        {
                            device.CommonDevice.DfunctionType = DeviceFunctionType.A灯光;
                        }
                        else
                        {
                            device.CommonDevice.DfunctionType = DeviceFunctionType.A插座;
                        }
                    };
                };
 
                sharedRow = new DeviceInfoRow(723);
                sharedRow.Init();
                sharedRow.SetTipTitle($"{Language.StringByID(R.MyInternationalizationString.Share)} : ");
                sharedRow.SetTitle("2人");
                infoFL.AddChidren(sharedRow);
            }
            else
            {
                sharedRow = new DeviceInfoRow(585);
                sharedRow.Init();
                sharedRow.SetTipTitle($"{Language.StringByID(R.MyInternationalizationString.Share)} : ");
                sharedRow.SetTitle("2人");
                infoFL.AddChidren(sharedRow);
            }
 
            var confirmBtn = new CommonForm.CompleteButton(962, 907, 127);
            confirmBtn.SetTitle(R.MyInternationalizationString.Confrim);
            infoFL.AddChidren(confirmBtn);
 
            #region event
            EventHandler<MouseEventArgs> selectZoneEvent = (sender, e) =>
            {
                List<string> floorIds = new List<string> { };
                List<string> floorNames = new List<string> { };
                List<List<string>> roomNames = new List<List<string>> { };
                List<List<Common.Room>> rooms = new List<List<Common.Room>> { };
                List<Common.Room> rs = new List<Common.Room> { };
                List<string> rNames = new List<string> { };
                if (Config.Instance.Home.FloorDics.Count>0)
                {
                    foreach (var floor in Config.Instance.Home.FloorDics)
                    {
                        floorIds.Add(floor.Key);
                        floorNames.Add(floor.Value);
                        if (Common.Room.CurrentRoom.GetRoomsByFloorId(floor.Key).Count > 0)
                        {
                            roomNames.Add(Common.Room.CurrentRoom.GetRoomNamesByFloorId(floor.Key));
                            rooms.Add(Common.Room.CurrentRoom.GetRoomsByFloorId(floor.Key));
                        }
                    }
                    PickerView.ShowSecondary(floorNames, roomNames, (index1, index2) =>
                    {
                        curRoom = rooms[index1][index2];
                        zoneRow.SetTitle($"{Config.Instance.Home.GetFloorNameById(floorIds[index1])} , {rooms[index1][index2].Name}");
                    }, 0, 0, Language.StringByID(R.MyInternationalizationString.BelongFloor),
                   Language.StringByID(R.MyInternationalizationString.Confrim),
                   Language.StringByID(R.MyInternationalizationString.Cancel));
                }
                else
                {
                    for(int i=0;i<Common.Room.Lists.Count;i++)
                    {
                        var r = Common.Room.Lists[i];
                        if (r.IsLove)
                        {
                            continue;
                        }
                        rs.Add(r);
                        rNames.Add(r.Name);
                    }
                    PickerView.Show(rNames, (index1) =>
                    {
                        curRoom = rs[index1];
                        zoneRow.SetTitle(rs[index1].Name);
                    }, 0,Language.StringByID(R.MyInternationalizationString.BelongFloor),
                   Language.StringByID(R.MyInternationalizationString.Confrim),
                   Language.StringByID(R.MyInternationalizationString.Cancel));
                }
            };
            zoneRow.ClickBtn.MouseUpEventHandler += selectZoneEvent;
 
            EventHandler<MouseEventArgs> selectDeviceIconEvent = (sender, e) =>
            {
                var localPic = new DeviceIconSelectedIMGByLocal();
                UserView.HomePage.Instance.AddChidren(localPic);
                UserView.HomePage.Instance.PageIndex += 1;
                localPic.Show();
                localPic.action = (unSelectedImagePath, selectedImagePath) =>
                {
                    deviceIMG.UnSelectedImagePath = unSelectedImagePath;
                    deviceIMG.SelectedImagePath = selectedImagePath;
                    device.CommonDevice.IsCustomizeImage = true;
                };
            };
            deviceIMG.MouseUpEventHandler += selectDeviceIconEvent;
 
            confirmBtn.MouseUpEventHandler +=  (sender, e) =>
            {
                try
                {
                    CommonPage.Loading.Start();
                    if (device.CommonDevice == null)
                    {
                        CommonPage.Instance.ShowErrorInfoAlert(R.MyInternationalizationString.FailedPleaseTryAgain);
                        return;
                    }
                    if (device.CommonDevice.Type == ZigBee.Device.DeviceType.OnOffOutput)
                    {
                        if (device.IsCustomizeImage == false)
                        {
                            if (device.CommonDevice.DfunctionType == DeviceFunctionType.A开关)
                            {
                                device.CommonDevice.IconPath = "Device/Switch.png";
                            }
                            else if (device.CommonDevice.DfunctionType == DeviceFunctionType.A插座)
                            {
                                device.CommonDevice.IconPath = "Device/Socket1.png";
                            }
                            else if (device.CommonDevice.DfunctionType == DeviceFunctionType.A灯光)
                            {
                                device.CommonDevice.IconPath = "Device/Light.png";
                            }
                        }
                        else
                        {
                            //改图片
                            device.CommonDevice.IconPath = deviceIMG.UnSelectedImagePath;
                        }
                    }
                    else
                    {
                        //改图片
                        device.CommonDevice.IconPath = deviceIMG.UnSelectedImagePath;
                    }
                    bool result;
                    new System.Threading.Thread(async () =>
                    {
                        result = await LocalDevice.Current.ReName(device.CommonDevice, nameRow.NameText.Text.Trim());
                        Application.RunOnMainThread(() =>
                        {
                            CommonPage.Loading.Hide();
                            if (result)
                            {
                                var alertSuccess = new Alert(Language.StringByID(R.MyInternationalizationString.TIP), Language.StringByID(R.MyInternationalizationString.Success), Language.StringByID(R.MyInternationalizationString.Confrim));
                                alertSuccess.Show();
                                alertSuccess.ResultEventHandler += (senderSuccess, eSuccess) =>
                                {
                                    //改房间
                                    Shared.Common.Room.CurrentRoom.ChangedRoom(device.CommonDevice, curRoom.Id);
                                    device.CommonDevice.ReSave();
                                    RemoveFromParent();
                                };
                            }
                            else
                            {
                                CommonPage.Instance.ShowErrorInfoAlert(R.MyInternationalizationString.FailedPleaseTryAgain);
                            }
                        });
                    })
                    { IsBackground = true }.Start();
                }
                catch
                {
                    CommonPage.Loading.Hide();
                }
            };
 
            #endregion
        }
 
        /// <summary>
        /// Init
        /// </summary>
        /// <param name="device"></param>
        public void Init(DeviceUI device)
        {
            roomName = device.GetZone();
            befRoom = Common.Room.CurrentRoom.GetRoomByDevice(device.CommonDevice);
            curRoom = Common.Room.CurrentRoom.GetRoomByDevice(device.CommonDevice);
        }
        #endregion
    }
}