wxr
2023-07-10 a6e32221aa4bc5019a066fad90c4955064647cae
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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
using System;
using System.Collections.Generic;
using HDL_ON.Common;
using HDL_ON.DAL.Server;
using HDL_ON.Entity;
using HDL_ON.UI.CSS;
using Shared;
 
namespace HDL_ON.UI.UI2.FuntionControlView.VideoDoorLock
{
    /// <summary>
    /// 视频门锁用户管理界面
    /// </summary>
    public class VideoDoorlockUserManagerPage : FrameLayout
    {
        FrameLayout bodyView;
        VerticalScrolViewLayout contentView;
        FrameLayout userPermissionsView;
 
        Button btnUserName;
 
        Function device;
        VideoDoorlockUser doorlockUser;
 
        public VideoDoorlockUserManagerPage(Function function,VideoDoorlockUser user)
        {
            bodyView = this;
            device = function;
            doorlockUser = user;
            BackgroundColor = CSS_Color.BackgroundColor;
        }
 
        public void LoadPage()
        {
            new TopViewDiv(bodyView, Language.StringByID(StringId.UserManagement)).LoadTopView();
 
            contentView = new VerticalScrolViewLayout()
            {
                Y = Application.GetRealHeight(64),
                Height = Application.GetRealHeight(667 - 70),
            };
            bodyView.AddChidren(contentView);
 
            #region 用户名称
            var userNameView = new FrameLayout()
            {
                Height = Application.GetRealHeight(50),
                BackgroundColor = CSS_Color.MainBackgroundColor,
            };
            contentView.AddChidren(userNameView);
            var btnUserNameTitle = new Button()
            {
                X = Application.GetRealWidth(16),
                Width = Application.GetRealWidth(120),
                TextAlignment = TextAlignment.CenterLeft,
                TextColor = CSS_Color.FirstLevelTitleColor,
                TextSize = CSS_FontSize.SubheadingFontSize,
                TextID = StringId.User,
            };
            userNameView.AddChidren(btnUserNameTitle);
            var btnEditUserNameIcon = new Button()
            {
                X = Application.GetRealWidth(333),
                Gravity = Gravity.CenterVertical,
                Width = Application.GetMinRealAverage(28),
                Height = Application.GetMinRealAverage(28),
                UnSelectedImagePath = "Public/EditIcon.png",
            };
            userNameView.AddChidren(btnEditUserNameIcon);
 
            btnUserName = new Button()
            {
                X = Application.GetRealWidth(100),
                Width = Application.GetRealWidth(230),
                TextAlignment = TextAlignment.CenterRight,
                TextColor = CSS_Color.PromptingColor1,
                TextSize = CSS_FontSize.TextFontSize,
                Text = doorlockUser.lockUserName
            };
            userNameView.AddChidren(btnUserName);
            btnUserName.MouseUpEventHandler = (sender, e) => {
                LoadEvent_EditUserName();
            };
 
            #endregion
 
            contentView.AddChidren(new Button() { Height = Application.GetRealHeight(8) });
 
            initOptionView(false);
        }
 
        void initOptionView(bool isEdit)
        {
            if(userPermissionsView!= null)
            {
                userPermissionsView.RemoveAll();
            }
            int childrenViewHeight = Application.GetRealHeight( 108);
            int permissionsViewHeight = Application.GetRealHeight( 291+92);
            if (isEdit)
            {
                permissionsViewHeight = Application.GetRealHeight(391 + 92);
                childrenViewHeight = Application.GetRealHeight(136);
            }
 
            #region 门锁用户开锁方式管理
            userPermissionsView = new FrameLayout()
            {
                Height = permissionsViewHeight,
                BackgroundColor = CSS_Color.MainBackgroundColor,
            };
            contentView.AddChidren(userPermissionsView);
 
            var userPermissionsTitleView = new FrameLayout()
            {
                Height = Application.GetRealHeight(63),
                BackgroundColor = CSS_Color.MainBackgroundColor,
            };
            userPermissionsView.AddChidren(userPermissionsTitleView);
 
            var btnUserPermissionsTitle = new Button()
            {
                X = Application.GetRealWidth(16),
                TextAlignment = TextAlignment.CenterLeft,
                TextSize = CSS_FontSize.SubheadingFontSize,
                TextColor = CSS_Color.FirstLevelTitleColor,
                TextID = StringId.UnlockMethod
            };
            userPermissionsTitleView.AddChidren(btnUserPermissionsTitle);
 
            var btnEditUserPermissions = new Button()
            {
                X = Application.GetRealWidth(267),
                Width = Application.GetRealWidth(80),
                TextAlignment = TextAlignment.CenterRight,
                TextSize = CSS_FontSize.TextFontSize,
                TextColor = CSS_Color.MainColor,
                TextID = StringId.Edit,
            };
            userPermissionsTitleView.AddChidren(btnEditUserPermissions);
            btnEditUserPermissions.MouseUpEventHandler = (sender, e) => {
                initOptionView(isEdit ? false : true);
            };
 
 
            #region 开锁选项
            var unlockOptionView = new FrameLayout()
            {
                Y = userPermissionsTitleView.Bottom,
                Height = Application.GetRealHeight(231),
                BackgroundColor = CSS_Color.MainBackgroundColor,
            };
            userPermissionsView.AddChidren(unlockOptionView);
 
            #region 指纹
            var fingerprintView = new FrameLayout()
            {
                X = Application.GetRealWidth(16),
                Width = Application.GetRealWidth(64 + 32),
                Height = Application.GetRealHeight(64 + 24 + 20)
            };
            unlockOptionView.AddChidren(fingerprintView);
 
            var btnFingerprintIcon = new Button()
            {
                Width = Application.GetRealWidth(64),
                Height = Application.GetRealWidth(64),
                UnSelectedImagePath = "FunctionIcon/DoorLock/UserRightsManagement/FingerprintIcon.png",
                X = Application.GetRealWidth(16),
            };
            fingerprintView.AddChidren(btnFingerprintIcon);
 
            var btnFingerprintText = new Button()
            {
                Y = btnFingerprintIcon.Bottom,
                Height = Application.GetRealHeight(44),
                TextAlignment = TextAlignment.Center,
                TextSize = CSS_FontSize.TextFontSize,
                TextColor = CSS_Color.PromptingColor1,
                TextID = StringId.Fingerprints,
            };
            fingerprintView.AddChidren(btnFingerprintText);
 
            if (doorlockUser.fingerCount > 0)
            {
                btnFingerprintIcon.UnSelectedImagePath = "FunctionIcon/DoorLock/UserRightsManagement/FingerprintOnIcon.png";
                btnFingerprintText.TextColor = CSS_Color.FirstLevelTitleColor;
                if (Language.CurrentLanguage == "Chinese")
                {
                    btnFingerprintText.Text = doorlockUser.fingerCount + "组" + Language.StringByID(StringId.Fingerprints);
                }
                else
                {
                    btnFingerprintText.Text = doorlockUser.fingerCount + " " + Language.StringByID(StringId.Fingerprints);
                }
            }
 
            if (isEdit)
            {
                var btnClearFingerprints = new Button()
                {
                    Y = btnFingerprintText.Bottom,
                    Width = Application.GetRealWidth(60),
                    Height = Application.GetRealHeight(28),
                    BorderWidth = 1,
                    BorderColor = CSS_Color.MainColor,
                    Radius = (uint)Application.GetRealWidth(4),
                    TextID = StringId.Clear,
                };
                fingerprintView.AddChidren(btnClearFingerprints);
                btnClearFingerprints.MouseUpEventHandler = (sender, e) => {
 
                };
            }
            #endregion
 
 
            #region 数字密码
            var digitalPasswordView = new FrameLayout()
            {
                Gravity = Gravity.CenterHorizontal,
                Width = Application.GetRealWidth(64 + 32),
                Height = Application.GetRealHeight(64 + 24 + 20)
            };
            unlockOptionView.AddChidren(digitalPasswordView);
 
            var btnDigitalPasswordIcon = new Button()
            {
                Width = Application.GetRealWidth(64),
                Height = Application.GetRealWidth(64),
                UnSelectedImagePath = "FunctionIcon/DoorLock/UserRightsManagement/DigitalPasswordIcon.png",
                X = Application.GetRealWidth(16),
            };
            digitalPasswordView.AddChidren(btnDigitalPasswordIcon);
 
            var btnDigitalPasswordText = new Button()
            {
                Y = btnDigitalPasswordIcon.Bottom,
                Height = Application.GetRealHeight(44),
                TextAlignment = TextAlignment.Center,
                TextSize = CSS_FontSize.TextFontSize,
                TextColor = CSS_Color.PromptingColor1,
                TextID = StringId.DigitalPassword,
            };
            digitalPasswordView.AddChidren(btnDigitalPasswordText);
 
            if (doorlockUser.fingerCount > 0)
            {
                btnDigitalPasswordIcon.UnSelectedImagePath = "FunctionIcon/DoorLock/UserRightsManagement/DigitalPasswordOnIcon.png";
                btnDigitalPasswordText.TextColor = CSS_Color.FirstLevelTitleColor;
                if (Language.CurrentLanguage == "Chinese")
                {
                    btnDigitalPasswordText.Text = doorlockUser.fingerCount + "组" + Language.StringByID(StringId.DigitalPassword);
                }
                else
                {
                    btnDigitalPasswordText.Text = doorlockUser.fingerCount + " " + Language.StringByID(StringId.DigitalPassword);
                }
            }
 
            if (isEdit)
            {
                var btnClearDigitalPassword = new Button()
                {
                    Y = btnDigitalPasswordText.Bottom,
                    Width = Application.GetRealWidth(60),
                    Height = Application.GetRealHeight(28),
                    BorderWidth = 1,
                    BorderColor = CSS_Color.MainColor,
                    Radius = (uint)Application.GetRealWidth(4),
                    TextID = StringId.Clear,
                };
                digitalPasswordView.AddChidren(btnClearDigitalPassword);
            }
            #endregion
 
            #region NFC
            var nfcView = new FrameLayout()
            {
                X = Application.GetRealWidth(263),
                Width = Application.GetRealWidth(64 + 32),
                Height = Application.GetRealHeight(64 + 24 + 20)
            };
            unlockOptionView.AddChidren(nfcView);
 
            var btnNfcIcon = new Button()
            {
                Width = Application.GetRealWidth(64),
                Height = Application.GetRealWidth(64),
                UnSelectedImagePath = "FunctionIcon/DoorLock/UserRightsManagement/NfcIcon.png",
                X = Application.GetRealWidth(16),
            };
            nfcView.AddChidren(btnNfcIcon);
 
            var btnNfcText = new Button()
            {
                Y = btnNfcIcon.Bottom,
                Height = Application.GetRealHeight(44),
                TextAlignment = TextAlignment.Center,
                TextSize = CSS_FontSize.TextFontSize,
                TextColor = CSS_Color.PromptingColor1,
                TextID = StringId.NfcKey,
            };
            nfcView.AddChidren(btnNfcText);
 
            if (doorlockUser.fingerCount > 0)
            {
                btnNfcIcon.UnSelectedImagePath = "FunctionIcon/DoorLock/UserRightsManagement/NfcOnIcon.png";
                btnNfcText.TextColor = CSS_Color.FirstLevelTitleColor;
                if (Language.CurrentLanguage == "Chinese")
                {
                    btnNfcText.Text = doorlockUser.fingerCount + "组" + Language.StringByID(StringId.NfcKey);
                }
                else
                {
                    btnNfcText.Text = doorlockUser.fingerCount + " " + Language.StringByID(StringId.NfcKey);
                }
            }
 
            if (isEdit)
            {
                var btnClearNfc = new Button()
                {
                    Y = btnNfcText.Bottom,
                    Width = Application.GetRealWidth(60),
                    Height = Application.GetRealHeight(28),
                    BorderWidth = 1,
                    BorderColor = CSS_Color.MainColor,
                    Radius = (uint)Application.GetRealWidth(4),
                    TextID = StringId.Clear,
                };
                nfcView.AddChidren(btnClearNfc);
            }
            #endregion
 
            #region 人脸
            var faceView = new FrameLayout()
            {
                X = Application.GetRealWidth(16),
                Y = fingerprintView.Bottom+ Application.GetRealHeight(20),
                Width = Application.GetRealWidth(64 + 32),
                Height = Application.GetRealHeight(64 + 24 + 20)
            };
            unlockOptionView.AddChidren(faceView);
 
            var btnFaceIcon = new Button()
            {
                Width = Application.GetRealWidth(64),
                Height = Application.GetRealWidth(64),
                UnSelectedImagePath = "FunctionIcon/DoorLock/UserRightsManagement/FaceIcon.png",
                X = Application.GetRealWidth(16),
            };
            faceView.AddChidren(btnFaceIcon);
 
            var btnFaceText = new Button()
            {
                Y = btnFaceIcon.Bottom,
                Height = Application.GetRealHeight(44),
                TextAlignment = TextAlignment.Center,
                TextSize = CSS_FontSize.TextFontSize,
                TextColor = CSS_Color.PromptingColor1,
                TextID = StringId.FaceKey,
            };
            faceView.AddChidren(btnFaceText);
 
            if (doorlockUser.fingerCount > 0)
            {
                btnFaceIcon.UnSelectedImagePath = "FunctionIcon/DoorLock/UserRightsManagement/FaceOnIcon.png";
                btnFaceText.TextColor = CSS_Color.FirstLevelTitleColor;
                if (Language.CurrentLanguage == "Chinese")
                {
                    btnFaceText.Text = doorlockUser.fingerCount + "组" + Language.StringByID(StringId.FaceKey);
                }
                else
                {
                    btnFaceText.Text = doorlockUser.fingerCount + " " + Language.StringByID(StringId.FaceKey);
                }
            }
 
            if (isEdit)
            {
                var btnClearFace = new Button()
                {
                    Y = btnFaceText.Bottom,
                    Width = Application.GetRealWidth(60),
                    Height = Application.GetRealHeight(28),
                    BorderWidth = 1,
                    BorderColor = CSS_Color.MainColor,
                    Radius = (uint)Application.GetRealWidth(4),
                    TextID = StringId.Clear,
                };
                faceView.AddChidren(btnClearFace);
            }
            #endregion
 
            #endregion
 
            #endregion
 
            var delUserView = new FrameLayout()
            {
                Y = permissionsViewHeight - Application.GetRealHeight(92),
                Height = Application.GetRealHeight(92),
                BackgroundColor = CSS_Color.BackgroundColor,
            };
            userPermissionsView.AddChidren(delUserView);
 
            Button btnDelUser = new Button()
            {
                Y = Application.GetRealHeight(48),
                Gravity = Gravity.CenterHorizontal,
                Width = Application.GetRealWidth(220),
                Height = Application.GetRealHeight(44),
                BackgroundColor = CSS_Color.MainBackgroundColor,
                TextColor = CSS_Color.WarningColor,
                Radius = (uint)Application.GetRealWidth(22),
                TextID = StringId.DeleteUser,
            };
            delUserView.AddChidren(btnDelUser);
 
 
        }
 
 
 
        /// <summary>
        /// 加载修改用户名称事件
        /// </summary>
        void LoadEvent_EditUserName()
        {
            EventHandler<MouseEventArgs> eventHandler = (sender, e) =>
            {
                Action<string> callBack = (str) =>
                {
                    if (string.IsNullOrEmpty(str))
                    {
                        new Tip()
                        {
                            CloseTime = 1,
                            Text = Language.StringByID(StringId.UesrNameCannotBeEmpty),
                            Direction = AMPopTipDirection.None,
                        }.Show(bodyView);
                        return;
                    }
                    if (str == UserInfo.Current.userName)
                    {
                        return;
                    }
                    var waitPage = new Loading();
                    bodyView.AddChidren(waitPage);
                    waitPage.Start(Language.StringByID(StringId.PleaseWait));
                    new System.Threading.Thread(() =>
                    {
                        try
                        {
                            var resultObj = ApiUtlis.Ins.HttpRequest.EditDoorlockUserName(device.deviceId, doorlockUser.extUserId,str);
                            if (resultObj.Code == StateCode.SUCCESS)
                            {
                                UserInfo.Current.userName = str;
                                UserInfo.Current.SaveUserInfo();
                                Application.RunOnMainThread(() =>
                                {
                                    btnUserName.Text = str;
                                });
                            }
                            else
                            {
                                //失败提示
                                IMessageCommon.Current.ShowErrorInfoAlter(resultObj.Code);
                            }
                        }
                        catch (Exception ex)
                        {
                            MainPage.Log($"update user name error : {ex.Message}");
                        }
                        finally
                        {
                            Application.RunOnMainThread(() =>
                            {
                                if (waitPage != null)
                                {
                                    waitPage.RemoveFromParent();
                                    waitPage = null;
                                }
                            });
                        }
                    })
                    { IsBackground = true }.Start();
                };
                new PublicAssmebly().LoadDialog_EditParater(StringId.ChangeName, doorlockUser.lockUserName, callBack, StringId.UesrNameCannotBeEmpty, 0, new System.Collections.Generic.List<string>());
            };
            btnUserName.MouseUpEventHandler = eventHandler;
        }
 
 
 
    }
}