root / src / app / app.component.html @ 54800558
Historique | Voir | Annoter | Télécharger (4,02 ko)
1 |
<!--
|
---|---|
2 |
RadSideDrawer is a UI component part of the Progress NativeScript UI set of components.
|
3 |
Learn more about the RadSideDrawer UI component and how it can be customized in this documentation article:
|
4 |
https://docs.nativescript.org/angular/ui/professional-ui-components/ng-SideDrawer/getting-started
|
5 |
-->
|
6 |
<RadSideDrawer [drawerTransition]="sideDrawerTransition"> |
7 |
<GridLayout tkDrawerContent rows="auto, *" class="nt-drawer__content"> |
8 |
<StackLayout row="0" class="nt-drawer__header"> |
9 |
<!-- <Image class="nt-drawer__header-image fas t-36" src="font://"></Image> -->
|
10 |
<Image class="nt-drawer__header-image fas t-36" src="~/images/logo.png"></Image> |
11 |
<Label class="nt-drawer__header-brand" [text]='pseudo'></Label> |
12 |
<Label class="nt-drawer__header-footnote" [text]='email'></Label> |
13 |
<Label class="nt-drawer__header-footnote" text='ClicAlbum version : {{appVersion}}'></Label> |
14 |
</StackLayout>
|
15 |
|
16 |
<ScrollView row="1" class="nt-drawer__body"> |
17 |
<StackLayout>
|
18 |
<GridLayout columns="auto, *" class="nt-drawer__list-item" [class.-selected]="isComponentSelected('/home')" (tap)="onNavItemTap('/home')"> |
19 |
<Label col="0" text="" class="nt-icon fas"></Label> |
20 |
<Label col="1" text="Application" class="p-r-10"></Label> |
21 |
</GridLayout>
|
22 |
|
23 |
|
24 |
<!-- <GridLayout columns="auto, *" class="nt-drawer__list-item" [class.-selected]="isComponentSelected('/browse')" (tap)="onNavItemTap('/browse')">
|
25 |
<Label col="0" text="" class="nt-icon far"></Label>
|
26 |
<Label col="1" text="Browse" class="p-r-10"></Label>
|
27 |
</GridLayout> -->
|
28 |
|
29 |
<!-- <GridLayout columns="auto, *" class="nt-drawer__list-item" [class.-selected]="isComponentSelected('/search')" (tap)="onNavItemTap('/search')">
|
30 |
<Label col="0" text="" class="nt-icon fas"></Label>
|
31 |
<Label col="1" text="Search" class="p-r-10"></Label>
|
32 |
</GridLayout> -->
|
33 |
|
34 |
<!-- <GridLayout columns="auto, *" class="nt-drawer__list-item" [class.-selected]="isComponentSelected('/featured')" (tap)="onNavItemTap('/featured')">
|
35 |
<Label col="0" text="" class="nt-icon fas"></Label>
|
36 |
<Label col="1" text="Featured" class="p-r-10"></Label>
|
37 |
</GridLayout> -->
|
38 |
|
39 |
<StackLayout class="hr"></StackLayout> |
40 |
|
41 |
<GridLayout columns="auto, *" class="nt-drawer__list-item" [class.-selected]="isComponentSelected('/teachers')" (tap)="onNavItemTap('/teachers')"> |
42 |
<Label col="0" text="" class="nt-icon fas"></Label> |
43 |
<Label col="1" text="Enseignants" class="p-r-10"></Label> |
44 |
</GridLayout>
|
45 |
|
46 |
<GridLayout columns="auto, *" class="nt-drawer__list-item" [class.-selected]="isComponentSelected('/settings')" (tap)="onNavItemTap('/settings')"> |
47 |
<Label col="0" text="" class="nt-icon fas"></Label> |
48 |
<Label col="1" text="Configuration" class="p-r-10"></Label> |
49 |
</GridLayout>
|
50 |
|
51 |
<StackLayout class="hr"></StackLayout> |
52 |
|
53 |
<GridLayout columns="auto, *" class="nt-drawer__list-item" [class.-selected]="isComponentSelected('/upgrade')" (tap)="onNavItemTap('/upgrade')"> |
54 |
<Label col="0" text="" class="nt-icon fas"></Label> |
55 |
<Label col="1" text="Mise à jour" class="p-r-10"></Label> |
56 |
</GridLayout>
|
57 |
|
58 |
<GridLayout columns="auto, *" class="nt-drawer__list-item" [class.-selected]="isComponentSelected('/about')" (tap)="onNavItemTap('/about')"> |
59 |
<Label col="0" text="" class="nt-icon fas"></Label> |
60 |
<Label col="1" text="À propos" class="p-r-10"></Label> |
61 |
</GridLayout>
|
62 |
|
63 |
</StackLayout>
|
64 |
</ScrollView>
|
65 |
</GridLayout>
|
66 |
|
67 |
<page-router-outlet tkMainContent></page-router-outlet> |
68 |
</RadSideDrawer>
|