chore: fix documentation of how to import core elements

This commit is contained in:
qa46hx 2021-07-14 16:45:55 +02:00
parent 9c8113e304
commit 8c06302e54
11 changed files with 24 additions and 98 deletions

View file

@ -0,0 +1,5 @@
---
'@lion/core': patch
---
fix documentation of how to import core elements

View file

@ -67,7 +67,7 @@ npm i @lion/<package-name>
**This is the main use case for lion**. To import component classes, and extend them for your own design system's components. **This is the main use case for lion**. To import component classes, and extend them for your own design system's components.
```js ```js
import { css } from '@mdjs/mdjs-preview'; import { css } from '@lion/core';
import { LionInput } from '@lion/input'; import { LionInput } from '@lion/input';
class MyInput extends LionInput { class MyInput extends LionInput {

View file

@ -84,7 +84,7 @@ Let's convert an example page
`lion-calendar` is a reusable and accessible calendar view. It depends on [calendar](?path=/docs/calendar--default-story). `lion-calendar` is a reusable and accessible calendar view. It depends on [calendar](?path=/docs/calendar--default-story).
```js script ```js script
import { html, css } from '@mdjs/mdjs-preview'; import { html, css } from '@lion/core';
import './lion-calendar.js'; import './lion-calendar.js';
export default { export default {
@ -103,7 +103,7 @@ export default {
`lion-calendar` is a reusable and accessible calendar view. It depends on [calendar](../../path/to/calendar.md). `lion-calendar` is a reusable and accessible calendar view. It depends on [calendar](../../path/to/calendar.md).
```js script ```js script
import { html, css } from '@mdjs/mdjs-preview'; import { html, css } from '@lion/core';
import '@lion/calendar/define'; import '@lion/calendar/define';
``` ```

View file

@ -36,11 +36,11 @@ Let's convert an example page
`lion-calendar` is a reusable and accessible calendar view. It depends on [calendar](?path=/docs/calendar--default-story). `lion-calendar` is a reusable and accessible calendar view. It depends on [calendar](?path=/docs/calendar--default-story).
```js script ```js script
import { html, css } from '@mdjs/mdjs-preview'; import { html, css } from '@lion/core';
import './lion-calendar.js'; import './lion-calendar.js';
export default { export default {
title: 'Others/Calendar', title: 'Others/Calendar',
}; };
``` ```
@ -55,7 +55,7 @@ export default {
`lion-calendar` is a reusable and accessible calendar view. It depends on [calendar](../../path/to/calendar.md). `lion-calendar` is a reusable and accessible calendar view. It depends on [calendar](../../path/to/calendar.md).
```js script ```js script
import { html, css } from '@mdjs/mdjs-preview'; import { html, css } from '@lion/core';
import '@lion/calendar/define'; import '@lion/calendar/define';
``` ```

View file

@ -83,7 +83,7 @@ paths: [
We have an existing demo code which we want to reuse. We have an existing demo code which we want to reuse.
```js ```js
import { LitElement, html } from '@mdjs/mdjs-preview'; import { LitElement, html } from '@lion/core';
import 'source-pkg/counter/define'; import 'source-pkg/counter/define';
class MyApp extends LitElement { class MyApp extends LitElement {
render() { render() {
@ -112,7 +112,7 @@ tag: {
### Result of Replacement of tags ### Result of Replacement of tags
```js ```js
import { LitElement, html } from '@mdjs/mdjs-preview'; import { LitElement, html } from '@lion/core';
import 'extension-pkg/counter/define'; import 'extension-pkg/counter/define';
class MyApp extends LitElement { class MyApp extends LitElement {
render() { render() {
@ -130,7 +130,7 @@ customElements.define('my-app', MyApp);
We have an existing demo code which we want to reuse. We have an existing demo code which we want to reuse.
```js ```js
import { LitElement, html } from '@mdjs/mdjs-preview'; import { LitElement, html } from '@lion/core';
import { SourceCounter } from 'source-pkg/counter'; import { SourceCounter } from 'source-pkg/counter';
class TenCounter extends SourceCounter { class TenCounter extends SourceCounter {
inc() { inc() {
@ -167,7 +167,7 @@ variable: {
### Result of Replacement of classes ### Result of Replacement of classes
```js ```js
import { LitElement, html } from '@mdjs/mdjs-preview'; import { LitElement, html } from '@lion/core';
import { SourceCounter } from 'extension-pkg/counter'; import { SourceCounter } from 'extension-pkg/counter';
class TenCounter extends SourceCounter { class TenCounter extends SourceCounter {
inc() { inc() {

View file

@ -7,7 +7,7 @@ To be sure a compatible version is used you should import it via this package.
```js ```js
// DO // DO
import { LitElement, html, render } from '@mdjs/mdjs-preview'; import { LitElement, html, render } from '@lion/core';
// DON'T // DON'T
import { LitElement, html, render } from 'lit-element'; import { LitElement, html, render } from 'lit-element';
@ -29,7 +29,7 @@ npm i --save @lion/core
``` ```
```js ```js
import { dedupeMixin, LitElement } from '@mdjs/mdjs-preview'; import { dedupeMixin, LitElement } from '@lion/core';
``` ```
### Example ### Example

View file

@ -9,7 +9,7 @@ application, and you don't need to worry about carefully coordinating the dynami
For security reasons, icons are defined using lit-html templates to guarantee XSS safety: For security reasons, icons are defined using lit-html templates to guarantee XSS safety:
```js ```js
import { html } from '@mdjs/mdjs-preview'; import { html } from '@lion/core';
export default html` <svg focusable="false" ...>...</svg> `; export default html` <svg focusable="false" ...>...</svg> `;
``` ```

View file

@ -69,7 +69,7 @@ const ctrl = new OverlayController({
Or creating your own Web Component which uses the Overlay System Or creating your own Web Component which uses the Overlay System
```js ```js
import { LitElement, html } from '@mdjs/mdjs-preview'; import { LitElement, html } from '@lion/core';
import { OverlayMixin, withModalDialogConfig } from '@lion/overlays'; import { OverlayMixin, withModalDialogConfig } from '@lion/overlays';
class MyOverlayComponent extends OverlayMixin(LitElement) { class MyOverlayComponent extends OverlayMixin(LitElement) {

View file

@ -32,7 +32,7 @@ npm i @lion/<package-name>
**This is the main use case for lion**. To import component classes, and extend them for your own design system's components. **This is the main use case for lion**. To import component classes, and extend them for your own design system's components.
```js ```js
import { css } from '@mdjs/mdjs-preview'; import { css } from '@lion/core';
import { LionInput } from '@lion/input'; import { LionInput } from '@lion/input';
class MyInput extends LionInput { class MyInput extends LionInput {

View file

@ -6,7 +6,7 @@ Whenever a lion component uses composition (meaning it uses another lion compone
apply ScopedElementsMixin to make sure it uses the right version of this internal component. apply ScopedElementsMixin to make sure it uses the right version of this internal component.
```js ```js
import { ScopedElementsMixin, LitElement, html } from '@mdjs/mdjs-preview'; import { ScopedElementsMixin, LitElement, html } from '@lion/core';
import { LionInput } from '@lion/input'; import { LionInput } from '@lion/input';
import { LionButton } from '@lion/button'; import { LionButton } from '@lion/button';
@ -89,7 +89,7 @@ connectedCallback() {
In a less complex case, we might just want to add a child node to the dom. In a less complex case, we might just want to add a child node to the dom.
```js ```js
import { ScopedElementsMixin, LitElement, getScopedTagNamegetScopedTagName } from '@mdjs/mdjs-preview'; import { ScopedElementsMixin, LitElement, getScopedTagNamegetScopedTagName } from '@lion/core';
... ...

View file

@ -1,82 +1,3 @@
# Systems >> Core >> Overview || 10 # Lion Core
The `@lion/core` package is mostly for in depth usage. [=> See Source <=](../../docs/docs/systems/core/overview.md)
It handles the version of `lit-element` and `lit-html`.
In order to be sure a compatible version is used import it via this package.
```js
import { LitElement, html, render } from '@mdjs/mdjs-preview';
```
## Features
- [function to deduplicate mixins (dedupeMixin)](https://github.com/ing-bank/lion/blob/master/docs/docs/systems/core/#deduping-of-mixins)
- Mixin to handle disabled (DisabledMixin)
- Mixin to handle disabled AND tabIndex (DisabledWithTabIndexMixin)
- Mixin to manage auto generated needed slot elements in light dom (SlotMixin)
> These features are not well documented - care to help out?
## How to use
### Installation
```bash
npm i --save @lion/core
```
```js
import { dedupeMixin, LitElement } from '@mdjs/mdjs-preview';
```
### Example
```js
const BaseMixin = dedupeMixin((superClass) => {
return class extends superClass { ... };
});
```
## Deduping of mixins
### Why is deduping of mixins necessary?
Imagine you are developing web components and creating ES classes for Custom Elements. You have two generic mixins (let's say `M1` and `M2`) which require independently the same even more generic mixin (`BaseMixin`). `M1` and `M2` can be used independently, that means they have to inherit from `BaseMixin` also independently. But they can be also used in combination. Sometimes `M1` and `M2` are used in the same component and can mess up the inheritance chain if `BaseMixin` is applied twice.
In other words, this may happen to the protoype chain `... -> M2 -> BaseMixin -> M1 -> BaseMixin -> ...`.
An example of this may be a `LocalizeMixin` used across different components and mixins. Some mixins may need it and many components need it too and can not rely on other mixins to have it by default, so must inherit from it independently.
The more generic the mixin is, the higher the chance of being appliend more than once. As a mixin author you can't control how it is used, and can't always predict it. So as a safety measure it is always recommended to create deduping mixins.
### Usage of dedupeMixin()
This is an example of how to make a conventional ES mixin deduping.
```js
const BaseMixin = dedupeMixin((superClass) => {
return class extends superClass { ... };
});
// inherits from BaseMixin
const M1 = dedupeMixin((superClass) => {
return class extends BaseMixin(superClass) { ... };
});
// inherits from BaseMixin
const M2 = dedupeMixin((superClass) => {
return class extends BaseMixin(superClass) { ... };
});
// component inherits from M1
// MyCustomElement -> M1 -> BaseMixin -> BaseCustomElement;
class MyCustomElement extends M1(BaseCustomElement) { ... }
// component inherits from M2
// MyCustomElement -> M2 -> BaseMixin -> BaseCustomElement;
class MyCustomElement extends M2(BaseCustomElement) { ... }
// component inherits from both M1 and M2
// MyCustomElement -> M2 -> M1 -> BaseMixin -> BaseCustomElement;
class MyCustomElement extends M2(M1(BaseCustomElement)) { ... }
```