Start database editor conversion
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-10-14 07:50:50 -05:00
parent ae24674717
commit c07f334d60
4 changed files with 159 additions and 125 deletions

View File

@@ -31,6 +31,9 @@
<ng-container *ngIf="node.isNorm()">
<editor-norm style="flex: 1;" [nodeId]="node.UUID"></editor-norm>
</ng-container>
<ng-container *ngIf="node.type === 'database_ref'">
<editor-database style="flex: 1;" [nodeId]="node.UUID"></editor-database>
</ng-container>
<ng-container *ngIf="node.type === 'code_ref'">
<editor-code style="flex: 1;" [nodeId]="node.UUID"></editor-code>
</ng-container>

View File

@@ -25,7 +25,7 @@ ion-icon.invisible {
color: var(--noded-background-code);
}
&.db {
&.database_ref {
color: var(--noded-background-db);
}
}

View File

@@ -23,6 +23,7 @@ export class EditorPage implements OnInit {
norm: 'fa fa-quote-left',
page: 'fa fa-sticky-note',
db: 'fa fa-database',
database_ref: 'fa fa-database',
code: 'fa fa-code',
code_ref: 'fa fa-code',
};