mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-22 08:29:29 +01:00
* Htmltools
This commit is contained in:
parent
db61c1d71d
commit
b5cccb39bd
240
components/pas2js/idehtmltools.pas
Normal file
240
components/pas2js/idehtmltools.pas
Normal file
@ -0,0 +1,240 @@
|
|||||||
|
unit idehtmltools;
|
||||||
|
|
||||||
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
Classes, SysUtils, contnrs, ProjectIntf;
|
||||||
|
|
||||||
|
Const
|
||||||
|
// Options for HTML -> class generation
|
||||||
|
SHTML2FormOptions = 'HTML2FormOptions';
|
||||||
|
// HTML file associated with a project file. This is a convention
|
||||||
|
SDesignHTMLFile = 'DesignHTMLFile';
|
||||||
|
|
||||||
|
Type
|
||||||
|
|
||||||
|
{ TIDEHTMLTools }
|
||||||
|
|
||||||
|
TIDEHTMLTools = class(TPersistent)
|
||||||
|
Private
|
||||||
|
Type
|
||||||
|
|
||||||
|
{ TTagCacheItem }
|
||||||
|
|
||||||
|
TTagCacheItem = class
|
||||||
|
FFilename : String;
|
||||||
|
FTimeStamp : TDateTime;
|
||||||
|
FTags : TStringArray;
|
||||||
|
Constructor Create(Const aFilename : String; aTimeStamp : TDateTime; aTags: TStringArray);
|
||||||
|
function IsValid : Boolean;
|
||||||
|
end;
|
||||||
|
function HasCached(const aFileName: string; aList: TStrings): Boolean;
|
||||||
|
Private
|
||||||
|
FTagCache : TFPObjectHashTable;
|
||||||
|
Public
|
||||||
|
class function GetDefaultHTMLDesignFile(aFile: TLazProjectFile): String;
|
||||||
|
class function GetDefaultHTML2ClassFile(aFile: TLazProjectFile): String;
|
||||||
|
class function GetProjectHTMLFile : String;
|
||||||
|
Public
|
||||||
|
Constructor Create;
|
||||||
|
Procedure GetTagIDs(Const aFileName : string; aList : TStrings);
|
||||||
|
Function GetTagIDs(Const aFileName : string) : TStringArray;
|
||||||
|
class function TagToIdentifier(aTag: String): String;
|
||||||
|
function GetHTMLFileForProjectFile(aFile: TLazProjectFile): String;
|
||||||
|
Function GetHTMLFileForComponent(aComponent : TComponent) : String;
|
||||||
|
|
||||||
|
Procedure ClearCache;
|
||||||
|
end;
|
||||||
|
|
||||||
|
Var
|
||||||
|
HTMLTools : TIDEHTMLTools;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
uses LazIDEIntf, forms, idehtml2class, pjscontroller;
|
||||||
|
|
||||||
|
{ TIDEHTMLTools.TTagCacheItem }
|
||||||
|
|
||||||
|
constructor TIDEHTMLTools.TTagCacheItem.Create(const aFilename: String;
|
||||||
|
aTimeStamp: TDateTime; aTags: TStringArray);
|
||||||
|
begin
|
||||||
|
FTimeStamp:=aTimeStamp;
|
||||||
|
FFilename:=aFileName;
|
||||||
|
FTags:=aTags;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TIDEHTMLTools.TTagCacheItem.IsValid: Boolean;
|
||||||
|
|
||||||
|
Var
|
||||||
|
aDateTime : TDateTime;
|
||||||
|
|
||||||
|
begin
|
||||||
|
Result:=FileAge(FFileName,aDateTime) and (aDateTime<=FTimeStamp);
|
||||||
|
end;
|
||||||
|
|
||||||
|
{ TIDEHTMLTools }
|
||||||
|
|
||||||
|
constructor TIDEHTMLTools.Create;
|
||||||
|
begin
|
||||||
|
FTagCache:=TFPObjectHashTable.Create(True);
|
||||||
|
|
||||||
|
end;
|
||||||
|
|
||||||
|
Class Function TIDEHTMLTools.TagToIdentifier(aTag : String) : String;
|
||||||
|
|
||||||
|
Var
|
||||||
|
C : Char;
|
||||||
|
|
||||||
|
begin
|
||||||
|
Result:='';
|
||||||
|
for C in aTag do
|
||||||
|
if C in ['_','a'..'z','A'..'Z','0'..'9'] then
|
||||||
|
Result:=Result+C
|
||||||
|
else
|
||||||
|
Result:=Result+'_';
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TIDEHTMLTools.HasCached(const aFileName: string; aList: TStrings
|
||||||
|
): Boolean;
|
||||||
|
|
||||||
|
Var
|
||||||
|
Itm : TTagCacheItem;
|
||||||
|
|
||||||
|
begin
|
||||||
|
Itm:=TTagCacheItem(FTagCache.Items[aFileName]);
|
||||||
|
Result:=Assigned(Itm);
|
||||||
|
if Result then
|
||||||
|
begin
|
||||||
|
Result:=Itm.IsValid;
|
||||||
|
if Result then
|
||||||
|
aList.AddStrings(Itm.FTags,True)
|
||||||
|
else
|
||||||
|
FTagCache.Delete(aFileName);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
procedure TIDEHTMLTools.GetTagIDs(const aFileName: string; aList: TStrings);
|
||||||
|
|
||||||
|
Var
|
||||||
|
Itm : TTagCacheItem;
|
||||||
|
|
||||||
|
begin
|
||||||
|
If Not HasCached(aFileName,aList) then
|
||||||
|
with THTMLExtractIDS.Create(Nil) do
|
||||||
|
try
|
||||||
|
ExtractIDS(aFileName,aList);
|
||||||
|
Itm:=TTagCacheItem.Create(aFileName,Now,aList.ToStringArray);
|
||||||
|
FTagCache.Add(aFileName,Itm);
|
||||||
|
finally
|
||||||
|
Free;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TIDEHTMLTools.GetTagIDs(const aFileName: string): TStringArray;
|
||||||
|
|
||||||
|
Var
|
||||||
|
aList : TStrings;
|
||||||
|
|
||||||
|
begin
|
||||||
|
aList:=TStringList.Create;
|
||||||
|
try
|
||||||
|
GetTagIDS(aFileName,aList);
|
||||||
|
Result:=aList.ToStringArray;
|
||||||
|
finally
|
||||||
|
aList.Free;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
class function TIDEHTMLTools.GetDefaultHTMLDesignFile(aFile: TLazProjectFile
|
||||||
|
): String;
|
||||||
|
|
||||||
|
begin
|
||||||
|
Result:=aFile.CustomData.Values[SDesignHTMLFile];
|
||||||
|
end;
|
||||||
|
|
||||||
|
class function TIDEHTMLTools.GetDefaultHTML2ClassFile(aFile : TLazProjectFile) : String;
|
||||||
|
|
||||||
|
Var
|
||||||
|
aOptions : THTML2ClassOptions;
|
||||||
|
S : String;
|
||||||
|
|
||||||
|
begin
|
||||||
|
Result:='';
|
||||||
|
S:=aFile.CustomData.Values[SHTML2FormOptions];
|
||||||
|
if (S<>'') then
|
||||||
|
begin
|
||||||
|
aOptions:=THTML2ClassOptions.Create;
|
||||||
|
try
|
||||||
|
aOptions.FromJSON(S);
|
||||||
|
Result:=aOptions.HTMLFileName;
|
||||||
|
finally
|
||||||
|
aOptions.Free;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
class function TIDEHTMLTools.GetProjectHTMLFile: String;
|
||||||
|
|
||||||
|
Var
|
||||||
|
Prj : TLazProject;
|
||||||
|
aFile : TLazProjectFile;
|
||||||
|
I : Integer;
|
||||||
|
|
||||||
|
begin
|
||||||
|
Result:='';
|
||||||
|
Prj:=LazarusIDE.ActiveProject;
|
||||||
|
if (Prj=Nil) then
|
||||||
|
exit;
|
||||||
|
I:=0;
|
||||||
|
While (Result='') and (I<Prj.FileCount) do
|
||||||
|
begin
|
||||||
|
aFile:=Prj.Files[I];
|
||||||
|
Writeln('Checking ',aFile.ClassName,', FileName: ',aFile.FileName,', FullFileName: ',aFile.GetFullFilename,', Custom Data: ',aFile.CustomData[PJSIsProjectHTMLFile]);
|
||||||
|
if aFile.CustomData[PJSIsProjectHTMLFile]<>'' then
|
||||||
|
Result:=aFile.Filename;
|
||||||
|
Inc(I);
|
||||||
|
end;
|
||||||
|
if Result='' then
|
||||||
|
begin
|
||||||
|
Result:=Prj.CustomData.Values[PJSProjectHTMLFile];
|
||||||
|
if not FileExists(Result) then
|
||||||
|
Result:='';
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TIDEHTMLTools.GetHTMLFileForProjectFile(aFile : TLazProjectFile): String;
|
||||||
|
|
||||||
|
|
||||||
|
begin
|
||||||
|
// We should really have a pluggable mechanism.
|
||||||
|
Result:=GetDefaultHTMLDesignFile(aFile);
|
||||||
|
if Result='' then
|
||||||
|
Result:=GetDefaultHTML2ClassFile(aFile);
|
||||||
|
if Result='' then
|
||||||
|
Result:=GetProjectHTMLFile;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TIDEHTMLTools.GetHTMLFileForComponent(aComponent: TComponent): String;
|
||||||
|
|
||||||
|
Var
|
||||||
|
aFile : TLazProjectFile;
|
||||||
|
begin
|
||||||
|
aFile:=LazarusIDE.GetProjectFileWithRootComponent(aComponent.Owner);
|
||||||
|
Result:=GetHTMLFileForProjectFile(aFile);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TIDEHTMLTools.ClearCache;
|
||||||
|
begin
|
||||||
|
FTagCache.Clear;
|
||||||
|
end;
|
||||||
|
|
||||||
|
Initialization
|
||||||
|
HTMLTools:=TIDEHTMLTools.Create;
|
||||||
|
|
||||||
|
Finalization
|
||||||
|
HTMLtools.Free;
|
||||||
|
end.
|
||||||
|
|
||||||
@ -18,7 +18,7 @@
|
|||||||
<Description Value="Adds a Lazarus project for pas2js browser applications."/>
|
<Description Value="Adds a Lazarus project for pas2js browser applications."/>
|
||||||
<License Value="GPL-2"/>
|
<License Value="GPL-2"/>
|
||||||
<Version Major="1" Release="2"/>
|
<Version Major="1" Release="2"/>
|
||||||
<Files Count="20">
|
<Files Count="21">
|
||||||
<Item1>
|
<Item1>
|
||||||
<Filename Value="pjsdsgnregister.pas"/>
|
<Filename Value="pjsdsgnregister.pas"/>
|
||||||
<HasRegisterProc Value="True"/>
|
<HasRegisterProc Value="True"/>
|
||||||
@ -102,6 +102,10 @@
|
|||||||
<Filename Value="idedtstopas.pas"/>
|
<Filename Value="idedtstopas.pas"/>
|
||||||
<UnitName Value="idedtstopas"/>
|
<UnitName Value="idedtstopas"/>
|
||||||
</Item20>
|
</Item20>
|
||||||
|
<Item21>
|
||||||
|
<Filename Value="idehtmltools.pas"/>
|
||||||
|
<UnitName Value="idehtmltools"/>
|
||||||
|
</Item21>
|
||||||
</Files>
|
</Files>
|
||||||
<CompatibilityMode Value="True"/>
|
<CompatibilityMode Value="True"/>
|
||||||
<i18n>
|
<i18n>
|
||||||
|
|||||||
@ -13,7 +13,7 @@ uses
|
|||||||
frmpas2jswebservers, strpas2jsdesign, pjsprojectoptions,
|
frmpas2jswebservers, strpas2jsdesign, pjsprojectoptions,
|
||||||
frmPas2jsAtomPackageSettings, regpas2jsatom, regpas2jsvscode,
|
frmPas2jsAtomPackageSettings, regpas2jsatom, regpas2jsvscode,
|
||||||
frmPas2jsVSCodeExtensionSettings, frmhtmltoform, idehtml2class, frmdtstopas,
|
frmPas2jsVSCodeExtensionSettings, frmhtmltoform, idehtml2class, frmdtstopas,
|
||||||
idedtstopas, LazarusPackageIntf;
|
idedtstopas, idehtmltools, LazarusPackageIntf;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
|
|||||||
@ -138,18 +138,19 @@ var
|
|||||||
Const
|
Const
|
||||||
// Position in project options dialog.
|
// Position in project options dialog.
|
||||||
Pas2JSOptionsIndex = ProjectOptionsMisc + 100;
|
Pas2JSOptionsIndex = ProjectOptionsMisc + 100;
|
||||||
SHTML2FormOptions = 'HTML2FormOptions';
|
|
||||||
|
|
||||||
procedure Register;
|
procedure Register;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
uses
|
uses
|
||||||
|
ComponentEditors,
|
||||||
dialogs,
|
dialogs,
|
||||||
frmpas2jswebservers,
|
frmpas2jswebservers,
|
||||||
frmpas2jsnodejsprojectoptions,
|
frmpas2jsnodejsprojectoptions,
|
||||||
frmpas2jsbrowserprojectoptions,
|
frmpas2jsbrowserprojectoptions,
|
||||||
pjsprojectoptions,
|
pjsprojectoptions,
|
||||||
|
idehtmltools,
|
||||||
frmhtmltoform,
|
frmhtmltoform,
|
||||||
fpjson, pjscontroller, srceditorintf, strpas2jsdesign, IDECommands, ToolbarIntf, MenuIntf;
|
fpjson, pjscontroller, srceditorintf, strpas2jsdesign, IDECommands, ToolbarIntf, MenuIntf;
|
||||||
|
|
||||||
@ -232,6 +233,7 @@ begin
|
|||||||
'PrjHTMLFormClassRefreshAll',pjsRefreshAllClassesFromHTML,@MenuHandler.OnRefreshProjHTMLFormAllContext);
|
'PrjHTMLFormClassRefreshAll',pjsRefreshAllClassesFromHTML,@MenuHandler.OnRefreshProjHTMLFormAllContext);
|
||||||
ProjectInspectorItemsMenuRoot.AddHandlerOnShow(@MenuHandler.OnPrjInspPopup);
|
ProjectInspectorItemsMenuRoot.AddHandlerOnShow(@MenuHandler.OnPrjInspPopup);
|
||||||
|
|
||||||
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{ TPas2JSDTSToPasUnitDef }
|
{ TPas2JSDTSToPasUnitDef }
|
||||||
@ -403,6 +405,7 @@ begin
|
|||||||
if aFileName='' then
|
if aFileName='' then
|
||||||
exit;
|
exit;
|
||||||
aOptions.HTMLFileName:=aFileName;
|
aOptions.HTMLFileName:=aFileName;
|
||||||
|
aFile.CustomData.Values[SDesignHTMLFile]:=aFileName;
|
||||||
aFile.CustomData.Values[SHTML2FormOptions]:=aOptions.asJSON(False);
|
aFile.CustomData.Values[SHTML2FormOptions]:=aOptions.asJSON(False);
|
||||||
LazarusIDE.ActiveProject.Modified:=True;
|
LazarusIDE.ActiveProject.Modified:=True;
|
||||||
end;
|
end;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user