mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 14:32:22 +00:00
f77c6c821c
* Legacy style migration in progress - Working bottom up, many legacy items commented out. Stopped at controls/indicators; * Further migrations and deprecating - Legacy indicator styles moved; * WIP Styles migration - s-button converted to c-button, WIP; - Other * Significant progress on migration, but still very WIP - Mostly constants and overlay styling; - Also bubbles and splitter; - TODO: fix tree in overlay and splitter in imagery! * Fix Summary Widgets UI WIP - Remove non-working status 'editing' checks; * Fix Summary Widgets UI WIP - Remove non-working status 'editing' checks; - view-control > c-disclosure-triangle; * Fix Summary Widgets UI WIP - Markup changes; - Migrate CSS to styles-new, remove old; * Fix Summary Widgets UI WIP - Rule formatting and layout; - Refinement to _controls / select {} padding; * Fix Summary Widgets UI WIP - Toolbar styles made more portable; - Palette style migration; - Very WIP; * Fix Summary Widgets UI WIP - Palettes all fixed and functional; - Conditions layout; - New c-button--swatched styles; * Fix Summary Widgets UI WIP - Clean up code; * Fix Summary Widgets UI WIP - Fix button in Test Data area; * Fix layout in shell left pane due to elements being moved - Styles fixed and refined; * Fixed palettes - Fixed icon palette; - Significant refinement to general palette styles; * Significant fixes for Summary Widgets - Widget editing UI fixed; - JS cleanups and improvements; - CSS, JS code cleanup; * Migrate tree view used in Locator - Mods to legacy markup; - Mods to current CSS; - Removed import of legacy tree CSS in legacy-styles.scss; * Migrate archetypes - l-flex-row, l-flex-col, etc. moved to legacy; - grid-* styles cleaned up and moved, @extends removed; - WIP on c-object-label, move styles from mct-tree.vue into ObjectLabel .vue; - TODO: finish up c-object-label, cleanups in mct-tree.vue; * Migrate effects and animation mixins * Object labels, legacy cleanup - Add and apply .c-object-label for tree node elements; - Remove legacy class "tree" from markup; - Tweak color of tree item hover for better contrast in Inspector; * Fix palettes in Inspector * Various - Fix hover color in tree for better mechanics on a variety of bgs; - Fix object label in Locator tree; - Remove overlay blocker test color; * Significant work for Summary Widgets, mctForm, compact form - Forms in overlay dialogs fixed; - form, compact-form, other classes migrated into new _forms.scss; - Fixes for Summary Widgets; - Theme constants files synced, add form values; - Removed import of legacy forms/elems SCSS file; * Migrate various - Autoflow tabular; - Datetime; - Channel selector; - Form validation; * Migrate wait spinners, final cleanup * Remove old src/styles directory - Remove old Snow and Espresso plugins; - Remove refs to old Snow and Espresso config'd aliases; * Update Palette.js * Update Palette.js * Removed commented code * Removed commented code * Migrate About, startup and splash screen styles
79 lines
4.2 KiB
HTML
79 lines
4.2 KiB
HTML
<!--
|
|
Open MCT, Copyright (c) 2014-2018, United States Government
|
|
as represented by the Administrator of the National Aeronautics and Space
|
|
Administration. All rights reserved.
|
|
|
|
Open MCT is licensed 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.
|
|
|
|
Open MCT includes source code licensed under additional open source
|
|
licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
this source code distribution or the Licensing information page available
|
|
at runtime from the About dialog for additional information.
|
|
-->
|
|
<div class="angular-w l-flex-col flex-elem grows holder" ng-controller="SearchController as controller">
|
|
<div class="l-flex-col flex-elem grows holder holder-search" ng-controller="SearchMenuController as menuController">
|
|
<div class="c-search-btn-wrapper"
|
|
ng-controller="ToggleController as toggle"
|
|
ng-class="{ holder: !(ngModel.input === '' || ngModel.input === undefined) }">
|
|
<div class="c-search">
|
|
<input class="c-search__search-input"
|
|
type="text" tabindex="10000"
|
|
ng-model="ngModel.input"
|
|
ng-keyup="controller.search()"/>
|
|
<a class="c-search__clear-input clear-icon icon-x-in-circle"
|
|
ng-class="{show: !(ngModel.input === '' || ngModel.input === undefined)}"
|
|
ng-click="ngModel.input = ''; controller.search()"></a>
|
|
<!-- 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 c-search__search-menu-holder"
|
|
ng-class="{invisible: !toggle.isActive()}"
|
|
ng-model="ngModel"
|
|
parameters="{menuVisible: toggle.setState}">
|
|
</mct-include>
|
|
</div>
|
|
|
|
<a class="c-button c-search__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="{invisible: 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="{invisible: !(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>
|