Selaa lähdekoodia

🔥 remove dead code

jmacura 3 vuotta sitten
vanhempi
commit
944c13d154

+ 0 - 13
src/app/menu/menu.component.html

@@ -1,13 +0,0 @@
-<div class="offcanvas-header">
-  <h5 class="offcanvas-title">Chapters</h5>
-  <button type="button" class="btn-close text-reset" aria-label="Close" (click)="activeOffcanvas.close('Cross click')"></button>
-</div>
-<div class="offcanvas-body">
-  <div>
-    <ol start="0">
-      <ng-container *ngFor="let item of menuItems">
-        <li [ngClass]="{'no-number': item.order === 0}"><a href="#{{item.order}}-{{item.link}}">{{item.label}}</a></li>
-      </ng-container>
-    </ol>
-  </div>
-</div>

+ 0 - 7
src/app/menu/menu.component.scss

@@ -1,7 +0,0 @@
-li.no-number {
-  list-style-type: none;
-}
-
-.btn-close {
-  cursor: pointer;
-}

+ 0 - 48
src/app/menu/menu.component.ts

@@ -1,48 +0,0 @@
-import {Component} from '@angular/core';
-import {NgbActiveOffcanvas} from '@ng-bootstrap/ng-bootstrap';
-
-@Component({
-  selector: 'offcanvas-menu',
-  templateUrl: './menu.component.html',
-  styleUrls: ['./menu.component.scss'],
-})
-export class MenuComponent {
-  menuItems;
-  constructor(public activeOffcanvas: NgbActiveOffcanvas) {
-    this.menuItems = [
-      {order: 0, link: 'intro', label: 'Home'},
-      /*TODO: {order: 1, link: 'foresight', label: 'Regional Foresight'},
-      {
-        order: 2,
-        link: 'text-mining',
-        label: 'Text Mining applied to Regional Foresight',
-      },
-      {
-        order: 3,
-        link: 'sdm',
-        label: 'System Dynamic Modelling applied to Regional Foresight',
-      },*/
-      {order: 4, link: 'policy-options', label: 'The Policy Options Explorer'},
-      {
-        order: 5,
-        link: 'attractiveness',
-        label: 'The Rural Attractiveness Explorer',
-      },
-      {
-        order: 6,
-        link: 'comparing-europe',
-        label: 'Comparing Rural Attractiveness across the regions of Europe',
-      },
-      {
-        order: 7,
-        link: 'dynamics',
-        label: 'Exploring the Dynamics of Rural Attractiveness',
-      },
-      {
-        order: 8,
-        link: 'impacts',
-        label: 'Exploring the Impact of Policy Option on Rural Attractiveness',
-      },
-    ];
-  }
-}