Angular module for embedding OneSchema Importer
npm install @oneschema/angularA tool for embedding OneSchema into your application with Angular.
This library contains an Angular module and service to help you use OneSchema
with your application.
You can install this package with npm:
``bash`
npm i --save @oneschema/angular @oneschema/importer
Add the OneSchemaModule to your app.module:
`javascript
import { BrowserModule } from "@angular/platform-browser"
import { NgModule } from "@angular/core"
import { AppComponent } from "./app.component"
// Import the module from the OneSchema package
import { OneSchemaModule } from "@oneschema/angular"
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
// Import the module into the application, with configuration
OneSchemaModule.forRoot({
clientId: "CLIENT_ID",
templateKey: "TEMPLATE_KEY",
userJwt: "USER_JWT",
styles: {
position: "fixed",
top: "0",
left: "0",
width: "100vw",
height: "100vh",
},
}),
],
bootstrap: [AppComponent],
})
export class AppModule {}
`
Create a button to open the OneSchema importer and listen to events:
`javascript
import { Component } from '@angular/core'
import { OneSchemaService } from './oneschema.service'
@Component({
selector: 'oneschema-button',
template: ,
styles: [],
})
export class OneSchemaButton implements OnDestroy {
constructor(public oneschema: OneSchemaService) {
this.oneschema.on('success', this.onSuccess)
this.oneschema.on('error', this.onError)
this.oneschema.on('cancel', this.onCancel)
}
launch() {
this.oneschema.launch()
}
onSuccess(data: any) {
// handle success
}
onError(error: any) {
// handle error
}
onCancel() {
// handle cancel
}
ngOnDestroy() {
this.oneschema.off('success', this.onSuccess)
this.oneschema.off('error', this.onError)
this.oneschema.off('cancel', this.onCancel)
}
}
`
To style the iframe, either pass in styles prop to the module, add CSS to your global stylesheet, or to a component with ViewEncapsulation.None. The iframe's class will be what is passed to the module as the className prop or oneschema-iframe by default. Sample CSS for the iframe to take up the full viewport is:
`css`
.oneschema-iframe {
position: fixed;
right: 0;
top: 0;
width: 100vw;
height: 100vh;
}
Manage the iframe yourself by adding inline to your OneSchemaModule configuration and then making an iframe in a component:
`javascript
import { AfterViewInit, Component, ElementRef, ViewChild } from '@angular/core'
import { OneSchemaService } from '@oneschema/angular'
@Component({
selector: 'oneschema-iframe',
template: ,
styles: [
iframe {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
}
,
],
})
export class OneSchemaIframe implements AfterViewInit {
@ViewChild('oneschema') iframe?: ElementRef
constructor(public oneschema: OneSchemaService) {}
ngAfterViewInit() {
this.oneschema.setIframe(this.iframe!.nativeElement)
}
}
``
Please see 📚 OneSchema's documentation for 📒 API reference and other helpful guides.