黄学彪
2020-12-16 0d9f64668fd7350d6a21fd157e32009a96d98134
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
using System;
using Newtonsoft.Json.Linq;
using Shared.Common;
using ZigBee.Device;
 
namespace Shared.Phone.UserCenter.DoorLock
{
    public class AddUnLockMethodTip : DoorLockCommonLayout
    {
        /// 构造函数
        /// </summary>
        /// <param name="doorLock"></param>
        public AddUnLockMethodTip(ZigBee.Device.DoorLock doorLock, MemberInfoRes accountObj, string entryType)
        {
            this.doorLock = doorLock;
            this.curAccountObj = accountObj;
            this.currentType = entryType;
            BackgroundColor = Shared.Common.ZigbeeColor.Current.GXCTopViewBackgroundColor;
        }
 
        #region 变量申明
        /// <summary>
        /// 当前门锁
        /// </summary>
        ZigBee.Device.DoorLock doorLock;
        /// <summary>
        /// 当前账户
        /// </summary>
        MemberInfoRes curAccountObj;
        /// <summary>
        /// 当前类型
        /// </summary>
        string currentType = string.Empty;
        /// <summary>
        /// 接收通知
        /// </summary>
        Action<string, string> action;
 
        #endregion
 
        /// <summary>
        /// UI显示 
        /// </summary>
        public void Show()
        {
            string currentTitle = "";
            if (currentType == "password")
            {
                currentTitle = Language.StringByID(R.MyInternationalizationString.AddPassword);
            }
            else if (currentType == "fingerprint")
            {
                currentTitle = Language.StringByID(R.MyInternationalizationString.AddFingerprint);
            }
            else if (currentType == "proximity")
            {
                currentTitle = Language.StringByID(R.MyInternationalizationString.AddIcCard);
            }
            this.TopFrameLayout(this, currentTitle);
 
            EventHandler<MouseEventArgs> eHandlerBack = (sender, e) =>
            {
                this.RemoveFromParent();
            };
            this.btnBack.MouseUpEventHandler += eHandlerBack;
            this.btnBackFrameLayout.MouseUpEventHandler += eHandlerBack;
            this.MidFrameLayout(this);
 
            MidFrameLayoutContent();
        }
 
        /// <summary>
        /// 重写移除方法
        /// </summary>
        public override void RemoveFromParent()
        {
            if (doorLock.Gateway != null || doorLock.Gateway.GwResDataAction != null)
            {
                doorLock.Gateway.GwResDataAction -= action;
            }
            base.RemoveFromParent();
        }
 
        /// <summary>
        /// 中部布局
        /// </summary>
        public void MidFrameLayoutContent()
        {
            var topMidFrameLayout = new FrameLayout
            {
                X = Application.GetRealWidth(104),
                Y = Application.GetRealHeight(112),
                Height = Application.GetRealHeight(873),
                Width = Application.GetRealWidth(876),
            };
            this.midFrameLayout.AddChidren(topMidFrameLayout);
 
            var btnPicTip1 = new Button
            {
                X = Application.GetRealWidth(446),
                Y = Application.GetRealHeight(330),
                Height = Application.GetRealHeight(76 / 2),
                Width = Application.GetRealWidth(407),
                TextColor = Shared.Common.ZigbeeColor.Current.XMGray2,
                TextSize = 10,
                TextAlignment = TextAlignment.CenterLeft,
            };
            topMidFrameLayout.AddChidren(btnPicTip1);
 
            var btnPicTip2 = new Button
            {
                X = Application.GetRealWidth(446),
                Y = btnPicTip1.Bottom,
                Height = Application.GetRealHeight(76 / 2),
                Width = Application.GetRealWidth(207),
                TextColor = Shared.Common.ZigbeeColor.Current.XMGray2,
                TextSize = 10,
                TextAlignment = TextAlignment.CenterLeft,
            };
            topMidFrameLayout.AddChidren(btnPicTip2);
 
            var btnPicTip3 = new Button
            {
                X = Application.GetRealWidth(294),
                Y = Application.GetRealHeight(1089),
                Height = Application.GetRealHeight(100 / 2),
                Width = Application.GetRealWidth(488),
                TextColor = Shared.Common.ZigbeeColor.Current.XMGray2,
                Gravity = Gravity.CenterHorizontal,
                TextSize = 14,
            };
            this.midFrameLayout.AddChidren(btnPicTip3);
 
            var btnPicTip4 = new Button
            {
                X = Application.GetRealWidth(397),
                Y = btnPicTip3.Y + Application.GetRealHeight(50),
                Width = Application.GetRealWidth(288),
                Height = Application.GetRealHeight(100 / 2),
                TextColor = Shared.Common.ZigbeeColor.Current.XMGray2,
                Gravity = Gravity.CenterHorizontal,
                TextSize = 14,
            };
            this.midFrameLayout.AddChidren(btnPicTip4);
 
            var btnPicTip5 = new Button
            {
                X = Application.GetRealWidth(202),
                Y = Application.GetRealHeight(1388),
                Height = Application.GetRealHeight(49),
                Width = Application.GetRealWidth(685),
                TextColor = Shared.Common.ZigbeeColor.Current.XMGray3,
                Gravity = Gravity.CenterHorizontal,
                TextSize = 12,
            };
            this.midFrameLayout.AddChidren(btnPicTip5);
 
            var nextBtn = new Button
            {
                X = Application.GetRealWidth(86),
                Y = Application.GetRealHeight(1472),
                Height = Application.GetRealHeight(127),
                Width = Application.GetRealWidth(907),
                Text = Language.StringByID(R.MyInternationalizationString.NextStepXm),
                TextColor = Shared.Common.ZigbeeColor.Current.XMWhite,
                Gravity = Gravity.CenterHorizontal,
                Radius = (uint)Application.GetRealHeight(127 / 2),
                TextSize = 16,
                IsBold = true,
                Enable = false,
                BackgroundColor = Shared.Common.ZigbeeColor.Current.XMUnSelect,
            };
            this.midFrameLayout.AddChidren(nextBtn);
 
            if (currentType == "password")
            {
                topMidFrameLayout.BackgroundImagePath = "DoorLock/AddPasswordTicPic.png";
                btnPicTip1.Width = Application.GetRealWidth(307);
                btnPicTip1.X = Application.GetRealWidth(500);
                btnPicTip1.Y = Application.GetRealHeight(350);
                btnPicTip2.X = Application.GetRealWidth(543);
                btnPicTip2.Y = btnPicTip1.Bottom + Application.GetRealHeight(10);
                btnPicTip2.Width = Application.GetRealWidth(207);
                btnPicTip1.Text = Language.StringByID(R.MyInternationalizationString.EntryPasswordTip1);
                btnPicTip2.Text = Language.StringByID(R.MyInternationalizationString.EntryPassword);
                btnPicTip3.Text = Language.StringByID(R.MyInternationalizationString.EntryPasswordTip2);
                btnPicTip4.Text = btnPicTip2.Text;
                btnPicTip5.Text = Language.StringByID(R.MyInternationalizationString.EntryTip);
            }
            else if (currentType == "fingerprint")
            {
                topMidFrameLayout.BackgroundImagePath = "DoorLock/AddFingerprintTipPic.png";
                btnPicTip1.Text = Language.StringByID(R.MyInternationalizationString.EntryFingerprintTip1);
                btnPicTip2.Text = Language.StringByID(R.MyInternationalizationString.EntryFingerprint);
                btnPicTip3.Text = Language.StringByID(R.MyInternationalizationString.EntryFingerprintTip2);
                btnPicTip4.Text = btnPicTip2.Text;
                btnPicTip1.X = Application.GetRealWidth(486);
                btnPicTip1.Y = Application.GetRealHeight(320);
                btnPicTip2.X = Application.GetRealWidth(543);
                btnPicTip2.Width = Application.GetRealWidth(207);
                btnPicTip1.X = Application.GetRealWidth(450);
                btnPicTip5.Text = Language.StringByID(R.MyInternationalizationString.EntryTip);
            }
            else if (currentType == "proximity")
            {
                topMidFrameLayout.BackgroundImagePath = "DoorLock/AddIcCardTipPic.png";
                btnPicTip3.Width = Application.GetRealWidth(495);
                btnPicTip1.X = Application.GetRealWidth(440);
                btnPicTip1.Y = Application.GetRealHeight(313);
                btnPicTip2.X = Application.GetRealWidth(538);
                btnPicTip2.Width = Application.GetRealWidth(207);
                btnPicTip1.Text = Language.StringByID(R.MyInternationalizationString.EntryProximityTip1);
                btnPicTip2.Text = Language.StringByID(R.MyInternationalizationString.EntryProximityCard);
                btnPicTip3.Text = Language.StringByID(R.MyInternationalizationString.EntryProximityTip2);
                btnPicTip4.Text = btnPicTip2.Text;
                btnPicTip5.Text = Language.StringByID(R.MyInternationalizationString.EntryTip);
            }
 
            action = (topic, data) =>
            {
                var gatewayID = topic.Split('/')[0];
                var jObjectdata = JObject.Parse(data);
                if (jObjectdata == null)
                {
                    return;
                }
                if (topic == $"{gatewayID}/DoorLock/DoorLockOperatingEventNotificationCommand")
                {
                    var OperatingEventNotificationDatad = Newtonsoft.Json.JsonConvert.DeserializeObject<ZigBee.Device.DoorLock.DoorLockOperatingEventNotificationCommand>(jObjectdata["Data"].ToString());
                    if (OperatingEventNotificationDatad != null)
                    {
                        doorLock.doorLockOperatingEventNotificationCommand = OperatingEventNotificationDatad;
                    }
                }
                if (topic == $"{gatewayID}/DoorLock/DoorLockProgrammingEventNotificationCommand")
                {
                    var ProgrammingEventNotificationData = Newtonsoft.Json.JsonConvert.DeserializeObject<ZigBee.Device.DoorLock.DoorLockProgrammingEventNotificationCommand>(jObjectdata["Data"].ToString());
                    if (ProgrammingEventNotificationData != null)
                    {
                        int curMethod = -1;
                        if (currentType == "password")
                        {
                            curMethod = 0;
                        }
                        else if (currentType == "fingerprint")
                        {
                            curMethod = 15;
                        }
                        else if (currentType == "proximity")
                        {
                            curMethod = 3;
                        }
                        else
                        {
                            return;
                        }
                        if (ProgrammingEventNotificationData.ProgramEventSoure == curMethod)
                        {
                            doorLock.doorLockProgrammingEventNotificationCommand = ProgrammingEventNotificationData;
                            var localDoorLockObj = new ZigBee.Device.DoorLock.LocaDoorLockObj() { };
                            localDoorLockObj.UserID = ProgrammingEventNotificationData.UserID;
                            localDoorLockObj.UnlockType = ProgrammingEventNotificationData.ProgramEventSoure;
                            localDoorLockObj.EntryTime = System.DateTime.Now;
                            //先暂时加入,等云端添加和获取真正成功后才真的加入
                            if (!doorLock.localDoorLockUserList.ContainsKey(localDoorLockObj.UserID))
                            {
                                doorLock.localDoorLockUserList.Add(ProgrammingEventNotificationData.UserID, localDoorLockObj);
                            }
                            Application.RunOnMainThread(() =>
                            {
                                nextBtn.Enable = true;
                                nextBtn.BackgroundColor = Shared.Common.ZigbeeColor.Current.XMBlack;
                            });
                        }
                    }
                }
            };
 
            if (doorLock.Gateway != null || doorLock.Gateway.GwResDataAction != null)
            {
                doorLock.Gateway.GwResDataAction += action;
            }
 
            nextBtn.MouseDownEventHandler += (sende, e) =>
            {
                this.RemoveFromParent();
                var entryStatusPage = new Shared.Phone.UserCenter.DoorLock.EntryStatusPage(doorLock, curAccountObj, currentType);
                Shared.Phone.UserView.HomePage.Instance.AddChidren(entryStatusPage);
                Shared.Phone.UserView.HomePage.Instance.PageIndex += 1;
                entryStatusPage.Show();
            };
        }
    }
}