Skip to content
Snippets Groups Projects
Commit d6674600 authored by cazenave's avatar cazenave
Browse files

add mapping

parent 8f07cce4
No related branches found
No related tags found
No related merge requests found
......@@ -2883,6 +2883,14 @@
}
}
},
"@ngx-lite/json-ld": {
"version": "0.6.2",
"resolved": "https://registry.npmjs.org/@ngx-lite/json-ld/-/json-ld-0.6.2.tgz",
"integrity": "sha512-oFWyYqBPOKQZBqP2ev3Xkn5UjjiWAC1dKYsCduvpDJTA3phc573NhPDpBqxMDfoeIuu72QOJogPehFWJV5991w==",
"requires": {
"tslib": "^1.9.0"
}
},
"@nodelib/fs.scandir": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz",
......
......@@ -44,6 +44,7 @@ import { AccountComponent } from './account/account.component';
import { AccountModule } from './account/account.module';
import { SearchModule} from './search/search.module';
import { StatsComponent } from './stats/stats.component';
import { MappingComponent } from './mapping/mapping.component';
@NgModule({
......@@ -64,7 +65,8 @@ import { StatsComponent } from './stats/stats.component';
PublishApiComponent,
SearchComponent,
AccountComponent,
StatsComponent
StatsComponent,
MappingComponent
],
imports: [
BrowserModule,
......
<p>mapping works!</p>
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { MappingComponent } from './mapping.component';
describe('MappingComponent', () => {
let component: MappingComponent;
let fixture: ComponentFixture<MappingComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ MappingComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(MappingComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-mapping',
templateUrl: './mapping.component.html',
styleUrls: ['./mapping.component.scss']
})
export class MappingComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}
......@@ -36,6 +36,7 @@
<p class="lorem">
Map your metadata schema with DCAT schema
</p>
<app-mapping></app-mapping>
<button class="prev-button" nbButton nbStepperPrevious>prev</button>
<button class="next-button" nbButton nbStepperNext>next</button>
</nb-step>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment