forked from eclipse-edc/DataDashboard
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: Added support for building images on tag on main branch. Renamed action. * feature: Added support for catalog. Added possibility to create assets with arbitrary dataDestinations. Added possibility to start data transfers to arbitrary dataDestinations. Transfer Hirstory entries will be sorted by createDate now.
- Loading branch information
Showing
10 changed files
with
112 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 14 additions & 16 deletions
30
...components/catalog-browser-transfer-dialog/catalog-browser-transfer-dialog.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,24 @@ | ||
<mat-dialog-content *ngIf="storageTypes as storageTypes"> | ||
|
||
<mat-form-field class="form-field" color="accent" id="form-field-destination"> | ||
<mat-label>Destination</mat-label> | ||
<mat-select [(ngModel)]="storageTypeId"> | ||
<mat-option *ngFor="let storageType of storageTypes" [value]="storageType.id"> | ||
{{storageType.name}} | ||
</mat-option> | ||
</mat-select> | ||
</mat-form-field> | ||
<mat-form-field class="form-field-stretch" color="accent" id="form-field-permissions"> | ||
<mat-label>Data Destination (JSON)</mat-label> | ||
<input [(ngModel)]="dataDestination" matInput> | ||
</mat-form-field> | ||
|
||
</mat-dialog-content> | ||
|
||
<mat-dialog-actions> | ||
<div> | ||
<button (click)="onTransfer()" color="accent" mat-stroked-button> | ||
<mat-icon>downloading</mat-icon> Start transfer | ||
</button> | ||
<button (click)="onTransfer()" color="accent" mat-stroked-button> | ||
<mat-icon>downloading</mat-icon> | ||
Start transfer | ||
</button> | ||
|
||
<button color="accent" mat-dialog-close mat-stroked-button> | ||
<mat-icon>cancel</mat-icon> Cancel | ||
</button> | ||
</div> | ||
<!-- <mat-progress-bar mode="indeterminate" color="accent"></mat-progress-bar> --> | ||
<button color="accent" mat-dialog-close mat-stroked-button> | ||
<mat-icon>cancel</mat-icon> | ||
Cancel | ||
</button> | ||
</div> | ||
<!-- <mat-progress-bar mode="indeterminate" color="accent"></mat-progress-bar> --> | ||
|
||
</mat-dialog-actions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import {ContractOffer} from "./contract-offer"; | ||
|
||
export interface ContractOfferResponse { | ||
id: string; | ||
contractOffers: ContractOffer[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters