码迷,mamicode.com
首页 > 移动开发 > 详细

SAP Spartacus Reference App Structure

时间:2021-06-05 18:32:27      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:imp   gen   element   module   comm   git   spec   第三方   global   

https://sap.github.io/spartacus-docs/reference-app-structure/

该概念在 SAP Spartacus 3.1 版本引入。

这个 Reference App Structure 是 SAP 推荐客户在搭建自己的 Spartacus Storefront 时所用的参考。

Spartacus 包含若干可以 lazy load 的 feature libraries.

Customizations and third-party code add further complexity, and you can end up with modules that are difficult to maintain because they mix too many of these elements together.

定制化和第三方代码进一步增加了项目复杂度,如果处理不得当,很容易出现堆砌了大量 module,难于维护的情况。

This can be solved by defining and adhering to a standardized structure, such as the Spartacus reference app structure.

而遵循 Spartacus reference app structure 来开发,就能避免此类问题出现。

Having a standardized structure also makes it easier to onboard new developers to your project, to handle external support cases, and to take care of audits.

有一套标准的工程结构,也便于新开发人员进入项目后,快速熟悉项目并上手。

结构

技术图片

1. AppModule

技术图片

2. SpartacusModule

技术图片

3.BaseStorefrontModule

技术图片

从 @spartacus/storefront 里导入,再导出。

4.SpartacusFeatureModule

技术图片

技术图片

6. 配置 module

技术图片

Every Angular application has a root app module, usually named AppModule. In the reference app strcuture, this module includes application-wide imports, and avoids complex module imports related to Spartacus by handling only one SpartacusModule.

每个 Angular 应用都有一个 root app module,通常命名为 AppModule. 在 SAP Spartacus reference app structure 里,AppModule 包含了应用层级的 imports:

技术图片

Both Angular Router and NgRx are used by Spartacus, but these affect the global application, so they are kept outside of the SpartacusModule and are imported directly in the AppModule.

从上图可见,StoreModule 和 EffectsModule 等 module,因为整个应用的其他定制开发很可能也会用到,因此直接在 AppModule 里 import,而没有放到 SpartacusModule 里。

SpartacusModule 包含三部分:

技术图片

  1. The BaseStorefrontModule, which encapsulates core Spartacus imports that are usually required by most Spartacus applications.

包含了任何 Spartacus 应用都必需的 imports.

The BaseStorefrontModule is imported directly from @spartacus/storefront.

  1. The SpartacusFeaturesModule, which encapsulates Spartacus features.

技术图片

Spartacus feature 又分为两部分:来自 @Spartacus/storefront 和 features 文件夹下的 modules.

  1. The SpartacusConfigurationModule, which encapsulates the general Spartacus configuration.

配置信息:
技术图片

Feature-specific configurations can be kept either in feature modules, or in the SpartacusConfigurationModule. Keeping them in feature modules helps to maintain a good separation of concerns, so it is generally recommended.

feature 相关的配置信息,推荐放到 feature modules 里,从而遵循关注点分离的原则。

更多Jerry的原创文章,尽在:"汪子熙":
技术图片

SAP Spartacus Reference App Structure

标签:imp   gen   element   module   comm   git   spec   第三方   global   

原文地址:https://www.cnblogs.com/sap-jerry/p/14852757.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!