-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathViewNavigator.pas
635 lines (565 loc) · 16 KB
/
ViewNavigator.pas
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
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
unit ViewNavigator;
interface
uses
FMX.Controls,
System.Classes,
System.Generics.Collections,
System.SysUtils,
System.Rtti;
type
TValue = System.Rtti.TValue;
IvnView = interface
['{E83C4096-6C79-4FB3-B23F-7D360A983A0D}']
procedure DataReceive(AData: TValue);
end;
{$SCOPEDENUMS ON}
TpmLifeStyle = (CreateDestroy, ShowHide);
TvnViewInfoState = (IsCreated, IsVisible);
TvnViewInfoStates = set of TvnViewInfoState;
{$SCOPEDENUMS OFF}
ViewInfoAttribute = class(TCustomAttribute)
private
FLifeStyle: TpmLifeStyle;
FName: string;
public
constructor Create(ALifeStyle: TpmLifeStyle); overload;
constructor Create(const AName: string; ALifeStyle: TpmLifeStyle); overload;
property LifeStyle: TpmLifeStyle read FLifeStyle write FLifeStyle;
property Name: string read FName write FName;
end;
TControlClass = class of TControl;
TvnViewInfo = class
private
FLifeStyle: TpmLifeStyle;
FName: string;
FControl: TControl;
/// <summary>
/// Тип сторінки
/// </summary>
FControlClass: TControlClass;
FStates: TvnViewInfoStates;
FOnChangeStateCallback: TProc<TvnViewInfoStates>;
procedure DoCreate;
procedure DoDestroy;
protected
/// <summary>
/// За необхідністю створює інстанс. Викликає подію OnChangeStates
/// </summary>
procedure DoNotifyShow;
procedure DoNotifyHide;
procedure DoNotifyCreate;
procedure DoNotifyDestroy;
procedure DoChangeStates(AStates: TvnViewInfoStates);
function CanBeCreate(ACreationTime: TpmLifeStyle): Boolean;
function CanBeFree(ADestroyTime: TpmLifeStyle): Boolean;
/// <summary>
/// Инстанс сторінки
/// </summary>
property Control: TControl read FControl write FControl;
function IsCreated: Boolean;
procedure SetParent(const Value: TControl);
public
/// <summary>
/// Приховати сторінку
///
/// </summary>
procedure Hide;
/// <summary>
/// Спробувати показати сторінку
/// </summary>
procedure Navigate(AParent: TControl);
constructor Create(AControlClass: TControlClass);
destructor Destroy; override;
/// <summary>
/// Правило створення та знищеня сторінки
/// </summary>
property LifeStyle: TpmLifeStyle read FLifeStyle write FLifeStyle;
/// <summary>
/// Ім'я сторінки
/// </summary>
property Name: string read FName write FName;
/// <summary>
/// Стан сторінки
/// </summary>
property States: TvnViewInfoStates read FStates write FStates;
/// <summary>
/// Подія, яка сповіщає про змін стану сторінки
/// </summary>
property OnChangeStateCallback: TProc<TvnViewInfoStates> read FOnChangeStateCallback write FOnChangeStateCallback;
end;
TvnHistory = class
private
FHistory: TList<string>;
FCursor: Integer;
fOnNavigate: TProc<string>;
function GetCursor: Integer;
procedure SetCursor(const Value: Integer);
protected
procedure DoClearBeforeNavigate;
procedure DoOnNavigate(const AName: string);
public
constructor Create; virtual;
destructor Destroy; override;
{$REGION 'Info'}
/// <summary>
/// Перевіряє наявність елементу в історії
/// </summary>
function IsHistory(const AName: string): Boolean;
/// <summary>
/// Кількість елементів в історії
/// </summary>
function Count: Integer;
/// <summary>
/// Можливість перейти вперед
/// </summary>
function CanForward: Boolean;
/// <summary>
/// Можливість повернутися
/// </summary>
function CanBack: Boolean;
/// <summary>
/// Поточний елемент
/// </summary>
function Current: string;
{$ENDREGION}
{$REGION 'Navigation'}
/// <summary>
/// Додавання елемента в історію
/// </summary>
procedure Navigate(const APageName: string); virtual;
/// <summary>
/// Вперед
/// </summary>
function Next: string; virtual;
/// <summary>
/// Назад
/// </summary>
function Back: string; virtual;
{$ENDREGION}
/// <summary>
///
/// </summary>
property History: TList<string> read FHistory;
property Cursor: Integer read GetCursor write SetCursor;
property OnNavigate: TProc<string> read fOnNavigate write fOnNavigate;
end;
TViewNavigator = class(TComponent)
private
FHistory: TvnHistory;
FParent: TControl;
FPages: TObjectList<TvnViewInfo>;
FOnChangeStateCallback: TProc<string, TvnViewInfoStates>;
FVersion: string;
FOnNavigationFailedCallback: TProc<string>;
FOnNavigateCallback: TProc<TvnViewInfo>;
protected
procedure DoNavigationFailed(const APage: string);
procedure DoHideCurrentView;
function TryFindPageInfo(AControlClass: TControlClass; var APageInfo: TvnViewInfo): Boolean; overload;
function TryFindPageInfo(AViewName: string; var APageInfo: TvnViewInfo): Boolean; overload;
function DoNavigate(APageInfo: TvnViewInfo): Boolean;
function DoSendData(APageInfo: TvnViewInfo; const AData: TValue): Boolean;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure RegisterFrame(AControlClass: TControlClass); overload;
procedure RegisterFrame(AControlClasses: TArray<TControlClass>); overload;
function Navigate(AControlClass: TControlClass): Boolean; overload;
function Navigate(AControlClass: TControlClass; AData: TValue): Boolean; overload;
function Navigate(ASourcePage: string): Boolean; overload;
procedure SendData(const APageName: string; const AData: TValue); overload;
procedure SendData(AControlClass: TControlClass; const AData: TValue); overload;
procedure GoBack();
procedure GoForward();
public
property History: TvnHistory read FHistory write FHistory;
property Pages: TObjectList<TvnViewInfo> read FPages;
property Parent: TControl read FParent write FParent;
property OnChangeStateCallback: TProc<string, TvnViewInfoStates> read FOnChangeStateCallback
write FOnChangeStateCallback;
property OnNavigationFailedCallback: TProc<string> read FOnNavigationFailedCallback
write FOnNavigationFailedCallback;
property OnNavigateCallback: TProc<TvnViewInfo> read FOnNavigateCallback write FOnNavigateCallback;
property Version: string read FVersion write FVersion;
end;
TvnOnChangeState = procedure(Sender: TViewNavigator; const APage: string; AState: TvnViewInfoStates) of object;
TViewNavigatorUI = class(TViewNavigator)
private
FOnChangeState: TvnOnChangeState;
public
constructor Create(AOwner: TComponent); override;
published
property History;
property Pages;
property OnChangeState: TvnOnChangeState read FOnChangeState write FOnChangeState;
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('Common controls', [TViewNavigatorUI])
end;
{ViewInfoAttribute}
constructor ViewInfoAttribute.Create(ALifeStyle: TpmLifeStyle);
begin
Self.Create('', ALifeStyle);
end;
constructor ViewInfoAttribute.Create(const AName: string; ALifeStyle: TpmLifeStyle);
begin
inherited Create;
FLifeStyle := ALifeStyle;
FName := AName;
end;
{ TViewNavigator }
constructor TViewNavigator.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Version := '2.0';
if AOwner is TControl then
Parent := AOwner as TControl;
FPages := TObjectList<TvnViewInfo>.Create();
FHistory := TvnHistory.Create();
end;
destructor TViewNavigator.Destroy;
begin
FHistory.Free;
FPages.Free;
inherited Destroy;
end;
procedure TViewNavigator.DoHideCurrentView;
var
AView: TvnViewInfo;
begin
if (not FHistory.Current.IsEmpty) and TryFindPageInfo(FHistory.Current, AView) then
AView.Hide();
end;
function TViewNavigator.DoNavigate(APageInfo: TvnViewInfo): Boolean;
var
LOldPage: TvnViewInfo;
begin
Result := False;
if FHistory.Current = APageInfo.Name then
Exit;
if TryFindPageInfo(FHistory.Current, LOldPage) then
begin
LOldPage.Hide;
end;
FHistory.Navigate(APageInfo.Name);
APageInfo.Navigate(Parent);
if Assigned(OnNavigateCallback) then
OnNavigateCallback(APageInfo);
Result := True;
end;
procedure TViewNavigator.DoNavigationFailed(const APage: string);
begin
if Assigned(OnNavigationFailedCallback) then
OnNavigationFailedCallback(APage);
end;
function TViewNavigator.DoSendData(APageInfo: TvnViewInfo; const AData: TValue): Boolean;
var
LDataView: IvnView;
begin
if Supports(APageInfo.Control, IvnView, LDataView) then
begin
LDataView.DataReceive(AData);
Result := True;
end
else
Result := False;
end;
procedure TViewNavigator.GoBack;
var
LCurrentPage: TvnViewInfo;
LBackPage: TvnViewInfo;
begin
if TryFindPageInfo(FHistory.Current, LCurrentPage) then
LCurrentPage.Hide;
if TryFindPageInfo(FHistory.Back, LBackPage) then
LBackPage.Navigate(Parent);
end;
procedure TViewNavigator.GoForward;
var
LCurrentPage: TvnViewInfo;
LForwardPage: TvnViewInfo;
begin
if TryFindPageInfo(FHistory.Current, LCurrentPage) then
LCurrentPage.Hide;
if TryFindPageInfo(FHistory.Next, LForwardPage) then
LForwardPage.Navigate(Parent);
end;
function TViewNavigator.Navigate(ASourcePage: string): Boolean;
var
LPage: TvnViewInfo;
begin
if TryFindPageInfo(ASourcePage, LPage) then
begin
Result := DoNavigate(LPage);
end
else
begin
DoNavigationFailed(ASourcePage);
Result := False;
end;
end;
function TViewNavigator.Navigate(AControlClass: TControlClass): Boolean;
var
LPage: TvnViewInfo;
begin
if TryFindPageInfo(AControlClass, LPage) then
begin
Result := DoNavigate(LPage);
end
else
begin
DoNavigationFailed(AControlClass.ClassName);
Result := False;
end;
end;
function TViewNavigator.Navigate(AControlClass: TControlClass; AData: TValue): Boolean;
begin
Result := Navigate(AControlClass);
if Result then
SendData(AControlClass, AData);
end;
procedure TViewNavigator.RegisterFrame(AControlClasses: TArray<TControlClass>);
begin
for var LView in AControlClasses do
RegisterFrame(LView);
end;
procedure TViewNavigator.RegisterFrame(AControlClass: TControlClass);
var
lPageInfo: TvnViewInfo;
begin
lPageInfo := TvnViewInfo.Create(AControlClass);
FPages.Add(lPageInfo);
lPageInfo.OnChangeStateCallback := procedure(AState: TvnViewInfoStates)
begin
if Assigned(FOnChangeStateCallback) then
FOnChangeStateCallback(lPageInfo.Name, AState);
end;
lPageInfo.DoNotifyCreate;
end;
procedure TViewNavigator.SendData(AControlClass: TControlClass; const AData: TValue);
var
LView: TvnViewInfo;
begin
if TryFindPageInfo(AControlClass, LView) then
DoSendData(LView, AData)
else
raise EResNotFound.Create(AControlClass.ClassName);
end;
procedure TViewNavigator.SendData(const APageName: string; const AData: TValue);
var
LView: TvnViewInfo;
begin
if TryFindPageInfo(APageName, LView) then
DoSendData(LView, AData)
else
raise EResNotFound.Create(APageName);
end;
function TViewNavigator.TryFindPageInfo(AControlClass: TControlClass; var APageInfo: TvnViewInfo): Boolean;
begin
Result := False;
for var I := 0 to FPages.Count - 1 do
if FPages[I].FControlClass = AControlClass then
begin
Result := True;
APageInfo := FPages[I];
end;
end;
function TViewNavigator.TryFindPageInfo(AViewName: string; var APageInfo: TvnViewInfo): Boolean;
begin
Result := False;
for var I := 0 to FPages.Count - 1 do
if FPages[I].Name = AViewName then
begin
Result := True;
APageInfo := FPages[I];
end;
end;
{ TvnViewInfo }
function TvnViewInfo.CanBeCreate(ACreationTime: TpmLifeStyle): Boolean;
begin
Result := (FLifeStyle = ACreationTime) and (not IsCreated);
end;
function TvnViewInfo.CanBeFree(ADestroyTime: TpmLifeStyle): Boolean;
begin
Result := IsCreated and (FLifeStyle = ADestroyTime) and (not Assigned(FControl.Parent));
end;
constructor TvnViewInfo.Create(AControlClass: TControlClass);
var
LRttiObj: TRttiContext;
LRttiType: TRttiType;
begin
FControl := nil;
FControlClass := AControlClass;
LRttiObj := TRttiContext.Create;
try
LRttiType := LRttiObj.GetType(AControlClass);
for var LRttiAttribute in LRttiType.GetAttributes do
if LRttiAttribute is ViewInfoAttribute then
begin
FLifeStyle := (LRttiAttribute as ViewInfoAttribute).LifeStyle;
FName := (LRttiAttribute as ViewInfoAttribute).Name;
end;
if FName.IsEmpty then
FName := LRttiType.Name;
finally
LRttiObj.Free;
end;
end;
destructor TvnViewInfo.Destroy;
begin
DoNotifyDestroy;
inherited;
end;
procedure TvnViewInfo.DoChangeStates(AStates: TvnViewInfoStates);
begin
FStates := AStates;
if Assigned(OnChangeStateCallback) then
OnChangeStateCallback(AStates);
end;
procedure TvnViewInfo.DoCreate;
begin
FControl := (FControlClass.Create(nil));
DoChangeStates(FStates + [TvnViewInfoState.IsCreated]);
end;
procedure TvnViewInfo.DoDestroy;
begin
FreeAndNil(FControl);
DoChangeStates(FStates - [TvnViewInfoState.IsCreated]);
end;
procedure TvnViewInfo.Hide;
begin
FControl.Parent := nil;
DoChangeStates(FStates - [TvnViewInfoState.IsVisible]);
DoNotifyHide;
end;
function TvnViewInfo.IsCreated: Boolean;
begin
Result := Assigned(FControl) and (FControl.Name <> '');
end;
procedure TvnViewInfo.Navigate(AParent: TControl);
begin
DoNotifyShow;
SetParent(AParent);
FControl.Visible := True;
DoChangeStates(FStates + [TvnViewInfoState.IsVisible]);
end;
procedure TvnViewInfo.DoNotifyCreate;
begin
if CanBeCreate(TpmLifeStyle.CreateDestroy) then
DoCreate;
end;
procedure TvnViewInfo.DoNotifyDestroy;
begin
if CanBeFree(TpmLifeStyle.CreateDestroy) then
DoDestroy;
end;
procedure TvnViewInfo.DoNotifyHide;
begin
if CanBeFree(TpmLifeStyle.ShowHide) then
DoDestroy;
end;
procedure TvnViewInfo.DoNotifyShow;
begin
if CanBeCreate(TpmLifeStyle.ShowHide) then
DoCreate;
end;
procedure TvnViewInfo.SetParent(const Value: TControl);
begin
if IsCreated then
FControl.Parent := Value;
end;
{ TvnHistory }
function TvnHistory.Back: string;
begin
if CanBack then
Dec(FCursor);
Result := Current;
DoOnNavigate(Result);
end;
function TvnHistory.CanBack: Boolean;
begin
Result := Cursor > 0;
end;
function TvnHistory.CanForward: Boolean;
begin
Result := Cursor < FHistory.Count - 1;
end;
function TvnHistory.Count: Integer;
begin
Result := FHistory.Count;
end;
constructor TvnHistory.Create;
begin
FHistory := TList<string>.Create;
FCursor := -1;
end;
function TvnHistory.Current: string;
begin
if (FHistory.Count > 0) and (FCursor >= 0) then
Result := FHistory[FCursor]
else
Result := '';
end;
destructor TvnHistory.Destroy;
begin
FHistory.Free;
inherited;
end;
procedure TvnHistory.DoClearBeforeNavigate;
var
I: Integer;
begin
if FCursor <= 0 then
Exit;
for I := FHistory.Count - 1 downto FCursor do
FHistory.Delete(I);
end;
procedure TvnHistory.DoOnNavigate(const AName: string);
begin
if Assigned(OnNavigate) then
OnNavigate(AName);
end;
function TvnHistory.GetCursor: Integer;
begin
Result := FCursor;
end;
function TvnHistory.IsHistory(const AName: string): Boolean;
begin
Result := FHistory.IndexOf(AName) > -1;
end;
procedure TvnHistory.Navigate(const APageName: string);
begin
Inc(FCursor);
DoClearBeforeNavigate;
FHistory.Add(APageName);
DoOnNavigate(APageName);
end;
function TvnHistory.Next: string;
begin
if CanForward then
begin
Inc(FCursor);
Result := Current;
DoOnNavigate(Result);
end
else
Result := '';
end;
procedure TvnHistory.SetCursor(const Value: Integer);
begin
FCursor := Value;
end;
{ TViewNavigatorUI }
constructor TViewNavigatorUI.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Self.OnChangeStateCallback := procedure(APage: string; AState: TvnViewInfoStates)
begin
if Assigned(FOnChangeState) then
FOnChangeState(Self, APage, AState);
end;
end;
end.