mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 13:17:53 +00:00
Merge pull request #1106 from nasa/search1093-b
Minor Search enhancements
This commit is contained in:
commit
44f8c2f49f
@ -126,16 +126,15 @@
|
|||||||
$p: $interiorMargin;
|
$p: $interiorMargin;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
line-height: 130%;
|
line-height: 130%;
|
||||||
//padding-left: $s * 2.25;
|
padding-left: $s * 2;
|
||||||
font-size: $s;
|
font-size: $s;
|
||||||
|
|
||||||
.clear-filters {
|
.clear-filters {
|
||||||
color: $colorInputIcon;
|
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
margin-right: $interiorMarginSm;
|
margin-right: $interiorMarginSm;
|
||||||
//position: absolute;
|
position: absolute;
|
||||||
//left: 1px;
|
left: 1px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -19,45 +19,62 @@
|
|||||||
this source code distribution or the Licensing information page available
|
this source code distribution or the Licensing information page available
|
||||||
at runtime from the About dialog for additional information.
|
at runtime from the About dialog for additional information.
|
||||||
-->
|
-->
|
||||||
<div class="l-flex-col flex-elem grows holder holder-search" ng-controller="SearchController as controller">
|
<div class="angular-w" ng-controller="SearchController as controller">
|
||||||
<div class="search-bar flex-elem"
|
<div class="l-flex-col flex-elem grows holder holder-search" ng-controller="SearchMenuController as menuController">
|
||||||
ng-controller="ToggleController as toggle"
|
<div class="search-bar flex-elem l-flex-row"
|
||||||
ng-class="{ holder: !(ngModel.input === '' || ngModel.input === undefined) }">
|
ng-controller="ToggleController as toggle"
|
||||||
<input class="search-input"
|
ng-class="{ holder: !(ngModel.input === '' || ngModel.input === undefined) }">
|
||||||
type="text"
|
<div class="holder flex-elem grows">
|
||||||
ng-model="ngModel.input"
|
<input class="search-input"
|
||||||
ng-keyup="controller.search()"/>
|
type="text"
|
||||||
<a class="clear-icon clear-input icon-x-in-circle"
|
ng-model="ngModel.input"
|
||||||
ng-class="{show: !(ngModel.input === '' || ngModel.input === undefined)}"
|
ng-keyup="controller.search()"/>
|
||||||
ng-click="ngModel.input = ''; controller.search()"></a>
|
<a class="clear-icon clear-input icon-x-in-circle"
|
||||||
<!-- To prevent double triggering of clicks on click away, render
|
ng-class="{show: !(ngModel.input === '' || ngModel.input === undefined)}"
|
||||||
non-clickable version of the button when menu active-->
|
ng-click="ngModel.input = ''; controller.search()"></a>
|
||||||
<a ng-if="!toggle.isActive()" class="menu-icon context-available"
|
|
||||||
ng-click="toggle.toggle()"></a>
|
|
||||||
<a ng-if="toggle.isActive()" class="menu-icon context-available"></a>
|
|
||||||
|
|
||||||
<mct-include key="'search-menu'"
|
|
||||||
class="menu-element search-menu-holder"
|
|
||||||
ng-class="{off: !toggle.isActive()}"
|
|
||||||
ng-model="ngModel"
|
|
||||||
parameters="{menuVisible: toggle.setState}">
|
|
||||||
</mct-include>
|
|
||||||
</div>
|
|
||||||
<div class="active-filter-display flex-elem holder"
|
|
||||||
ng-class="{off: ngModel.filtersString === '' || ngModel.filtersString === undefined || !ngModel.search}"
|
|
||||||
ng-controller="SearchMenuController as menuController">
|
|
||||||
<a class="clear-icon clear-filters icon-x-in-circle"
|
|
||||||
ng-click="ngModel.checkAll = true; menuController.checkAll()"></a>Filtered by: {{ ngModel.filtersString }}
|
|
||||||
</div>
|
|
||||||
<div class="search-results flex-elem holder grows vscroll"
|
|
||||||
ng-class="{ off: !(loading || results.length > 0), loading: loading }">
|
|
||||||
<mct-representation key="'search-item'"
|
|
||||||
ng-repeat="result in results"
|
|
||||||
mct-object="result.object"
|
|
||||||
ng-model="ngModel"
|
|
||||||
class="l-flex-row flex-elem grows">
|
|
||||||
</mct-representation>
|
|
||||||
<a class="load-more-button s-button vsm" ng-if="controller.areMore()" ng-click="controller.loadMore()">More Results</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
<!-- To prevent double triggering of clicks on click away, render
|
||||||
|
non-clickable version of the button when menu active-->
|
||||||
|
<a ng-if="!toggle.isActive()" class="menu-icon context-available"
|
||||||
|
ng-click="toggle.toggle()"></a>
|
||||||
|
<a ng-if="toggle.isActive()" class="menu-icon context-available"></a>
|
||||||
|
|
||||||
|
<mct-include key="'search-menu'"
|
||||||
|
class="menu-element search-menu-holder"
|
||||||
|
ng-class="{off: !toggle.isActive()}"
|
||||||
|
ng-model="ngModel"
|
||||||
|
parameters="{menuVisible: toggle.setState}">
|
||||||
|
</mct-include>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a class="holder s-button flex-elem btn-cancel"
|
||||||
|
ng-show="!(ngModel.input === '' || ngModel.input === undefined)"
|
||||||
|
ng-click="ngModel.input = ''; ngModel.checkAll = true; menuController.checkAll(); controller.search()">
|
||||||
|
Cancel</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="active-filter-display flex-elem holder"
|
||||||
|
ng-class="{off: ngModel.filtersString === '' || ngModel.filtersString === undefined || !ngModel.search}">
|
||||||
|
<a class="clear-filters icon-x-in-circle s-icon-button"
|
||||||
|
ng-click="ngModel.checkAll = true; menuController.checkAll()"></a>Filtered by: {{ ngModel.filtersString }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex-elem holder results-msg" ng-model="ngModel" ng-show="!loading && ngModel.search">
|
||||||
|
{{
|
||||||
|
!results.length > 0? 'No results found':
|
||||||
|
results.length + ' result' + (results.length > 1? 's':'') + ' found'
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="search-results flex-elem holder grows vscroll"
|
||||||
|
ng-class="{ off: !(loading || results.length > 0), loading: loading }">
|
||||||
|
<mct-representation key="'search-item'"
|
||||||
|
ng-repeat="result in results"
|
||||||
|
mct-object="result.object"
|
||||||
|
ng-model="ngModel"
|
||||||
|
class="l-flex-row flex-elem grows">
|
||||||
|
</mct-representation>
|
||||||
|
<a class="load-more-button s-button vsm" ng-if="controller.areMore()" ng-click="controller.loadMore()">More Results</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
Loading…
Reference in New Issue
Block a user