View & Template Rendering
Checkout structure basically consists of three pages.
If the user has not logged in, it first redirects to the
Login-Register-Guest
page.If the user has logged in, it redirects to the
Checkout/Address-Payment
page.If the order is successfully completed, it redirects to the
Success
page.
Login-Register-Guest
HTML Path: templates/orders/index.html
Included File: templates/orders/login/index.html
Js Path: templates/orders/login/index.js
Optionally, each of the forms
Login
,Register
andGuest
or a combination of these can be used.When creating forms in page content,
Html(Jinja)
andJavascript
should be used together.Form macros are imported on the top of the page.
Optionally, a
id
value that corresponds to the ID value of<pz-form>
element as a parameter can be sent when using macros.For instance, if the same form is to be used twice in mobile and desktop viewing, then the forms need to be distinguished by ID.
LoginForm
,RegisterForm
andGuestForm
JS classes are imported undertemplates/orders/login/index.js
.LoginForm
,RegisterForm
andGuestForm
JS classes are called in theconstructor
method underCheckoutAuth
class oftemplates/orders/login/index.js
.Form element should be sent as a parameter to each class.
Checkout/Address-Payment
HTML Path: templates/orders/checkout.html
Included File: templates/orders/checkout/index.html
JS Path: templates/orders/checkout/index.js
Checkout/Address-Payment page consists of three main components, which are
Address Tab
,Checkout Tab
andOrder Summary
.When creating page content,
Html(Jinja)
andJavascript
should be used together.There are tabs on top of the page. You can switch between tabs
Address
andCheckout
.Order Summary
field is fixed on the page.Tab
there are certain functions to launch the structure.The
js-tab
class should be used for the tab button and akey
that matchescontent
should be used indata-tab
attribute.The
js-tab-content
class should be used for tab content and akey
matchingtab
should be used indata-tab
attribute.
As seen in the code block above, the
./address/index.html
file for address tab content and the./payment/index.html
file for the payment tab content areinclude
.Also demonstrated in the above code block, the
./summary/index.html
file isinclude
for the order summary content.Tabs
andSummary
JS classes are imported undertemplates/orders/checkout/index.js
.Tabs
andSummary
JS classes are called in theconstructor
method underCheckout
class oftemplates/orders/checkout/index.js
.
Address (Address Tab)
HTML Path: templates/orders/checkout/address/index.html
JS Path: templates/orders/checkout/address/index.js
It is the page that contains the list of addresses and shipping companies.
The address list field consists of the following components:
Information message,
List of delivery addresses,
List of invoice addresses and
Address add and edit form.
The shipping company list field consists of the following components:
Information message and
List of shipping companies.
The
templateRenderer
JS method is used when creating lists on top of the page.
Payment (Payment Tab)
HTML Path: templates/orders/checkout/payment/index.html
JS Path: templates/orders/checkout/payment/index.js
It is the page that contains payment methods, installment options based on payment method, and the complete order button.
There are tabs on top of the page. You can switch between available payment options tabs.
Tab
there are certain functions to launch the structure.The
js-payment-tab
class should be used for the tab button and akey
that matchescontent
should be used indata-type
attribute.The
js-payment-tab-content
class should be used for the tab content and akey
that matchestab
should be used indata-type
attribute.
As seen in the code block above, the
./credit-card/index.html
file for credit card payment option tab content and the./funds-transfer/index.html
file for the bank transfer payment option tab content areinclude
.
Summary (Order Summary)
HTML Path: templates/orders/checkout/summary/index.html
JS Path: templates/orders/checkout/summary/index.js
It is the page that includes all items in the order and item details, as well as price and discount information.
templateRenderer
JS Path: templates/utils/index.js
The
key
s written in a certain format on HTML elements are matched withRegExp
by JS, rendered andrender
bytemplateRenderer
method.The
key
s in%_keyName_%
format can be inserted in any field in the HTML elements to be used asTemplate
.Template
the content of the HTML element to be used for this purpose will be read and the action will be carried out thereThat means, the element we identified as
template
with theid
orclass
definition will not be included in the outcome.As for JS, the HTML element we identified as
template
is selected, thekey
s it contains are updated withvalue
s andrender
into an element, for which an outcome is requested.
The key
s in the data
object matched the key
s in template
as they have the same title. In the
data
object;
was searched and found as
%_userPk_%
--> userPk
,
%_userName_%
--> userName
,
%_userLocation_%
--> userLocation
,
%_userPermission_%
--> userPermission
and its value was received.
In the above example; the key
s the data
object do not have the same title as the key
s in template
. Therefore, a new object should be created for the second parameter of templateRenderer
method and matches should be established. Otherwise, content
constant will return an empty result.
Finally, the outcome will be as follows.
Last updated
Was this helpful?