UNPKG

@o3r/core

Version:
170 lines (126 loc) 9.4 kB
<h1 align="center">Otter core</h1> <p align="center"> <img src="https://raw.githubusercontent.com/AmadeusITGroup/otter/main/assets/logo/otter.png" alt="Super cute Otter!" width="40%"/> </p> ## Description [![Stable Version](https://img.shields.io/npm/v/@o3r/core?style=for-the-badge)](https://www.npmjs.com/package/@o3r/core) [![Bundle Size](https://img.shields.io/bundlephobia/min/@o3r/core?color=green&style=for-the-badge)](https://www.npmjs.com/package/@o3r/core) This module gathers the core of the [Otter Framework](https://github.com/AmadeusITGroup/otter). It is the foundation for all the packages (interfaces, core helpers) and contains schematics to generate your components/services etc. Otter is a Framework providing a set of tools to accelerate the development of a prod ready application via several in-app features and developer tooling. This includes a toolbox to customize, administrate and debug an application at runtime. ## Get Started The application will contain the minimum setup to follow the otter recommendations and to activate the features requested during the installation of the `@o3r/core`. ### Required environment * **Git** : [https://gitforwindows.org/](https://gitforwindows.org/) * **NodeJs 18.x** : [NodeJS LTS](https://nodejs.org/) * **Yarn** : [https://yarnpkg.com/lang/en/](https://yarnpkg.com/) **Yarn** can be installed directly using NPM: ```shell # Installing yarn npm install --global yarn ``` ### Creating a new Otter project ```shell npm create @o3r my-project # Or a project using the yarn package manager npm create @o3r my-project -- --yarn ``` > [!TIP] > Get more details on [@o3r/create](https://www.npmjs.com/package/@o3r/create). > [!NOTE] > If you want to add o3r to an existing project, you will first need to install `@o3r/schematics` via > `ng add @o3r/schematics` and then `ng add @o3r/core`. > [!WARNING] > On Windows OS, [Git Bash terminal](https://gitforwindows.org/#bash) is not fully supported by different CLI used behind Otter project and can lead to execution error. > We recommend to minimize its usage. ### Adding Material design theming ```shell # Add Material Design yarn ng add @angular/material # ? Choose a prebuilt theme name, or "custom" for a custom theme: Indigo/Pink # ? Set up HammerJS for gesture recognition? Yes # ? Set up browser animations for Angular Material? Yes ``` Then uncomment the following lines in the `src/styles.scss` file to apply the Otter theming to Material Design components : ```scss @include mat.core(); @include mat.all-component-typographies($typography); @include mat.all-component-themes($mat-theme); ``` ## Generators Otter framework provides a set of code generators based on [Angular schematics](https://angular.io/guide/schematics). ### Item generators | Schematics | Description | How to use | | -------------------------- | ----------------------------------------------------------------------------- | --------------------------------- | | add | Include Otter in a library / application. | `ng add @o3r/core` | | page | Create a new Page in your application. | `ng g page` | | service | Create a new Otter Service in your library / application. | `ng g service` | | component | Create a new Otter component in your library / application. | `ng g component` | | component-container | Create a new Otter container component in your library / application. | `ng g component-container` | | component-presenter | Create a new Otter presenter component in your library / application. | `ng g component-presenter` | | playwright-scenario | Create a new Playwright scenario in your application. | `ng g playwright-scenario` | | store | Create a new store in your library / application. | `ng g store` | | store-entity-async | Create an entity async new store in your library / application. | `ng g store-entity-async` | | store-entity-sync | Create an entity sync new store in your library / application. | `ng g store-entity-sync` | | store-simple-async | Create a simple async new store in your library / application. | `ng g store-simple-async` | | store-simple-sync | Create a simple sync new store in your library / application. | `ng g store-simple-sync` | | store-action | Create an action into an existing store. | `ng g store-action` | | renovate-bot | Create a basic Renovate Bot | `ng g renovate-bot` | | ng-add-create | Include `ng add` schematic into your project | `ng g ng-add-create` | | show-modules | Display the list of available Otter modules on Otter Registry | `ng g show-modules` | | add-modules | Add a new Otter Module to the current project | `ng g add-modules` | | convert-component | Convert an Angular component into an Otter component | `ng g convert-component` | | context-to-component | Add Otter Context to an existing component | `ng g context-to-component` | ## Create your own Otter compatible module You can refer to the [module documentation](https://github.com/AmadeusITGroup/otter/tree/main/docs/core/MODULE.md) to create an Otter compatible module. ## Presets To accelerate the setup of repositories, different `presets` are provided that will chain the add of different modules. Today the following presets are available. ### Preset Basic This preset does not add any additional modules. ### Preset Recommended This preset is adding recommended Otter modules and features. This preset is the default one. * [@o3r/eslint-config](https://www.npmjs.com/package/@o3r/eslint-config) * [@o3r/workspace](https://www.npmjs.com/package/@o3r/workspace) specific features: * Renovate configuration * VSCode Tooling * pre-commit checks ### Preset CMS Will add all the modules allowing the allowing the full managing of an application by the CMS. On top of the Otter recommended modules, it includes the following ones: * [@o3r/localization](https://www.npmjs.com/package/@o3r/localization) * [@o3r/styling](https://www.npmjs.com/package/@o3r/styling) * [@o3r/components](https://www.npmjs.com/package/@o3r/components) * [@o3r/configuration](https://www.npmjs.com/package/@o3r/configuration) * [@o3r/dynamic-content](https://www.npmjs.com/package/@o3r/dynamic-content) * [@o3r/rules-engine](https://www.npmjs.com/package/@o3r/rules-engine) * [@o3r/testing](https://www.npmjs.com/package/@o3r/testing) ### Preset All Will add all official modules provided by the Otter Framework. On top of the Otter recommended modules, it includes the following ones: * [@o3r/analytics](https://www.npmjs.com/package/@o3r/analytics) * [@o3r/apis-manager](https://www.npmjs.com/package/@o3r/apis-manager) * [@o3r/application](https://www.npmjs.com/package/@o3r/application) * [@o3r/components](https://www.npmjs.com/package/@o3r/components) * [@o3r/configuration](https://www.npmjs.com/package/@o3r/configuration) * [@o3r/dynamic-content](https://www.npmjs.com/package/@o3r/dynamic-content) * [@o3r/eslint-config](https://www.npmjs.com/package/@o3r/eslint-config) * [@o3r/eslint-plugin](https://www.npmjs.com/package/@o3r/eslint-plugin) * [@o3r/forms](https://www.npmjs.com/package/@o3r/forms) * [@o3r/localization](https://www.npmjs.com/package/@o3r/localization) * [@o3r/logger](https://www.npmjs.com/package/@o3r/logger) * [@o3r/rules-engine](https://www.npmjs.com/package/@o3r/rules-engine) * [@o3r/store-sync](https://www.npmjs.com/package/@o3r/store-sync) * [@o3r/stylelint-plugin](https://www.npmjs.com/package/@o3r/stylelint-plugin) * [@o3r/styling](https://www.npmjs.com/package/@o3r/styling) * [@o3r/testing](https://www.npmjs.com/package/@o3r/testing) ## External (Custom) Preset The preset mechanism is supporting, via the `--external-preset` option, presets defined by module providers themself. The modules can be regrouped in custom Presets by following the next steps: * Adding a **keyword**, in the module *package.json*'s `keywords` field, following the pattern `otter-preset-<my-preset>`. * The module needs to be published to a public (or private) NPM Registry. * The package's scope should be whitelisted, via a Pull Request, in the following [OTTER_MODULE_SUPPORTED_SCOPES constant](https://github.com/AmadeusITGroup/otter/blob/main/packages/@o3r/schematics/src/modules/modules.constants.ts). > [!TIP] > Get more information regarding the **Otter Modules** in the [Module Documentation](https://github.com/AmadeusITGroup/otter/blob/main/docs/core/MODULE.md).