12.0.1-next.4 • Published 12 days ago

@dlr-eoc/core-ui v12.0.1-next.4

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
12 days ago

@dlr-eoc/core-ui (Schematics for UKIS core-ui)

This project includes some schematics to add the base UKIS-Layout to an angular application. The Layout is based on Clarity so add this first!

What the ng-add command is doing?

ng add @dlr-eoc/core-ui

options:

--project=string // the project in the angular workspace (default 'defaultProject')

--routing=boolean // sets up angular routing (default false)

--addClr=boolean // run's @clr/angular:ng-add (default false)

The following are not implemented right now!

--addMap=boolean // adds a map component (default false)

--auth=boolean // default false, adjusts the app for authentication and user login

layout structure of the core-ui

The UKIS core-ui (created by the the schematics) is based on the Clarity Application Layout.

It uses the angular components from Clarity to get a responsive navigation.

For an application with routes:

Use a basic layout like the following, containing the router-outlet which then shows route components as the Clarity content-container.

<clr-main-container>
  <ukis-global-alert *ngIf="ui.alert" [(alert)]="ui.alert"></ukis-global-alert>
  <ukis-global-progress *ngIf="ui.progress" [(progress)]="ui.progress"></ukis-global-progress>
  <ukis-header [ukis-title]="title">
    ...
  </ukis-header>
  <router-outlet></router-outlet>
</clr-main-container>

For an application without routes:

Replace the router-outlet with a view component which also adds the Clarity content-container class as HostBinding.

<clr-main-container>
  <ukis-global-alert *ngIf="ui.alert" [(alert)]="ui.alert"></ukis-global-alert>
  <ukis-global-progress *ngIf="ui.progress" [(progress)]="ui.progress"></ukis-global-progress>
  <ukis-header [ukis-title]="title">
  ...
  </ukis-header>
  <app-example-view></app-example-view>
</clr-main-container>
  • A css class floating on the content-container (which is mostly placed in your route components) makes the Clarity Vertical Nav floating above the content-container so it takes less space. For this, however, you have to worry about the placement of the elements in the content-container if the vertical-nav is expanded.
  • The global-alert and global-progress can be activated with their responsible services which you can inject in your components.
  • For more doku about the ukis-header see the header README

Always check that yout layout structure is like following (with direct childs):

main-container
  content-container
    content-area

and keep in mind that the router is placing the routes outside of the router-outlet (so they are not children)

main-container
  router-outlet
  route-component
  ...

due to this you must add the class content-container as HostBinding to each 'route-component'.

Layout of a route or view component

The basic layout of a route or view component (see below) is the same so you can easily change it if you decide later to switch between routing or not.

<main class="content-area">
  <p>This is the content-area</p>
</main>

<clr-vertical-nav class="right">
</clr-vertical-nav>

<nav class="sidenav">
  <a href="">Test link</a>
</nav>

<section class="footer ukis-footer">

</section>
  • The route or view component uses the content-container class like described before, so you should normally be able to put everything in there which is shown in the documentation of Clarity Application Layout.

  • The content-area is the place where we put the map normally. If you like to do this ad the class map-view (content-area map-view) to remove the padding from the content-area.

  • As Aside we mostly use the vertical-nav. The default placement is on the left side like in the Clarity Layout, but with the class right the navigation will stick to the right side. There are also some styles for the layer-control inside a vertical-nav, so this is the place where we put the layer-control.

  • A section with the class footer will get you a footer element independent for each route. If it should be the same for all routes, you can add it in the main-container. For an example with the footer see the demo-maps route 'route-example-layout'.

  • Use the sidenav if you don't want the navigation collapsible, but we have no style for a layer-control inside it.

  • All our styles (ukis-theme) are in the styles folder and get imported in the main styles.scss. For app over all styles you can use the styles.scss, otherwise use the style files of your components to write custom styles.

12.0.1-next.4

12 days ago

12.0.1-next.3

12 days ago

12.0.1-next.2

2 months ago

12.0.1-next.1

2 months ago

12.0.1-next.0

4 months ago

12.0.0

5 months ago

12.0.0-alpha.1

10 months ago

12.0.0-alpha.0

10 months ago

12.0.0-alpha.2

9 months ago

11.1.0

11 months ago

11.0.0

1 year ago

10.0.0

2 years ago

10.1.0

1 year ago

11.0.0-alpha.1

1 year ago

10.0.0-alpha.1

2 years ago

10.0.0-next.0

2 years ago

11.0.0-alpha.0

1 year ago

10.0.0-next.1

2 years ago

9.0.0

2 years ago

8.1.0

2 years ago

8.0.1

2 years ago

8.0.0-next.3

2 years ago

8.0.0-next.4

2 years ago

8.0.0

2 years ago

8.0.0-next.2

3 years ago

8.0.0-next.1

3 years ago

8.0.0-next.0

3 years ago

7.3.2-next.3

3 years ago

7.3.2-next.2

3 years ago

7.3.2-next.1

3 years ago

7.3.1

3 years ago

7.3.0-next.3

3 years ago

7.3.0-next.2

3 years ago

7.3.0-next.1

3 years ago

7.3.0-next.0

3 years ago

7.2.0

4 years ago

7.0.0

4 years ago

7.1.0

4 years ago