| | |
| | | using System.Collections.Generic; |
| | | using HDL_ON.Common; |
| | | using HDL_ON.DAL.Server; |
| | | using HDL_ON.DriverLayer; |
| | | using HDL_ON.Entity; |
| | | using HDL_ON.UI.CSS; |
| | | using Shared; |
| | |
| | | |
| | | Function device; |
| | | VideoDoorlockUser doorlockUser; |
| | | public Action delCallBackAction; |
| | | |
| | | Loading waitPage; |
| | | |
| | | public VideoDoorlockUserManagerPage(Function function,VideoDoorlockUser user) |
| | | { |
| | |
| | | device = function; |
| | | doorlockUser = user; |
| | | BackgroundColor = CSS_Color.BackgroundColor; |
| | | waitPage = new Loading(); |
| | | bodyView.AddChidren(waitPage); |
| | | waitPage.Hide(); |
| | | } |
| | | |
| | | public void LoadPage() |
| | |
| | | |
| | | void initOptionView(bool isEdit) |
| | | { |
| | | int childrenViewHeight = Application.GetRealWidth(116); |
| | | int permissionsViewHeight = Application.GetRealHeight(291 + 92); |
| | | 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); |
| | | permissionsViewHeight = Application.GetRealHeight(391 + 50); |
| | | childrenViewHeight = Application.GetRealWidth(156); |
| | | } |
| | | |
| | | #region 门锁用户开锁方式管理 |
| | | userPermissionsView.Height = permissionsViewHeight; |
| | | } |
| | | else |
| | | { |
| | | userPermissionsView = new FrameLayout() |
| | | { |
| | | Height = permissionsViewHeight, |
| | | BackgroundColor = CSS_Color.MainBackgroundColor, |
| | | }; |
| | | contentView.AddChidren(userPermissionsView); |
| | | } |
| | | |
| | | #region 门锁用户开锁方式管理 |
| | | |
| | | var userPermissionsTitleView = new FrameLayout() |
| | | { |
| | |
| | | TextAlignment = TextAlignment.CenterRight, |
| | | TextSize = CSS_FontSize.TextFontSize, |
| | | TextColor = CSS_Color.MainColor, |
| | | TextID = StringId.Edit, |
| | | TextID = !isEdit? StringId.Edit: StringId.Complete, |
| | | }; |
| | | userPermissionsTitleView.AddChidren(btnEditUserPermissions); |
| | | btnEditUserPermissions.MouseUpEventHandler = (sender, e) => { |
| | | initOptionView(isEdit ? false : true); |
| | | if(!isEdit) |
| | | { |
| | | initOptionView(true); |
| | | } |
| | | else |
| | | { |
| | | initOptionView(false); |
| | | } |
| | | |
| | | }; |
| | | |
| | | |
| | |
| | | var unlockOptionView = new FrameLayout() |
| | | { |
| | | Y = userPermissionsTitleView.Bottom, |
| | | Height = Application.GetRealHeight(231), |
| | | Height =2 * childrenViewHeight +Application.GetRealHeight(20), |
| | | BackgroundColor = CSS_Color.MainBackgroundColor, |
| | | }; |
| | | userPermissionsView.AddChidren(unlockOptionView); |
| | |
| | | { |
| | | X = Application.GetRealWidth(16), |
| | | Width = Application.GetRealWidth(64 + 32), |
| | | Height = Application.GetRealHeight(64 + 24 + 20) |
| | | Height = childrenViewHeight |
| | | }; |
| | | unlockOptionView.AddChidren(fingerprintView); |
| | | |
| | |
| | | { |
| | | btnFingerprintText.Text = doorlockUser.fingerCount + " " + Language.StringByID(StringId.Fingerprints); |
| | | } |
| | | } |
| | | |
| | | if (isEdit) |
| | | { |
| | | var btnClearFingerprints = new Button() |
| | | { |
| | | X = Application.GetRealWidth(18), |
| | | Y = btnFingerprintText.Bottom, |
| | | Width = Application.GetRealWidth(60), |
| | | Height = Application.GetRealHeight(28), |
| | |
| | | BorderColor = CSS_Color.MainColor, |
| | | Radius = (uint)Application.GetRealWidth(4), |
| | | TextID = StringId.Clear, |
| | | TextColor = CSS_Color.MainColor, |
| | | }; |
| | | fingerprintView.AddChidren(btnClearFingerprints); |
| | | btnClearFingerprints.MouseUpEventHandler = (sender, e) => { |
| | | |
| | | btnClearFingerprints.MouseUpEventHandler = (sender, e) => |
| | | { |
| | | waitPage.Start(Language.StringByID(StringId.PleaseWait)); |
| | | new System.Threading.Thread(() => |
| | | { |
| | | try |
| | | { |
| | | var pack = ApiUtlis.Ins.HttpRequest.DeleteDoorlockUserFingerPassword(device.deviceId, doorlockUser.lockUserIndex); |
| | | if (pack != null && pack.Code == StateCode.SUCCESS) |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | //更新界面 |
| | | initOptionView(true); |
| | | }); |
| | | } |
| | | else |
| | | { |
| | | //失败提示 |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | //失败提示 |
| | | var tip = new Tip() |
| | | { |
| | | MaxWidth = Application.GetRealWidth(300), |
| | | Text = pack.message, |
| | | CloseTime = 3, |
| | | Direction = AMPopTipDirection.None |
| | | }; |
| | | tip.Show(MainPage.BaseView); |
| | | }); |
| | | } |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | MainPage.Log($"delete finger error : {ex.Message}"); |
| | | } |
| | | finally |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | waitPage.Hide(); |
| | | }); |
| | | } |
| | | }) |
| | | { IsBackground = true }.Start(); |
| | | }; |
| | | } |
| | | } |
| | | #endregion |
| | | |
| | |
| | | { |
| | | Gravity = Gravity.CenterHorizontal, |
| | | Width = Application.GetRealWidth(64 + 32), |
| | | Height = Application.GetRealHeight(64 + 24 + 20) |
| | | Height = childrenViewHeight |
| | | }; |
| | | unlockOptionView.AddChidren(digitalPasswordView); |
| | | |
| | |
| | | { |
| | | btnDigitalPasswordText.Text = doorlockUser.fingerCount + " " + Language.StringByID(StringId.DigitalPassword); |
| | | } |
| | | } |
| | | |
| | | if (isEdit) |
| | | { |
| | | var btnClearDigitalPassword = new Button() |
| | | { |
| | | X = Application.GetRealWidth(18), |
| | | Y = btnDigitalPasswordText.Bottom, |
| | | Width = Application.GetRealWidth(60), |
| | | Height = Application.GetRealHeight(28), |
| | |
| | | BorderColor = CSS_Color.MainColor, |
| | | Radius = (uint)Application.GetRealWidth(4), |
| | | TextID = StringId.Clear, |
| | | TextColor = CSS_Color.MainColor, |
| | | }; |
| | | digitalPasswordView.AddChidren(btnClearDigitalPassword); |
| | | btnClearDigitalPassword.MouseUpEventHandler = (sender, e) => |
| | | { |
| | | waitPage.Start(Language.StringByID(StringId.PleaseWait)); |
| | | new System.Threading.Thread(() => |
| | | { |
| | | try |
| | | { |
| | | var pack = ApiUtlis.Ins.HttpRequest.DeleteDoorlockUserNumberPassword(device.deviceId, doorlockUser.lockUserIndex); |
| | | if (pack != null && pack.Code == StateCode.SUCCESS) |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | //更新界面 |
| | | initOptionView(true); |
| | | }); |
| | | } |
| | | else |
| | | { |
| | | //失败提示 |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | //失败提示 |
| | | var tip = new Tip() |
| | | { |
| | | MaxWidth = Application.GetRealWidth(300), |
| | | Text = pack.message, |
| | | CloseTime = 3, |
| | | Direction = AMPopTipDirection.None |
| | | }; |
| | | tip.Show(MainPage.BaseView); |
| | | }); |
| | | } |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | MainPage.Log($"delete number password error : {ex.Message}"); |
| | | } |
| | | finally |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | waitPage.Hide(); |
| | | }); |
| | | } |
| | | }) |
| | | { IsBackground = true }.Start(); |
| | | }; |
| | | |
| | | } |
| | | } |
| | | #endregion |
| | | |
| | |
| | | { |
| | | X = Application.GetRealWidth(263), |
| | | Width = Application.GetRealWidth(64 + 32), |
| | | Height = Application.GetRealHeight(64 + 24 + 20) |
| | | Height = childrenViewHeight |
| | | }; |
| | | unlockOptionView.AddChidren(nfcView); |
| | | |
| | |
| | | { |
| | | btnNfcText.Text = doorlockUser.fingerCount + " " + Language.StringByID(StringId.NfcKey); |
| | | } |
| | | } |
| | | |
| | | if (isEdit) |
| | | { |
| | | var btnClearNfc = new Button() |
| | | { |
| | | X = Application.GetRealWidth(18), |
| | | Y = btnNfcText.Bottom, |
| | | Width = Application.GetRealWidth(60), |
| | | Height = Application.GetRealHeight(28), |
| | |
| | | BorderColor = CSS_Color.MainColor, |
| | | Radius = (uint)Application.GetRealWidth(4), |
| | | TextID = StringId.Clear, |
| | | TextColor = CSS_Color.MainColor, |
| | | }; |
| | | nfcView.AddChidren(btnClearNfc); |
| | | btnClearNfc.MouseUpEventHandler = (sender, e) => { |
| | | waitPage.Start(Language.StringByID(StringId.PleaseWait)); |
| | | new System.Threading.Thread(() => |
| | | { |
| | | try |
| | | { |
| | | var pack = ApiUtlis.Ins.HttpRequest.DeleteDoorlockUserCardPassword(device.deviceId, doorlockUser.lockUserIndex); |
| | | if (pack != null && pack.Code == StateCode.SUCCESS) |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | //更新界面 |
| | | initOptionView(true); |
| | | }); |
| | | } |
| | | else |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | //失败提示 |
| | | var tip = new Tip() |
| | | { |
| | | MaxWidth = Application.GetRealWidth(300), |
| | | Text = pack.message, |
| | | CloseTime = 3, |
| | | Direction = AMPopTipDirection.None |
| | | }; |
| | | tip.Show(MainPage.BaseView); |
| | | }); |
| | | } |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | MainPage.Log($"delete face error : {ex.Message}"); |
| | | } |
| | | finally |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | waitPage.Hide(); |
| | | }); |
| | | } |
| | | }) |
| | | { IsBackground = true }.Start(); |
| | | }; |
| | | } |
| | | } |
| | | #endregion |
| | | |
| | |
| | | var faceView = new FrameLayout() |
| | | { |
| | | X = Application.GetRealWidth(16), |
| | | Y = fingerprintView.Bottom+ Application.GetRealHeight(20), |
| | | Y = fingerprintView.Bottom, |
| | | Width = Application.GetRealWidth(64 + 32), |
| | | Height = Application.GetRealHeight(64 + 24 + 20) |
| | | Height = childrenViewHeight |
| | | }; |
| | | unlockOptionView.AddChidren(faceView); |
| | | |
| | |
| | | { |
| | | btnFaceText.Text = doorlockUser.fingerCount + " " + Language.StringByID(StringId.FaceKey); |
| | | } |
| | | } |
| | | |
| | | if (isEdit) |
| | | { |
| | | var btnClearFace = new Button() |
| | | { |
| | | X = Application.GetRealWidth(18), |
| | | Y = btnFaceText.Bottom, |
| | | Width = Application.GetRealWidth(60), |
| | | Height = Application.GetRealHeight(28), |
| | |
| | | BorderColor = CSS_Color.MainColor, |
| | | Radius = (uint)Application.GetRealWidth(4), |
| | | TextID = StringId.Clear, |
| | | TextColor = CSS_Color.MainColor, |
| | | }; |
| | | faceView.AddChidren(btnClearFace); |
| | | btnClearFace.MouseUpEventHandler = (sender, e) => { |
| | | waitPage.Start(Language.StringByID(StringId.PleaseWait)); |
| | | new System.Threading.Thread(() => |
| | | { |
| | | try |
| | | { |
| | | var pack = ApiUtlis.Ins.HttpRequest.DeleteDoorlockUserFacePassword(device.deviceId, doorlockUser.lockUserIndex); |
| | | if (pack != null && pack.Code == StateCode.SUCCESS) |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | //更新界面 |
| | | initOptionView(true); |
| | | }); |
| | | } |
| | | else |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | //失败提示 |
| | | var tip = new Tip() |
| | | { |
| | | MaxWidth = Application.GetRealWidth(300), |
| | | Text = pack.message, |
| | | CloseTime = 3, |
| | | Direction = AMPopTipDirection.None |
| | | }; |
| | | tip.Show(MainPage.BaseView); |
| | | }); |
| | | } |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | MainPage.Log($"delete face error : {ex.Message}"); |
| | | } |
| | | finally |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | waitPage.Hide(); |
| | | }); |
| | | } |
| | | }) |
| | | { IsBackground = true }.Start(); |
| | | }; |
| | | |
| | | } |
| | | } |
| | | #endregion |
| | | |
| | |
| | | |
| | | var delUserView = new FrameLayout() |
| | | { |
| | | Y = permissionsViewHeight - Application.GetRealHeight(92), |
| | | Height = Application.GetRealHeight(92), |
| | | Y = unlockOptionView.Bottom, |
| | | Height = Application.GetRealHeight(110), |
| | | BackgroundColor = CSS_Color.BackgroundColor, |
| | | }; |
| | | userPermissionsView.AddChidren(delUserView); |
| | | |
| | | Button btnDelUser = new Button() |
| | | { |
| | | Y = Application.GetRealHeight(48), |
| | | Y = Application.GetRealHeight(40), |
| | | Gravity = Gravity.CenterHorizontal, |
| | | Width = Application.GetRealWidth(220), |
| | | Height = Application.GetRealHeight(44), |
| | | Height = Application.GetRealWidth(44), |
| | | BackgroundColor = CSS_Color.MainBackgroundColor, |
| | | TextColor = CSS_Color.WarningColor, |
| | | Radius = (uint)Application.GetRealWidth(22), |
| | | TextID = StringId.DeleteUser, |
| | | TextSize = CSS_FontSize.SubheadingFontSize, |
| | | }; |
| | | delUserView.AddChidren(btnDelUser); |
| | | |
| | | btnDelUser.MouseUpEventHandler = (sender, e) => |
| | | { |
| | | new PublicAssmebly().TipOptionMsg(StringId.Tip, StringId.DeleteDoorlockUserTip, () => |
| | | { |
| | | waitPage.Start(Language.StringByID(StringId.PleaseWait)); |
| | | new System.Threading.Thread(() => |
| | | { |
| | | try |
| | | { |
| | | var pack = ApiUtlis.Ins.HttpRequest.DeleteDoorlockUser(device.deviceId, doorlockUser.lockUserIndex); |
| | | if (pack != null && pack.Code == StateCode.SUCCESS) |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | //更新界面 |
| | | new PublicAssmebly().TipMsg(StringId.Tip, StringId.DeleteSuccess, () => { |
| | | this.RemoveFromParent(); |
| | | delCallBackAction?.Invoke(); |
| | | }); |
| | | }); |
| | | } |
| | | else |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | //失败提示 |
| | | var tip = new Tip() |
| | | { |
| | | MaxWidth = Application.GetRealWidth(300), |
| | | Text = pack.message, |
| | | CloseTime = 3, |
| | | Direction = AMPopTipDirection.None |
| | | }; |
| | | tip.Show(MainPage.BaseView); |
| | | }); |
| | | } |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | MainPage.Log($"delete face error : {ex.Message}"); |
| | | } |
| | | finally |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | waitPage.Hide(); |
| | | }); |
| | | } |
| | | }) |
| | | { IsBackground = true }.Start(); |
| | | }); |
| | | }; |
| | | |
| | | |
| | | |
| | | } |
| | |
| | | { |
| | | return; |
| | | } |
| | | var waitPage = new Loading(); |
| | | bodyView.AddChidren(waitPage); |
| | | waitPage.Start(Language.StringByID(StringId.PleaseWait)); |
| | | new System.Threading.Thread(() => |
| | | { |
| | |
| | | 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; |
| | |
| | | { |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | if (waitPage != null) |
| | | { |
| | | waitPage.RemoveFromParent(); |
| | | waitPage = null; |
| | | } |
| | | waitPage.Hide(); |
| | | }); |
| | | } |
| | | }) |