dnet-docker/dnet-app/frontends/is/src/app/oai-explorer/oai-explorer.component.html

27 lines
821 B
HTML

<h2>Oai Explorer</h2>
<mat-form-field appearance="fill" floatLabel="always" style="width: 100%;">
<mat-label>OAI BaseUrl</mat-label>
<input matInput [(ngModel)]="oaiBaseUrl" />
<button mat-stroked-button matSuffix color="primary" (click)="changeUrl(oaiBaseUrl, 1)">
Info
</button>
<button mat-stroked-button matSuffix color="primary" (click)="changeUrl(oaiBaseUrl, 2)">
Sets
</button>
<button mat-stroked-button matSuffix color="primary" (click)="changeUrl(oaiBaseUrl, 3)">
MD Formats
</button>
<button mat-stroked-button matSuffix color="primary" (click)="changeUrl(oaiBaseUrl, 4)">
Records
</button>
<button mat-stroked-button matSuffix color="primary" (click)="changeUrl(oaiBaseUrl, 5)" style="margin-right: 0.5em;">
Identifiers
</button>
</mat-form-field>
<pre>
{{oaiResponse | json}}
</pre>