Skip to content

Commit

Permalink
Zowe Suite v1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zowe-robot authored Mar 25, 2020
2 parents c50f46a + 4b3a1d5 commit 70e8dcf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 57 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
-->
<div class="editor-instruction" *ngIf="noOpenFile">
<div class="instruction">
<!-- <img src="./assets/logo.svg" alt="logo"> -->
<span class="welcome" style="color: #6ba4ff">Zowe Editor</span>
<p>Use the explorer on the left-hand side to start your journey!
</p>
Expand Down
45 changes: 0 additions & 45 deletions webClient/src/app/editor/frame/frame.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,55 +9,10 @@
Copyright Contributors to the Zowe Project.
-->
<div class="main-container">
<!--<div class="gz-activity-bar">
<div *ngFor="let item of activityBar; index as i;" class="gz-activity-button" [ngClass]="getActivityButtonClasses(item)"
(click)="switchActivity(i)">
<mat-icon>{{item.icon}}</mat-icon>
</div>
</div>-->
<aside class="gz-tree">
<div class="section-container" [ngClass]="{'active':this.activityBar[0].active}">
<app-project-tree></app-project-tree>
</div>
<!-- <div class="section-container" [ngClass]="{'active':this.activityBar[1].active}">
<div class="section-title">
Search
</div>
<perfect-scrollbar [config]="scrollConfig" [disabled]="false">
<div class="search-body">
<h5>Search Files:</h5>
<mat-form-field class="search-form-field">
<input matInput type="text" placeholder="File Name" [disabled]="disableInput()" [(ngModel)]="searchField" (input)="searchFileByName()"
/>
<button mat-button *ngIf="searchField" matSuffix mat-icon-button aria-label="Clear" (click)="clearSearch('searchField',false)">
<mat-icon>close</mat-icon>
</button>
</mat-form-field>
<div class="search-result-item" [ngClass]="{ 'last-item':lastItem }" *ngFor="let file of fileResultList" (click)="openFile(file)">
<div class="search-container">
<mat-icon class="tree-icon">{{nodeIcon(file)}}</mat-icon>
<span>{{ file.parent.model.name + '(' + file.name + ')'}}</span>
</div>
</div>
<h5>Search File Content:</h5>
<mat-form-field class="search-form-field">
<input matInput type="text" placeholder="File Content" [disabled]="disableInput()" [(ngModel)]="contentField" (input)="searchFileContent()"
/>
<button mat-button *ngIf="contentField" matSuffix mat-icon-button aria-label="Clear" (click)="clearSearch('contentField',true)">
<mat-icon>close</mat-icon>
</button>
</mat-form-field>
<div class="search-result-item" *ngFor="let file of contentResultList">
<div class="search-container" (dblclick)="jumpToFile(file)">
<mat-icon class="tree-icon">{{nodeIcon(file)}}</mat-icon>
<span class="search-result-file" [title]="file.dataset + '(' + file.member + ')'">{{file.dataset + '(' + file.member + ')'}}</span>
</div>
<div class="search-result-content" [title]="file.content" (dblclick)="jumpToFile(file)">{{fileResultHtml(file.content)}}</div>
</div>
<div class="tips" *ngIf="cantSearch">*Please open a project before you search.</div>
</div>
</perfect-scrollbar>
</div> -->
</aside>
<div class="gz-editor">
<app-code-editor></app-code-editor>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,7 @@
Copyright Contributors to the Zowe Project.
-->
<!--
<div class="open-project" *ngIf="!nodes">
<span>Open a directory to start your journey!</span>
<button mat-raised-button class="button-open" color="primary" (click)="openDirectory()">Open Directory</button>
</div>
-->

<div class="file-explorer-container">
<zlux-file-explorer #fileExplorer
(nodeClick)="onNodeClick($event)"
Expand Down
8 changes: 3 additions & 5 deletions webClient/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,20 @@
<base href="./">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> -->
<!-- <link rel="stylesheet" href="node_modules/@angular/material/prebuilt-themes/indigo-pink.css"> -->
<!-- <link rel="stylesheet" href="node_modules/angular-tree-component/dist/angular-tree-component.css"> -->

<style type="text/css">
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;e
padding: 0;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
0%,
70%,
100% {e
100% {
-webkit-transform: scale3D(1, 1, 1);
transform: scale3D(1, 1, 1);
}
Expand Down

0 comments on commit 70e8dcf

Please sign in to comment.