-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* [ACA-4486] support search widget chips layout * * revert to old config * * resolved rebase conflicts * [ci:force] force e2e * [ci:force] docs update and remove directive added * [ci:force] config updated * [ci:force] add missing app config schema to prod build
- Loading branch information
Showing
97 changed files
with
3,619 additions
and
1,269 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -350,7 +350,5 @@ | |
"ACTION_TYPE": "Action Type" | ||
} | ||
}, | ||
"SEARCH_FORMS": { | ||
"ALL": "All" | ||
} | ||
"DEFAULT_SEARCH": "Default" | ||
} |
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
39 changes: 39 additions & 0 deletions
39
demo-shell/src/app/components/search/search-filter-chips.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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<div class="app-search-results"> | ||
<div class="app-search-results__content"> | ||
<mat-progress-bar *ngIf="isLoading" color="primary" mode="indeterminate"></mat-progress-bar> | ||
<div class="app-search-results__sorting"> | ||
<div style="padding: 0 12px"> | ||
<adf-search-form></adf-search-form> | ||
</div> | ||
|
||
<mat-divider [vertical]="true"></mat-divider> | ||
|
||
<div style="padding: 0 12px; flex: 65%"> | ||
<adf-search-filter-chips></adf-search-filter-chips> | ||
</div> | ||
|
||
<mat-icon adf-reset-search matTooltip="reset" style="padding-right: 5px;">refresh</mat-icon> | ||
|
||
<adf-search-sorting-picker style="width: 240px"></adf-search-sorting-picker> | ||
</div> | ||
<app-files-component | ||
[showHeader]="showHeader" | ||
[sorting]="sorting" | ||
[sortingMode]="'server'" | ||
[showRecentFiles]="false" | ||
[showSitePicker]="false" | ||
[showSettingsPanel]="false" | ||
[currentFolderId]="null" | ||
[nodeResult]="$any(data)" | ||
[disableDragArea]="true" | ||
[pagination]="pagination" | ||
[searchTerm]="searchedWord" | ||
(changedPageSize)="onRefreshPagination($event)" | ||
(changedPageNumber)="onRefreshPagination($event)" | ||
(turnedNextPage)="onRefreshPagination($event)" | ||
(loadNext)="onRefreshPagination($event)" | ||
(turnedPreviousPage)="onRefreshPagination($event)" | ||
(deleteElementSuccess)="onDeleteElementSuccess()"> | ||
</app-files-component> | ||
</div> | ||
</div> |
44 changes: 44 additions & 0 deletions
44
demo-shell/src/app/components/search/search-filter-chips.component.scss
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,44 @@ | ||
.app-search-results { | ||
display: flex; | ||
margin-left: 5px; | ||
|
||
.app-search-settings { | ||
width: 260px; | ||
border: 1px solid #eee; | ||
} | ||
|
||
&__facets { | ||
margin: 5px; | ||
} | ||
|
||
&__content { | ||
flex: 1; | ||
} | ||
|
||
&__sorting { | ||
padding-top: 16px; | ||
padding-bottom: 16px; | ||
display: flex; | ||
} | ||
} | ||
|
||
div.app-search-results-container { | ||
padding: 0 20px 20px; | ||
} | ||
|
||
.app-search-title { | ||
font-size: 22px; | ||
padding: 15px 0; | ||
} | ||
|
||
@media screen and (max-width: 600px) { | ||
:host .app-col-display-name { | ||
min-width: 100px; | ||
} | ||
:host .app-col-modified-at, :host .app-col-modified-by { | ||
display: none; | ||
} | ||
:host div.app-search-results-container table { | ||
width: 100%; | ||
} | ||
} |
Oops, something went wrong.