mirror of https://github.com/status-im/consul.git
5fb9df1640
* Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> |
||
---|---|---|
.. | ||
README.mdx | ||
index.hbs | ||
index.js | ||
index.scss | ||
layout.scss | ||
skin.scss |
README.mdx
--- class: ember state: needs-love --- # AppView `<AppView />` is our current top level wrapping component (one level in from the app chrome), every 'top level main section/template' should have one of these. This component will potentially be renamed to `Page` or `View` or similar now that we don't need two words. Other than that it provides the basic layout/slots for our main title, search bar, top right hand actions and main content. The large top margin that is visible when no breadcrumbs are visible is there to ensure that the page doesn't 'jump around' when you navigate to a page with breadcrumbs and back again. ```hbs preview-template <figure> <AppView> <BlockSlot @name="header"> <h1> Main title <em>{{format-number "100000"}} total {{pluralize 100000 "thing" without-count=true}} in this page</em> </h1> </BlockSlot> <BlockSlot @name="content"> <EmptyState> <BlockSlot @name="body"> <p> Nothing to see here </p> </BlockSlot> </EmptyState> </BlockSlot> </AppView> <figcaption>Basic list-like view</figcaption> </figure> ``` ```hbs preview-template <figure> <AppView> <BlockSlot @name="breadcrumbs"> <ol> <li><a href="">Hansel</a></li> <li><a href="">Gretel</a></li> </ol> </BlockSlot> <BlockSlot @name="header"> <h1> Scary witch's gingerbread house <em>(run away quick!)</em> </h1> </BlockSlot> <BlockSlot @name="actions"> <Action {{on "click" (noop)}} > Run away! </Action> </BlockSlot> <BlockSlot @name="content"> <EmptyState> <BlockSlot @name="body"> <p> Double, double toil and trouble </p> </BlockSlot> </EmptyState> </BlockSlot> </AppView> <figcaption>Basic detail-like view</figcaption> </figure> ``` ## Slots | Name | Description | | --- | --- | | `header` | The main title of the page, you probably want to put a `<h1>` in here | | `content` | The main content of the page, and potentially an `<Outlet />` somewhere | | `breadcrumbs` | Any breadcrumbs, you probably want an `ol/li/a` in here | | `actions` | Any actions relevant for the entire page, probably using `<Action />` | | `nav` | Secondary navigation goes in here, also see `<TabNav />` | | `toolbar` | Rendered underneath the header and actions for various 'toolbar' type things, such as our SearchBars | ## Portals | Name | Description | | --- | --- | | `app-view-actions` | Provides a portal to render additional page actions from any views. This is rendered **before** the contents of the `actions` slot |