Skip to content
Snippets Groups Projects
Commit 5f93919b authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add ncm dashboard

parent a2f34e1b
No related branches found
No related tags found
1 merge request!537Dashboards
<nshmp-lib-ng-template #template [navigationList]="navigationList" [title]="">
<!-- Dashboard -->
<nshmp-lib-ng-dashboard [sections]="sections">
<nshmp-lib-ng-dashboard-title>
USGS Earthquake Hazard Toolbox:
<br />
National Crustal Model Applications
</nshmp-lib-ng-dashboard-title>
<nshmp-lib-ng-dashboard-description />
</nshmp-lib-ng-dashboard>
<!-- About page -->
<nshmp-lib-ng-about-page>
<nshmp-lib-ng-about-content
[showSavingSettingPanel]="false"
[showUsingApplicationPanel]="false"
/>
</nshmp-lib-ng-about-page>
</nshmp-lib-ng-template>
import {provideHttpClient} from '@angular/common/http';
import {ComponentFixture, TestBed} from '@angular/core/testing';
import {provideNoopAnimations} from '@angular/platform-browser/animations';
import {provideRouter} from '@angular/router';
import {AppComponent} from './app.component';
describe('AppComponent', () => {
let component: AppComponent;
let fixture: ComponentFixture<AppComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [AppComponent],
providers: [
provideHttpClient(),
provideNoopAnimations(),
provideRouter([]),
],
}).compileComponents();
fixture = TestBed.createComponent(AppComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import {Component} from '@angular/core';
import {
NshmpLibNgAboutContentComponent,
NshmpLibNgAboutPageComponent,
} from '@ghsc/nshmp-lib-ng/about';
import {
ApplicationSections,
NshmpLibNgDashboardComponent,
NshmpLibNgDashboardDescriptionComponent,
NshmpLibNgDashboardTitleComponent,
NshmpLibNgTemplateComponent,
} from '@ghsc/nshmp-lib-ng/nshmp';
import {
navigation,
ncmApps,
} from 'projects/nshmp-apps/src/shared/utils/navigation.utils';
@Component({
imports: [
NshmpLibNgTemplateComponent,
NshmpLibNgAboutPageComponent,
NshmpLibNgDashboardComponent,
NshmpLibNgDashboardTitleComponent,
NshmpLibNgDashboardDescriptionComponent,
NshmpLibNgAboutContentComponent,
],
selector: 'app-app',
standalone: true,
styleUrl: './app.component.scss',
templateUrl: './app.component.html',
})
export class AppComponent {
/** Navigation list for menu */
navigationList = navigation();
sections: ApplicationSections[] = [
{
gridClass: 'grid-col-10',
sections: [
{
applications: ncmApps().map(navigation => ({navigation})),
gridClass: 'grid-col-12 tablet-lg:grid-col-8 grid-offset-1',
},
],
},
];
}
import {Routes} from '@angular/router';
const routes: Routes = [
{
loadComponent: () =>
import('./dashboard/app.component').then(com => com.AppComponent),
path: '',
},
{
loadComponent: () =>
import('./geophysical-profiles/app.component').then(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment