blob: b334d8189567eeff3e21e2d338d6ef9901a21663 [file] [log] [blame]
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to You under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~
-->
<div fxLayout="column" class="page-container">
<div
fxFlex="100"
fxLayout="column"
fxLayoutAlign="center center"
*ngIf="!allElementsLoaded"
>
<mat-spinner
[diameter]="30"
color="accent"
mode="indeterminate"
></mat-spinner>
<p>Preparing pipeline editor...</p>
</div>
<div
*ngIf="allElementsLoaded"
class="fixed-height editor-container-inner"
fxLayout="row"
fxFlex="100"
>
<div fxFlex="250px">
<div
id="shepherd-test"
style="
padding: 0;
border-bottom: 1px solid #ffffff;
margin-right: 5px;
"
>
<sp-pipeline-element-icon-stand
[allElements]="allElements"
*ngIf="allElementsLoaded"
>
</sp-pipeline-element-icon-stand>
</div>
</div>
<sp-pipeline-assembly
fxFlex="100"
style="margin-left: 10px"
*ngIf="allElementsLoaded && allMetadataLoaded"
[rawPipelineModel]="rawPipelineModel"
[allElements]="allElements"
[originalPipeline]="originalPipeline"
[pipelineCanvasMetadata]="pipelineCanvasMetadata"
[pipelineCanvasMetadataAvailable]="pipelineCanvasMetadataAvailable"
>
</sp-pipeline-assembly>
</div>
</div>