Add more pages
parent
c398e98cc2
commit
db0863404d
@ -0,0 +1 @@
|
|||||||
|
<p>table-overview works!</p>
|
@ -0,0 +1,25 @@
|
|||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { TableOverviewComponent } from './table-overview.component';
|
||||||
|
|
||||||
|
describe('TableOverviewComponent', () => {
|
||||||
|
let component: TableOverviewComponent;
|
||||||
|
let fixture: ComponentFixture<TableOverviewComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [ TableOverviewComponent ]
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(TableOverviewComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,15 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-table-overview',
|
||||||
|
templateUrl: './table-overview.component.html',
|
||||||
|
styleUrls: ['./table-overview.component.scss']
|
||||||
|
})
|
||||||
|
export class TableOverviewComponent implements OnInit {
|
||||||
|
|
||||||
|
constructor() { }
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,6 +1,6 @@
|
|||||||
import { Component, OnInit } from '@angular/core';
|
import { Component, OnInit } from '@angular/core';
|
||||||
import { DeepExtractTypeSkipArrays } from 'ts-deep-extract-types';
|
import { DeepExtractTypeSkipArrays } from 'ts-deep-extract-types';
|
||||||
import { GetCargoBikesGQL, GetCargoBikesQuery } from '../../../generated/graphql';
|
import { GetCargoBikesGQL, GetCargoBikesQuery } from '../../../../generated/graphql';
|
||||||
|
|
||||||
type CargoBikeResult = DeepExtractTypeSkipArrays<GetCargoBikesQuery, ["cargoBikes"]>;
|
type CargoBikeResult = DeepExtractTypeSkipArrays<GetCargoBikesQuery, ["cargoBikes"]>;
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
<p>lending-stations works!</p>
|
@ -0,0 +1,25 @@
|
|||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { LendingStationsComponent } from './lending-stations.component';
|
||||||
|
|
||||||
|
describe('LendingStationsComponent', () => {
|
||||||
|
let component: LendingStationsComponent;
|
||||||
|
let fixture: ComponentFixture<LendingStationsComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [ LendingStationsComponent ]
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(LendingStationsComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,15 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-lending-stations',
|
||||||
|
templateUrl: './lending-stations.component.html',
|
||||||
|
styleUrls: ['./lending-stations.component.scss']
|
||||||
|
})
|
||||||
|
export class LendingStationsComponent implements OnInit {
|
||||||
|
|
||||||
|
constructor() { }
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
<p>participants works!</p>
|
@ -1,20 +1,20 @@
|
|||||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
import { BikesComponent } from './bikes.component';
|
import { ParticipantsComponent } from './participants.component';
|
||||||
|
|
||||||
describe('BikesComponent', () => {
|
describe('ParticipantsComponent', () => {
|
||||||
let component: BikesComponent;
|
let component: ParticipantsComponent;
|
||||||
let fixture: ComponentFixture<BikesComponent>;
|
let fixture: ComponentFixture<ParticipantsComponent>;
|
||||||
|
|
||||||
beforeEach(async(() => {
|
beforeEach(async(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
declarations: [ BikesComponent ]
|
declarations: [ ParticipantsComponent ]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
}));
|
}));
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
fixture = TestBed.createComponent(BikesComponent);
|
fixture = TestBed.createComponent(ParticipantsComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
});
|
});
|
@ -0,0 +1,15 @@
|
|||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-participants',
|
||||||
|
templateUrl: './participants.component.html',
|
||||||
|
styleUrls: ['./participants.component.scss']
|
||||||
|
})
|
||||||
|
export class ParticipantsComponent implements OnInit {
|
||||||
|
|
||||||
|
constructor() { }
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root'
|
||||||
|
})
|
||||||
|
export class BikesService {
|
||||||
|
|
||||||
|
constructor() { }
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root'
|
||||||
|
})
|
||||||
|
export class LendingStationsService {
|
||||||
|
|
||||||
|
constructor() { }
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root'
|
||||||
|
})
|
||||||
|
export class ParticipantsService {
|
||||||
|
|
||||||
|
constructor() { }
|
||||||
|
}
|
Loading…
Reference in New Issue