wxr
2023-04-07 0041a49139ebb21f228de022b38462b137c2d71e
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
using System;
using System.Collections.Generic;
using HDL_ON.DAL.Server;
using HDL_ON.UI.CSS;
using Shared;
namespace HDL_ON.UI.UI2.FuntionControlView.Video
{
    public class WanderingAlarmPage : FrameLayout
    {
        FrameLayout bodyView;
        string deviceId;
        public WanderingAlarmPage(string deviceId)
        {
            bodyView = this;
            this.deviceId = deviceId;
        }
 
        VerticalScrolViewLayout contentView;
 
        public void LoadPage()
        {
            bodyView.BackgroundColor = CSS_Color.MainBackgroundColor;
            new TopViewDiv(bodyView, Language.StringByID(StringId.WanderingAlarm)).LoadTopView();
 
            var btnTipMsg = new Button()
            {
                Y = Application.GetRealHeight(64),
                X = Application.GetRealWidth(20),
                Height = Application.GetRealHeight(58),
                Width = Application.GetRealWidth(318),
                TextAlignment = TextAlignment.CenterLeft,
                TextColor = CSS_Color.PromptingColor1,
                TextSize = CSS_FontSize.PromptFontSize_FirstLevel,
                TextID =StringId.SmartDoorstepMachineAlarmPrompt,
            };
            bodyView.AddChidren(btnTipMsg);
 
            contentView = new VerticalScrolViewLayout()
            {
                Y = Application.GetRealHeight(64 + 62),
                Height = Application.GetRealHeight(550),
            };
            bodyView.AddChidren(contentView);
 
            LoadCloudData(20, 1);
        }
 
        /// <summary>
        /// 读取云端数据
        /// </summary>
        void LoadCloudData(int pageCount,int pageNo)
        {
            Loading loading = new Loading();
            bodyView.AddChidren(loading);
            loading.Start("");
            new System.Threading.Thread(() => {
                try
                {
                    HttpServerRequest http = new HttpServerRequest();
                    var pack = http.GetAlarmRecords(deviceId, pageCount,pageNo);
                    if (pack.Code == StateCode.SUCCESS)
                    {
                        var obj = Newtonsoft.Json.JsonConvert.DeserializeObject<AlarmRecordInfoPack>(pack.Data.ToString());
                        Application.RunOnMainThread(() =>
                        {
                            LoadSceneGallery(obj);
                        });
                    }
                }
                catch (Exception ex)
                {
                    MainPage.Log($"读取徘徊报警数据异常:{ex.Message}");
                }
                finally
                {
                    Application.RunOnMainThread(() =>
                    {
                        if (loading != null)
                        {
                            loading.Hide();
                            loading.RemoveFromParent();
                        }
                    });
                }
            })
            { IsBackground = true }.Start();
 
        }
 
        /// <summary>
        /// 加载场景图库
        /// </summary>
        void LoadSceneGallery(AlarmRecordInfoPack pack)
        {
            FrameLayout sceneImageRow = new FrameLayout()
            {
                Height = Application.GetRealWidth(128),
            };
            new System.Threading.Thread(() =>
            {
                for (int i = 0; i < pack.list.Count; i++)
                {
                    var item = pack.list[i];
 
                    var imageBytes = ImageUtlis.Current.DownImageByImageUrl(item.alarmImg);
                    Application.RunOnMainThread(() =>
                    {
                        var sceneImageView = new ImageView()
                        {
                            Width = Application.GetRealWidth(172),
                            Height = Application.GetRealHeight(90),
                            Radius = (uint)Application.GetRealWidth(12),
                            ImageBytes = imageBytes
                        };
                        var btnTime = new Button()
                        {
                            Width = Application.GetRealHeight(160),
                            Height = Application.GetRealHeight(41),
                            Y = Application.GetRealHeight(90),
                            Text = Utlis.UnixToDateTimeMS(item.alarmTime).ToString(),
                            TextColor = CSS_Color.FirstLevelTitleColor,
                            TextAlignment = TextAlignment.Center
                        };
                        if (i % 2 == 0)
                        {
                            sceneImageRow = new FrameLayout()
                            {
                                Height = Application.GetRealHeight(90 + 53),
                            };
                            contentView.AddChidren(sceneImageRow);
                            sceneImageView.X = Application.GetRealWidth(10);
                            sceneImageRow.AddChidren(sceneImageView);
                            btnTime.X = Application.GetRealWidth(10);
                            sceneImageRow.AddChidren(btnTime);
 
                        }
                        else
                        {
                            sceneImageView.X = Application.GetRealWidth(194);
                            sceneImageRow.AddChidren(sceneImageView);
 
                            btnTime.X = Application.GetRealWidth(194);
                            sceneImageRow.AddChidren(btnTime);
                        }
 
 
                        sceneImageView.MouseUpEventHandler = (sender, e) =>
                        {
                            Dialog dialog = new Dialog();
 
                            FrameLayout dialogContentView = new FrameLayout();
                            dialog.AddChidren(dialogContentView);
                            dialogContentView.MouseUpEventHandler = (sender2, e2) =>
                            {
                                dialog.Close();
                            };
                            ImageView btnImage = new ImageView()
                            {
                                Gravity = Gravity.Center,
                                Height = Application.GetRealHeight(211),
                                ImageBytes = sceneImageView.ImageBytes,
                            };
                            dialogContentView.AddChidren(btnImage);
 
 
                            dialog.Show();
                        };
 
                    });
                    System.Threading.Thread.Sleep(20);
 
                }
                Application.RunOnMainThread(() =>
                {
                    if (pack.totalPage > pack.pageNo)
                    {
                        var btnLoadMore = new Button()
                        {
                            TextAlignment = TextAlignment.Center,
                            TextID = StringId.GetMore,
                            Height = Application.GetRealHeight(60),
                            TextSize = CSS_FontSize.SubheadingFontSize,
                            TextColor = CSS_Color.FirstLevelTitleColor,
                        };
                        contentView.AddChidren(btnLoadMore);
                        btnLoadMore.MouseUpEventHandler = (sender, e) =>
                        {
                            LoadCloudData(20, pack.pageNo + 1);
                            btnLoadMore.RemoveFromParent();
                        };
                    }
                });
 
            })
            { IsBackground = true }.Start();
 }
 
 
    }
 
    public class AlarmRecordInfoPack
    {
        public int totalCount = 0;
 
        public int totalPage = 0;
 
        public int pageNo = 0;
 
        public int pageSize = 0;
 
        public List<AlarmRecordInfo> list = new List<AlarmRecordInfo>();
    }
 
    /// <summary>
    /// 徘徊报警信息
    /// </summary>
    public class AlarmRecordInfo
    {
        public string alarmImg = string.Empty;
 
        public long alarmTime;
 
        public string alarmType = string.Empty;
 
        public string alarmTypeDesc = string.Empty;
    }
}