Вот что у нас получится, мы обращаемся по адресу
1 |
http://localhost:8077/?pageID=1&pageName=Actions |
И получаем определенную страницу
Под страницами будем понимать некий статический контент, который будет отображаться при уникальном URL.
UNIGUI это SPA приложение, то есть Single Page Application. В своей основе это одна страница. Но уникальные запросы к серверу позволяют отображать статические странички, что хорошо для поисковой SEO оптимизации.
Посмотрим, как это можно реализовать в UNIGUI.
В MainModule OnCreate создадим набор страниц
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
procedure TUniMainModule.UniGUIMainModuleCreate(Sender: TObject); var protocolServerPort: string; begin FPagesSL := TStringList.Create; FProtocol := 'http'; FServer := 'localhost'; FPort := '8077'; protocolServerPort := FProtocol + '://' + FServer + ':' + FPort; FPagesSL.Add(protocolServerPort + '?pageID=0&pageName=MainPage'); FPagesSL.Add(protocolServerPort + '?pageID=1&pageName=Actions'); FPagesSL.Add(protocolServerPort + '?pageID=2&pageName=Catalog'); FPagesSL.Add(protocolServerPort + '?pageID=3&pageName=Payment'); FPagesSL.Add(protocolServerPort + '?pageID=4&pageName=Delivery'); FPagesSL.Add(protocolServerPort + '?pageID=5&pageName=Education'); FPagesSL.Add(protocolServerPort + '?pageID=6&pageName=Shops'); FPagesSL.Add(protocolServerPort + '?pageID=7&pageName=Service'); end; |
Дальше, в определенном месте, где нам нужно сделать линк, пишем следующее
1 2 3 4 5 |
procedure TTopMenuElement.lMenuElementClick(Sender: TObject); begin //UniSession.AddJS('location.href=''http://google.com'' '); UniSession.AddJS('location.href=''' + URL + ''' '); end; |
и подставляем в URL ту или иную страницу из списка, созданного выше.
Теперь самое интересное, на серверной стороне, нам нужно сделать некоторую обработку, которая бы открывала тот или иной контент, в зависимости от набора параметров в URL.
Сделаем это в MainForm. OnShow
1 2 3 4 5 6 7 8 9 10 11 12 |
procedure TMainForm.UniFormShow(Sender: TObject); var pageID: Integer; begin if UniApplication.Parameters.Values['pageID'] <> '' then begin pageID := UniApplication.Parameters.Values['pageID'].ToInteger; FCurrPage := FPagesDM.GetPage(pageID); end else FCurrPage := FPagesDM.GetPage(0); end; |
Что у нас здесь происходит? Мы пытаемся прочитать параметр и загрузить по нему тот или иной контент.
Кому интересно, как выдавать тот или иной контент, в зависимости от фрэйма, публикую здесь полный модуль uPagesDM.
Основной смысл – убить все существующие фрэймы, если они ассоциированы и создать новый.
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 |
unit uPagesDM; interface uses SysUtils, Classes, uPageTemplate, System.Generics.Collections, // uMainPageContent, // uActionsPageContent, // uCatalogPageContent, // uPaymentsPageContent, // uDeliveryPageContent, // uEducationPageContent, // uShopsPageContent, // uServicePageContent, // uniScrollBox; type TPagesDM = class(TDataModule) private FMainPage: TPageTemplate; FMainPageContent: TMainPageContent; // FActionsPage: TPageTemplate; FActionsPageContent: TActionsPageContent; // FCatalogPage: TPageTemplate; FCatalogPageContent: TCatalogPageContent; // FPaymentsPage: TPageTemplate; FPaymentsPageContent: TPaymentsPageContent; // FDeliveryPage: TPageTemplate; FDeliveryPageContent: TDeliveryPageContent; // FEducationPage: TPageTemplate; FEducationPageContent: TEducationPageContent; // FShopsPage: TPageTemplate; FShopsPageContent: TShopsPageContent; // FServicePage: TPageTemplate; FServicePageContent: TServicePageContent; // FPageParent: TUniScrollBox; { Private declarations } procedure killFrames; procedure SetPageParent(const Value: TUniScrollBox); public { Public declarations } function GetPage(aPageIndex: integer): TPageTemplate; procedure OnAfterRender(aWidth, aHeight: integer); procedure OnBrowserResize(aWidth, aHeight, aOldWidth, aOldHeight: integer); property PageParent: TUniScrollBox read FPageParent write SetPageParent; end; implementation uses Vcl.Controls; {$R *.dfm} { TPagesDM } function TPagesDM.GetPage(aPageIndex: integer): TPageTemplate; begin case aPageIndex of 0: begin killFrames(); FMainPage := TPageTemplate.Create(FPageParent); FMainPage.Parent := FPageParent; FMainPageContent := TMainPageContent.Create(FMainPage); FMainPageContent.Parent := FMainPage; FMainPageContent.Page := FMainPage; FMainPageContent.Align := alClient; // init Result := FMainPage; end; 1: begin killFrames(); FActionsPage := TPageTemplate.Create(FPageParent); FActionsPage.Parent := FPageParent; FActionsPageContent := TActionsPageContent.Create(FActionsPage); FActionsPageContent.Parent := FActionsPage; FActionsPageContent.Page := FActionsPage; FActionsPageContent.Align := alClient; // init Result := FActionsPage; end; 2: begin killFrames(); FCatalogPage := TPageTemplate.Create(FPageParent); FCatalogPage.Parent := FPageParent; // FCatalogPageContent := TCatalogPageContent.Create(FCatalogPage); FCatalogPageContent.Parent := FCatalogPage; FCatalogPageContent.Page := FCatalogPage; FCatalogPageContent.Align := alClient; // init Result := FCatalogPage; end; 3: begin killFrames(); FPaymentsPage := TPageTemplate.Create(FPageParent); FPaymentsPage.Parent := FPageParent; // FPaymentsPageContent := TPaymentsPageContent.Create(FPaymentsPage); FPaymentsPageContent.Parent := FPaymentsPage; FPaymentsPageContent.Page := FPaymentsPage; FPaymentsPageContent.Align := alClient; // init Result := FPaymentsPage; end; 4: begin killFrames(); FDeliveryPage := TPageTemplate.Create(FPageParent); FDeliveryPage.Parent := FPageParent; // FDeliveryPageContent := TDeliveryPageContent.Create(FDeliveryPage); FDeliveryPageContent.Parent := FDeliveryPage; FDeliveryPageContent.Page := FDeliveryPage; FDeliveryPageContent.Align := alClient; // init Result := FDeliveryPage; end; 5: begin //FEducationPageContent killFrames(); FEducationPage := TPageTemplate.Create(FPageParent); FEducationPage.Parent := FPageParent; // FEducationPageContent := TEducationPageContent.Create(FEducationPage); FEducationPageContent.Parent := FEducationPage; FEducationPageContent.Page := FEducationPage; FEducationPageContent.Align := alClient; // init Result := FEducationPage; end; 6: begin killFrames(); FShopsPage := TPageTemplate.Create(FPageParent); FShopsPage.Parent := FPageParent; // FShopsPageContent := TShopsPageContent.Create(FShopsPage); FShopsPageContent.Parent := FShopsPage; FShopsPageContent.Page := FShopsPage; FShopsPageContent.Align := alClient; // init Result := FShopsPage; end; 7: begin killFrames(); FServicePage := TPageTemplate.Create(FPageParent); FServicePage.Parent := FPageParent; // FServicePageContent := TServicePageContent.Create(FServicePage); FServicePageContent.Parent := FServicePage; FServicePageContent.Page := FServicePage; FServicePageContent.Align := alClient; // init Result := FServicePage; end; end; end; procedure TPagesDM.killFrames; begin if Assigned(FMainPage) then FreeAndNil(FMainPage); if Assigned(FMainPageContent) then FreeAndNil(FMainPageContent); // if Assigned(FActionsPage) then FreeAndNil(FActionsPage); if Assigned(FActionsPageContent) then FreeAndNil(FActionsPageContent); // if Assigned(FCatalogPage) then FreeAndNil(FCatalogPage); // if Assigned(FPaymentsPage) then FreeAndNil(FPaymentsPage); // if Assigned(FDeliveryPage) then FreeAndNil(FDeliveryPage); // if Assigned(FEducationPage) then FreeAndNil(FEducationPage); // if Assigned(FShopsPage) then FreeAndNil(FShopsPage); // if Assigned(FServicePage) then FreeAndNil(FServicePage); end; procedure TPagesDM.OnAfterRender(aWidth, aHeight: integer); begin if Assigned(FMainPage) then FMainPageContent.OnAfterRender(aWidth, aHeight); if Assigned(FActionsPage) then FActionsPageContent.OnAfterRender(aWidth, aHeight); // if Assigned(FCatalogPage) then FCatalogPage.OnAfterRender(aWidth, aHeight); // if Assigned(FCatalogPageContent) then FCatalogPageContent.OnAfterRender(aWidth, aHeight); // // if Assigned(FPaymentsPage) then // FPaymentsPage.OnAfterRender(aWidth, aHeight); // if Assigned(FPaymentsPageContent) then FPaymentsPageContent.OnAfterRender(aWidth, aHeight); // if Assigned(FDeliveryPageContent) then FDeliveryPageContent.OnAfterRender(aWidth, aHeight); // if Assigned(FEducationPageContent) then FEducationPageContent.OnAfterRender(aWidth, aHeight); // if Assigned(FShopsPageContent) then FShopsPageContent.OnAfterRender(aWidth, aHeight); // if Assigned(FServicePageContent) then FServicePageContent.OnAfterRender(aWidth, aHeight); end; procedure TPagesDM.OnBrowserResize(aWidth, aHeight, aOldWidth, aOldHeight: integer); begin if Assigned(FMainPage) then FMainPageContent.OnBrowserResize(aWidth, aHeight, aOldWidth, aOldHeight); if Assigned(FActionsPage) then FActionsPageContent.OnBrowserResize(aWidth, aHeight, aOldWidth, aOldHeight); if Assigned(FCatalogPage) then FCatalogPage.OnBrowserResize(aWidth, aHeight, aOldWidth, aOldHeight); if Assigned(FCatalogPageContent) then FCatalogPageContent.OnBrowserResize(aWidth, aHeight, aOldWidth, aOldHeight); // if Assigned(FPaymentsPage) then FPaymentsPage.OnBrowserResize(aWidth, aHeight, aOldWidth, aOldHeight); if Assigned(FPaymentsPageContent) then FPaymentsPageContent.OnBrowserResize(aWidth, aHeight, aOldWidth, aOldHeight); // if Assigned(FDeliveryPageContent) then FDeliveryPageContent.OnBrowserResize(aWidth, aHeight, aOldWidth, aOldHeight); // if Assigned(FEducationPageContent) then FEducationPageContent.OnBrowserResize(aWidth, aHeight, aOldWidth, aOldHeight); // if Assigned(FShopsPageContent) then FShopsPageContent.OnBrowserResize(aWidth, aHeight, aOldWidth, aOldHeight); // if Assigned(FServicePageContent) then FServicePageContent.OnBrowserResize(aWidth, aHeight, aOldWidth, aOldHeight); end; procedure TPagesDM.SetPageParent(const Value: TUniScrollBox); begin FPageParent := Value; end; end. |