SAP Spartacus 的 Above-the-Fold Loading 加载机制

简介: SAP Spartacus 的 Above-the-Fold Loading 加载机制

https://sap.github.io/spartacus-docs/above-the-fold/


Above-the-fold loading is a technique that prioritizes the creation of components that are “above the fold”. The term “above the fold” is traditionally known as the upper-half of a newspaper, where the most important stories are located. When this concept is transferred to the web, it refers to all the components that are placed at the top of the page, where the experience starts.


简而言之,页面上部分最重要的内容最先加载。


Above-the-fold loading要想工作,需要以下三个基础设施的支撑:


Deferred loading, which is a technique that postpones the creation of components that are “below the fold”. For more information, see Deferred Loading.

对below the fold的组件进行延迟加载。


The notion of the “page fold”. The page fold is not static, and differs from device to device, from screen to screen, and even changes depending on the size of the browser.

Page fold的定义。该定义不是一成不变的,随着设备和屏幕的不同,甚至浏览器尺寸的改变而变化。


A couple of CSS rules that initially move components below the page fold.

The page fold is configurable for each page template and breakpoint.


Page fold基于每个页面模板和breakpoint来配置。


The page fold configuration is only an indication to speed up the initial creation of page slots that are above the fold. All page slots are eventually rendered if they happen to be above the fold. You designate the page fold by assigning a page slot to the pageFold parameter. This page slot, and all previous, sibling page slots, are “above the fold”. These page slots are prioritized ahead of page slots that are “below the fold”.


The page fold is part of the LayoutConfig configuration. The page fold indicates the last page slot that should be rendered above the fold.


Page fold是LayoutConfig的一部分,page fold是一个基点,所有page fold之前的Component,都会优先被渲染。


一个例子:


LandingPage2Template: {

   pageFold: 'Section2B',

   slots: [

       'Section1',

       'Section2A',

       'Section2B',

       [...]

   ]

}

1

2

3

4

5

6

7

8

9

Section2B和之前的Component,Section1和Section2A都会得到优先渲染的机会。


还可以基于每个breakpoint定义page fold:


ProductDetailsPageTemplate: {

   md: {

       pageFold: 'UpSelling'

   },

   xs: {

       pageFold: 'Summary'

   },

   slots: [

       'Summary',

       'UpSelling',

       [...]

   ]

}

1

2

3

4

5

6

7

8

9

10

11

12

13

Page fold和CSS相关的设置


By default, when page slots are loaded on the page, there is no minimum height available for the page slots or components.


默认情况下,当页面page slot内的Component加载时,没有所谓的minimum height设置。


The actual height is only added when components are loaded, and the associated CSS rules are applied to the components.


只有当Component真正被加载时,才能确定真实的高度是多少。


The page slots adjust their height automatically when components are loaded. Therefore, page slots do not have an initial height, which is why they initially end up in the viewport. This prevents the deferred loading technique from working, because it depends on content not being in the viewport.


Given that content can be added at runtime, it is not possible to implement a (hard-coded) minimum height for page slots or components – it all depends on what the business will add at runtime.


所谓的ghost design:


While this lack of minimum height could be filled up by so-called “ghost design” CSS rules, there will always be a gap between the ghost design and the actual content. Furthermore, ghost design rules require an implementation effort that might not be available.


To make it possible to defer the loading of below-the-fold content, Spartacus marks page slots that are below the page fold while page slots above the fold are being loaded. All page slots are marked with an is-pending class as long as all the inner components are not loaded.


below-the-fold Component被标记成is-pending class和page-fold class.


Additionally, the page fold slot has a page-fold class. With these two classes, Spartacus can apply various CSS rules to control deferred loading of below-the-fold content.


The following CSS shows all pending page slots after the pending page-fold, and moves them below the fold with a margin-top.


下列css使用margin-top, 将below-the-fold的Component移动到page-fold之下:


cx-page-slot.cx-pending.page-fold ~ cx-page-slot.cx-pending {

   margin-top: 100vh;

}


相关文章
|
6月前
|
缓存 负载均衡 前端开发
SAP Spartacus 和 Sticky session 相关的话题
SAP Spartacus 和 Sticky session 相关的话题
38 0
|
6月前
|
存储
SAP Emarsys 和 SAP Spartacus 的集成
SAP Emarsys 和 SAP Spartacus 的集成
51 0
|
6月前
|
API 开发者
Google Tag Manager (GTM) 和 Adobe AEPL 在 SAP Spartacus 中的应用
Google Tag Manager (GTM) 和 Adobe AEPL 在 SAP Spartacus 中的应用
65 0
|
6月前
|
API
SAP 电商云 CMSUserGroupRestriction 在 Spartacus 里的 evaluation 问题
SAP 电商云 CMSUserGroupRestriction 在 Spartacus 里的 evaluation 问题
49 0
|
6月前
|
前端开发 安全 API
Above-the-Fold Loading 加载机制在 Spartacus Storefront 里的应用
Above-the-Fold Loading 加载机制在 Spartacus Storefront 里的应用
27 0
|
3月前
|
JSON 开发者 数据格式
关于 SAP Spartacus LandingPage2Template 区域的 layout 设计实现
关于 SAP Spartacus LandingPage2Template 区域的 layout 设计实现
24 0
|
3月前
|
搜索推荐 开发者 UED
关于 SAP Spartacus 层的 UI 设计
关于 SAP Spartacus 层的 UI 设计
38 0
|
3月前
|
开发者 UED
SAP Spartacus BREAKPOINT 枚举类型在 Spartacus layout 实现中的作用
SAP Spartacus BREAKPOINT 枚举类型在 Spartacus layout 实现中的作用
23 0
|
6月前
|
前端开发
Spartacus lazy loading 模块中的配置管理
Spartacus lazy loading 模块中的配置管理
26 0
|
6月前
|
前端开发 搜索推荐 JavaScript
什么是 SAP Spartacus 的 CMS Page Connector
什么是 SAP Spartacus 的 CMS Page Connector
46 0