ux: search progress

This commit is contained in:
Torkel Ödegaard 2017-11-24 16:54:55 +01:00
parent bc81298d4c
commit 00df24b348
5 changed files with 22 additions and 12 deletions

View File

@ -80,7 +80,9 @@
</span>
</span>
<span class="search-item__actions">
<i class="fa" ng-class="{'fa-star': item.isStarred, 'fa-star-o': !item.isStarred}"></i>
<span class="search-item__actions__item" ng-click="ctrl.toggleStar()">
<i class="fa" ng-class="{'fa-star': item.isStarred, 'fa-star-o': !item.isStarred}"></i>
</span>
</span>
</a>
</div>

View File

@ -1,5 +1,3 @@
///<reference path="../../headers/common.d.ts" />
import config from 'app/core/config';
import _ from 'lodash';
import coreModule from 'app/core/core_module';

View File

@ -2,6 +2,7 @@ import _ from 'lodash';
import coreModule from 'app/core/core_module';
import impressionSrv from 'app/core/services/impression_srv';
import store from 'app/core/store';
import { contextSrv } from 'app/core/services/context_srv';
export class SearchSrv {
recentIsOpen: boolean;
@ -20,6 +21,7 @@ export class SearchSrv {
title: 'Recent Boards',
icon: 'fa fa-clock-o',
score: -1,
removable: true,
expanded: this.recentIsOpen,
toggle: this.toggleRecent.bind(this),
items: result,
@ -60,6 +62,10 @@ export class SearchSrv {
}
private getStarred(sections) {
if (!contextSrv.isSignedIn) {
return Promise.resolve();
}
return this.backendSrv.search({starred: true, limit: 5}).then(result => {
if (result.length > 0) {
sections['starred'] = {

View File

@ -1,6 +1,7 @@
import { SearchSrv } from 'app/core/services/search_srv';
import { BackendSrvMock } from 'test/mocks/backend_srv';
import impressionSrv from 'app/core/services/impression_srv';
import { contextSrv } from 'app/core/services/context_srv';
jest.mock('app/core/store', () => {
return {
@ -22,6 +23,7 @@ describe('SearchSrv', () => {
backendSrvMock = new BackendSrvMock();
searchSrv = new SearchSrv(backendSrvMock, Promise);
contextSrv.isSignedIn = true;
impressionSrv.getDashboardOpened = jest.fn().mockReturnValue([]);
});

View File

@ -141,14 +141,6 @@
&.selected {
background: $list-item-hover-bg;
}
// .fa-star, .fa-star-o {
// padding-left: 13px;
// }
//
// .fa-star {
// color: $orange;
// }
}
.search-item__body {
@ -182,7 +174,17 @@
}
.search-item__actions {
visibility: hidden;
flex: 0 0 auto;
}
.search-item__actions__item {
display: none;
}
.search-item:hover {
.search-item__actions__item {
opacity: 0.8;
}
}
.search-button-row {