humainflow-web/src/app/layouts/tasks-executor/tasks-executor.html

25 lines
1.1 KiB
HTML

<div class="tasks-executor-shell flex flex-col flex-1 h-full">
<div class="flex flex-row flex-1 overflow-hidden gap-2">
<app-tasks-executions-list
class="w-[360px] shrink-0"
[groups]="groups()"
[selectedExecutionId]="selectedExecutionId()"
(executionSelected)="selectExecution($event)"
(executionDeleteRequested)="removeExecution($event)">
</app-tasks-executions-list>
<mat-card class="tasks-executor-viewer flex w-full flex-col overflow-hidden !rounded-md !bg-gray-100">
@if (showExecutionCreationLoader()) {
<div class="tasks-executor-loader">
<div class="tasks-executor-loader-card">
<span class="tasks-executor-spinner" aria-hidden="true"></span>
<div class="tasks-executor-loader-title">Creating execution...</div>
<div class="tasks-executor-loader-text">The task view is ready. Waiting for the new execution to appear.</div>
</div>
</div>
}
<app-task-execution-viewer [execution]="selectedExecution()"></app-task-execution-viewer>
</mat-card>
</div>
</div>