Menu

[r2000]: / trunk / Src / UDetailPageHTML.pas  Maximize  Restore  History

Download this file

623 lines (559 with data), 19.3 kB

  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
{
* UDetailPageHTML.pas
*
* Heirachy of classes that render views as HTML. The HTML is used to display
* the view item in a tab in the detail pane. A factory is provided that can
* create the correct object for any type of view item.
*
* Originally named UHTMLGenerators.pas. Renamed as UDetailPageHTML.pas as of
* v2.0
*
* $Rev$
* $Date$
*
* ***** BEGIN LICENSE BLOCK *****
*
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
* the specific language governing rights and limitations under the License.
*
* The Original Code is UDetailPageHTML.pas
*
* The Initial Developer of the Original Code is Peter Johnson
* (http://www.delphidabbler.com/).
*
* Portions created by the Initial Developer are Copyright (C) 2005-2012 Peter
* Johnson. All Rights Reserved.
*
* Contributor(s)
* NONE
*
* ***** END LICENSE BLOCK *****
}
unit UDetailPageHTML;
interface
uses
// Project
UView;
type
/// <summary>
/// Abstract base class for all classes that render a view item as HTML for
/// inclusion in the body of an HTML document displayed in the detail pane.
/// </summary>
TDetailPageHTML = class abstract(TObject)
strict private
var
/// <summary>Value of View property.</summary>
fView: IView;
strict protected
/// <summary>Reference to view item that is to be rendered in HTML.
/// </summary>
/// <remarks>Provided for use by sub-classes.</remarks>
property View: IView read fView;
public
/// <summary>Object constructor. Sets up object to render given view in
/// HTML.</summary>
constructor Create(View: IView); virtual;
/// <summary>Generates and returns HTML representing view passed to
/// constructor.</summary>
function Generate: string; virtual; abstract;
end;
type
/// <summary>
/// Factory for creation of TDetailPageHTML objects for use in rendering a
/// view as HTML for display in detail pane.
/// </summary>
TDetailPageHTMLFactory = record
public
/// <summary>Creates and returns object that can render given view as HTML
/// for display in detail pane.</summary>
class function CreateGenerator(View: IView): TDetailPageHTML; static;
end;
implementation
uses
// Delphi
SysUtils,
// Project
DB.UMain, DB.USnippet, UCSSUtils, UHTMLDetailUtils, UHTMLTemplate, UHTMLUtils,
UJavaScriptUtils, UQuery, USnippetHTML, UStrUtils;
type
/// <summary>
/// Abstract base class for classes that generate a view's HTML by updating a
/// template stored in resources.
/// </summary>
TDetailPageTpltHTML = class abstract(TDetailPageHTML)
strict protected
/// <summary>Returns name of resource containing template.</summary>
/// <remarks>Resource must be stored as HTML resource.</remarks>
function GetTemplateResName: string; virtual; abstract;
/// <summary>Replaces place-holders in a template with suitable values,
/// depending on view.</summary>
/// <param name="Tplt">THTMLTemplate [in] Object containing template to
/// be updated.</param>
/// <remarks>Implementors must replace every placeholder in template with
/// required values. This is done by manipulating Tplt object.</remarks>
procedure ResolvePlaceholders(const Tplt: THTMLTemplate); virtual; abstract;
public
/// <summary>Generates and returns HTML representing view passed to
/// constructor.</summary>
function Generate: string; override;
end;
type
/// <summary>
/// Generates no HTML.
/// </summary>
/// <remarks>
/// Used whenever a blank HTML page is required.
/// </remarks>
TNulPageHTML = class sealed(TDetailPageHTML)
public
/// <summary>Returns empty string, representing an empty document body.
/// </summary>
function Generate: string; override;
end;
type
/// <summary>
/// Generates HTML body for page displayed for a new, empty, detail pane tab.
/// </summary>
TNewTabPageHTML = class sealed(TDetailPageHTML)
public
/// <summary>Returns fixed HTML informing of a new, empty tab.</summary>
function Generate: string; override;
end;
type
/// <summary>
/// Generates HTML body of welcome page.
/// </summary>
TWelcomePageHTML = class sealed(TDetailPageTpltHTML)
strict protected
/// <summary>Returns name of welcome page template resource.</summary>
function GetTemplateResName: string; override;
/// <summary>Replaces place-holders in welcome page template with suitable
/// values.</summary>
procedure ResolvePlaceholders(const Tplt: THTMLTemplate); override;
end;
type
/// <summary>
/// Generates HTML body of page displayed after database has been updated.
/// </summary>
TDBUpdatedPageHTML = class sealed(TDetailPageHTML)
public
/// <summary>Returns fixed HTML informaing that database has been updated.
/// </summary>
function Generate: string; override;
end;
type
/// <summary>
/// Generates HTML body of a page that provides information about a snippet.
/// </summary>
TSnippetInfoPageHTML = class sealed(TDetailPageTpltHTML)
strict private
/// <summary>Returns reference to snippet that is being rendered.</summary>
/// <remarks>Snippet is recorded in View property.</remarks>
function GetSnippet: TSnippet;
strict protected
/// <summary>Returns name of snippet information template resource.
/// </summary>
function GetTemplateResName: string; override;
/// <summary>Replaces place-holders in snippet information template with
/// suitable values.</summary>
procedure ResolvePlaceholders(const Tplt: THTMLTemplate); override;
end;
type
/// <summary>
/// Abstract base class for classes that generate HTML bodies for pages that
/// display a list of snippets.
/// </summary>
/// <remarks>
/// Snippet list may be empty.
/// </remarks>
TSnippetListPageHTML = class abstract(TDetailPageTpltHTML)
strict private
var
/// <summary>Value of Snippets property.</summary>
fSnippets: TSnippetList;
strict protected
/// <summary>Creates and returns a sequence of HTML table rows each
/// containing a link to one of the snippets in the list, along with its
/// description.</summary>
function SnippetTableInner: string;
/// <summary>Creates and returns an HTML table row containing one cell that
/// links to given snippet and another containing snippet's description.
/// </summary>
function SnippetTableRow(const Snippet: TSnippet): string;
/// <summary>Constructs a list of all snippets to be displayed and stores
/// in in Snippets property.</summary>
procedure BuildSnippetList; virtual; abstract;
/// <summary>List of all snippets to be displayed.</summary>
property Snippets: TSnippetList read fSnippets;
/// <summary>Returns name of template resource for either an empty or none-
/// empty list of snippets.</summary>
function GetTemplateResName: string; override;
/// <summary>Replaces place-holders in chosen template with suitable
/// values.</summary>
procedure ResolvePlaceholders(const Tplt: THTMLTemplate); override;
abstract;
/// <summary>Checks if there are snippets in snippets list.</summary>
function HaveSnippets: Boolean;
public
/// <summary>Object constructor. Sets up object to render snippet list
/// represented by given view.</summary>
/// <remarks>View must contain a list of snippets which may be empty.
/// </remarks>
constructor Create(View: IView); override;
/// <summary>Object destructor. Tears down object.</summary>
destructor Destroy; override;
end;
type
/// <summary>
/// Generates HTML body of a page that displays information about a category
/// grouping of snippets.
/// </summary>
/// <remarks>
/// List of snippets contained in grouping may be empty.
/// </remarks>
TCategoryPageHTML = class sealed(TSnippetListPageHTML)
strict protected
/// <summary>Replaces place-holders in chosen template with suitable
/// values.</summary>
procedure ResolvePlaceholders(const Tplt: THTMLTemplate); override;
/// <summary>Stores all snippets in category grouping in Snippets
/// property.</summary>
procedure BuildSnippetList; override;
end;
type
/// <summary>
/// Generates HTML body of a page that displays information about an
/// alphabetical grouping of snippets.
/// </summary>
/// <remarks>
/// List of snippets contained in grouping may be empty.
/// </remarks>
TAlphaListPageHTML = class sealed(TSnippetListPageHTML)
strict protected
/// <summary>Replaces place-holders in chosen template with suitable
/// values.</summary>
procedure ResolvePlaceholders(const Tplt: THTMLTemplate); override;
/// <summary>Stores all snippets in alphabetical grouping in Snippets
/// property.</summary>
procedure BuildSnippetList; override;
end;
type
/// <summary>
/// Generates HTML body of a page that displays information about a grouping
/// of snippets by snippet kind.
/// </summary>
/// <remarks>
/// List of snippets contained in grouping may be empty.
/// </remarks>
TSnipKindPageHTML = class sealed(TSnippetListPageHTML)
strict protected
/// <summary>Replaces place-holders in chosen template with suitable
/// values.</summary>
procedure ResolvePlaceholders(const Tplt: THTMLTemplate); override;
/// <summary>Stores all snippets in snippet kind grouping in Snippets
/// property.</summary>
procedure BuildSnippetList; override;
end;
{ TDetailPageHTMLFactory }
class function TDetailPageHTMLFactory.CreateGenerator(
View: IView): TDetailPageHTML;
begin
Result := nil;
if Supports(View, INulView) then
Result := TNulPageHTML.Create(View)
else if Supports(View, IStartPageView) then
Result := TWelcomePageHTML.Create(View)
else if Supports(View, ISnippetView) then
Result := TSnippetInfoPageHTML.Create(View)
else if Supports(View, ICategoryView) then
Result := TCategoryPageHTML.Create(View)
else if Supports(View, ISnippetKindView) then
Result := TSnipKindPageHTML.Create(View)
else if Supports(View, IInitialLetterView) then
Result := TAlphaListPageHTML.Create(View)
else if Supports(View, INewTabView) then
Result := TNewTabPageHTML.Create(View)
else if Supports(View, IDBUpdateInfoView) then
Result := TDBUpdatedPageHTML.Create(View);
Assert(Assigned(Result),
'TDetailPageHTMLFactory.CreateGenerator: No HTML generator');
end;
{ TDetailPageHTML }
constructor TDetailPageHTML.Create(View: IView);
begin
Assert(Assigned(View), ClassName + '.Create: View is nil');
inherited Create;
fView := View;
end;
{ TDetailPageTpltHTML }
function TDetailPageTpltHTML.Generate: string;
var
Tplt: THTMLTemplate; // encapsulates HTML template
begin
// Create template object from required HTML template resource
Tplt := THTMLTemplate.Create(HInstance, GetTemplateResName);
try
// Resolve all placeholders and write resulting HTML to stream
ResolvePlaceholders(Tplt);
Result := Tplt.HTML;
finally
Tplt.Free;
end;
end;
{ TNulPageHTML }
function TNulPageHTML.Generate: string;
begin
Result := '';
end;
{ TNewTabPageHTML }
function TNewTabPageHTML.Generate: string;
begin
Result := MakeCompoundTag(
'div',
THTMLAttributes.Create('id', 'newtab'),
MakeSafeHTMLText(View.Description)
);
end;
{ TWelcomePageHTML }
function TWelcomePageHTML.GetTemplateResName: string;
begin
Result := 'welcome-tplt.html';
end;
procedure TWelcomePageHTML.ResolvePlaceholders(const Tplt: THTMLTemplate);
var
HaveMainDB: Boolean; // flag indicating if main database is available
HaveUserDB: Boolean; // flag indicating if user database has entries
begin
HaveMainDB := Database.Snippets.Count(False) > 0;
HaveUserDB := Database.Snippets.Count(True) > 0;
Tplt.ResolvePlaceholderHTML(
'NoUserDB', TCSS.BlockDisplayProp(not HaveUserDB)
);
Tplt.ResolvePlaceholderHTML(
'NoMainDB', TCSS.BlockDisplayProp(not HaveMainDB)
);
Tplt.ResolvePlaceholderHTML(
'Intro', TCSS.BlockDisplayProp(HaveMainDB or HaveUserDB)
);
Tplt.ResolvePlaceholderHTML(
'Disclaimer', TCSS.BlockDisplayProp(HaveMainDB)
);
Tplt.ResolvePlaceholderHTML(
'UpdateDB', TCSS.BlockDisplayProp(HaveMainDB)
);
Tplt.ResolvePlaceholderHTML(
'DownloadDB', TCSS.BlockDisplayProp(not HaveMainDB)
);
end;
{ TDBUpdatedPageHTML }
function TDBUpdatedPageHTML.Generate: string;
resourcestring
sBody = 'The database has been updated successfully.';
begin
Result :=
MakeCompoundTag('h1', View.Description)
+
MakeCompoundTag('p', sBody);
end;
{ TSnippetInfoPageHTML }
function TSnippetInfoPageHTML.GetSnippet: TSnippet;
begin
Assert(Supports(View, ISnippetView),
ClassName + '.Create: View is not snippet');
Result := (View as ISnippetView).Snippet;
end;
function TSnippetInfoPageHTML.GetTemplateResName: string;
begin
Result := 'info-snippet-tplt.html';
end;
procedure TSnippetInfoPageHTML.ResolvePlaceholders(const Tplt: THTMLTemplate);
var
SnippetHTML: TSnippetHTML; // object used to generate HTML for snippet
begin
if GetSnippet.UserDefined then
Tplt.ResolvePlaceholderHTML('SnippetCSSClass', 'userdb')
else
Tplt.ResolvePlaceholderHTML('SnippetCSSClass', 'maindb');
Tplt.ResolvePlaceholderHTML(
'EditLink', TCSS.BlockDisplayProp(GetSnippet.UserDefined)
);
Tplt.ResolvePlaceholderText(
'EditEventHandler', JSLiteralFunc('editSnippet', [GetSnippet.Name])
);
SnippetHTML := TSnippetHTML.Create(GetSnippet);
try
Tplt.ResolvePlaceholderHTML('SnippetName', SnippetHTML.SnippetName);
Tplt.ResolvePlaceholderHTML('Kind', SnippetHTML.SnippetKind);
Tplt.ResolvePlaceholderHTML('Category', SnippetHTML.Category);
Tplt.ResolvePlaceholderHTML('Description', SnippetHTML.Description);
Tplt.ResolvePlaceholderHTML('SourceCode', SnippetHTML.SourceCode);
Tplt.ResolvePlaceholderHTML('Units', SnippetHTML.Units);
Tplt.ResolvePlaceholderHTML('Depends', SnippetHTML.Depends);
Tplt.ResolvePlaceholderHTML('XRefs', SnippetHTML.XRefs);
Tplt.ResolvePlaceholderHTML(
'CompilerTableRows', SnippetHTML.CompileResults
);
Tplt.ResolvePlaceholderHTML('Extra', SnippetHTML.Extra);
Tplt.ResolvePlaceholderHTML(
'ShowCompilations', TCSS.BlockDisplayProp(GetSnippet.CanCompile)
);
finally
SnippetHTML.Free;
end;
end;
{ TSnippetListPageHTML }
constructor TSnippetListPageHTML.Create(View: IView);
begin
inherited;
fSnippets := TSnippetList.Create;
BuildSnippetList;
end;
destructor TSnippetListPageHTML.Destroy;
begin
fSnippets.Free;
inherited;
end;
function TSnippetListPageHTML.GetTemplateResName: string;
begin
if HaveSnippets then
Result := 'info-snippet-list-tplt.html'
else
Result := 'info-empty-selection-tplt.html';
end;
function TSnippetListPageHTML.HaveSnippets: Boolean;
begin
Result := not Snippets.IsEmpty;
end;
function TSnippetListPageHTML.SnippetTableInner: string;
var
Snippet: TSnippet; // each snippet in list
begin
Result := '';
for Snippet in Snippets do
Result := Result + SnippetTableRow(Snippet);
end;
function TSnippetListPageHTML.SnippetTableRow(const Snippet: TSnippet): string;
var
SnippetHTML: TSnippetHTML;
NameCellAttrs: IHTMLAttributes;
DescCellAttrs: IHTMLAttributes;
begin
NameCellAttrs := THTMLAttributes.Create('class', 'name');
DescCellAttrs := THTMLAttributes.Create('class', 'desc');
SnippetHTML := TSnippetHTML.Create(Snippet);
try
Result := MakeCompoundTag(
'tr',
MakeCompoundTag(
'td', NameCellAttrs, SnippetALink(Snippet.Name, Snippet.UserDefined)
)
+ MakeCompoundTag('td', DescCellAttrs, SnippetHTML.Description)
);
finally
SnippetHTML.Free;
end;
end;
{ TCategoryPageHTML }
procedure TCategoryPageHTML.BuildSnippetList;
begin
Query.GetCatSelection((View as ICategoryView).Category, Snippets);
end;
procedure TCategoryPageHTML.ResolvePlaceholders(const Tplt: THTMLTemplate);
/// Returns name of CSS class used in H1 heading.
function H1ClassName: string;
begin
if (View as ICategoryView).Category.UserDefined then
Result := 'userdb'
else
Result := 'maindb';
end;
resourcestring
sNarrative = 'List of selected snippets in this category.';
sNote = 'The current selection contains no snippets in this category.';
begin
Tplt.ResolvePlaceholderHTML('H1Class', H1ClassName);
Tplt.ResolvePlaceholderText('Heading', View.Description);
if HaveSnippets then
begin
Tplt.ResolvePlaceholderText('Narrative', sNarrative);
Tplt.ResolvePlaceholderHTML('SnippetList', SnippetTableInner);
end
else
Tplt.ResolvePlaceholderText('Note', sNote);
end;
{ TAlphaListPageHTML }
procedure TAlphaListPageHTML.BuildSnippetList;
var
Snippet: TSnippet; // each snippet in current query
begin
Snippets.Clear;
for Snippet in Query.Selection do
begin
if Snippet.Name[1] = (View as IInitialLetterView).InitialLetter then
Snippets.Add(Snippet);
end;
end;
procedure TAlphaListPageHTML.ResolvePlaceholders(const Tplt: THTMLTemplate);
resourcestring
sNarrative = 'List of selected snippets beginning with the letter %s.';
sNote = 'The are no snippets in the current selection that begin with the '
+ 'letter %s.';
begin
Tplt.ResolvePlaceholderHTML('H1Class', 'maindb');
Tplt.ResolvePlaceholderText('Heading', View.Description);
if HaveSnippets then
begin
Tplt.ResolvePlaceholderText(
'Narrative',
Format(sNarrative, [(View as IInitialLetterView).InitialLetter.Letter])
);
Tplt.ResolvePlaceholderHTML('SnippetList', SnippetTableInner);
end
else
Tplt.ResolvePlaceholderText(
'Note', Format(sNote, [(View as IInitialLetterView).InitialLetter.Letter])
);
end;
{ TSnipKindPageHTML }
procedure TSnipKindPageHTML.BuildSnippetList;
var
Snippet: TSnippet; // each snippet in current query
begin
Snippets.Clear;
for Snippet in Query.Selection do
begin
if Snippet.Kind = (View as ISnippetKindView).KindInfo.Kind then
Snippets.Add(Snippet);
end;
end;
procedure TSnipKindPageHTML.ResolvePlaceholders(const Tplt: THTMLTemplate);
resourcestring
sHeading = '%s Snippets';
sNarrative = 'List of all %s snippets in the current selection.';
sNote = 'There are no %s snippets in the current selection.';
begin
Tplt.ResolvePlaceholderHTML('H1Class', 'maindb');
Tplt.ResolvePlaceholderText(
'Heading', Format(sHeading, [View .Description])
);
if HaveSnippets then
begin
Tplt.ResolvePlaceholderText(
'Narrative',
Format(sNarrative, [StrToLower(View.Description)])
);
Tplt.ResolvePlaceholderHTML('SnippetList', SnippetTableInner);
end
else
Tplt.ResolvePlaceholderText(
'Note', Format(sNote, [StrToLower(View.Description)])
);
end;
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.