Skip to content

Latest commit

 

History

History
101 lines (75 loc) · 2.08 KB

README.md

File metadata and controls

101 lines (75 loc) · 2.08 KB

Phoenix "Akkordeon"

JS Akkordeon-Komponente mittels Mithril.js. Die Komponente beinhaltet nur die Implementierung, die Styles kommen wie immer aus dem Design-System.

Die Komponente ist Teil des Phoenix Reisen Design-Systems.

Demo

https://phoenixreisen.github.io/mithrils/accordion/

Installation

Mithril wird benötigt.

npm install --save @phoenixreisen/mithrils
import Accordion from '@phoenixreisen/mithrils/accordion';

Anwendung

Props Typisierung

type Props = {
    jumpMinus: number,

    items: Array<{
        fas: string,
        content: m.Component,
        headline: m.Component | string,
        type: 'primary'|'secondary',
    }>,
}

Props Beispiel

const Prime = {
    fas: 'ship',
    type: 'primary',
    headline: 'Hafen Bremen',
    content: {
        view() {
            return (<div>PRIMARY ITEM</div>);
        }
    }
}
const Secondary = {
    fas: 'ship',
    type: 'secondary',
    headline: 'Ausflug XYZ',
    content: {
        view() {
            return (<div>GRAY SECONDARY ITEM</div>);
        }
    }
}
const items = [ Prime, Secondary, Secondary, Secondary ];

Aufruf

import Accordion from '@phoenixreisen/mithrils/accordion';

// JSX
<Accordion items={[0,1,2,1,3, 0,2,2,1,3, 0,1,2,3].map(current =>
    items[current]
)} />

// Hyperscript bzw. Javascript
m(Accordion, { items: [0,1,2,1,3, 0,2,2,1,3, 0,1,2,3].map(current =>
    items[current]
)});

Github Page

Mit folgendem Befehl werden alle Demos in den Ordner ../../docs gebaut. Dieser Ordner wird von Github zur Bereitstellung der Demos bzw. Github Pages genutzt.

Möchte man zum Entwickeln nur bestimmte Demos bauen, kann man in der rollup.config.js nicht benötigte Demos auskommentieren, sollte sie vor dem push aber wieder einkommentieren.

npm run compile:demos

Test

[npm install]
npm run test

Deployments

Deployed & published wird immer die ganze Sammlung. Siehe hier.