mirror of
https://github.com/bpatrik/pigallery2.git
synced 2024-11-24 08:42:24 +02:00
design bug fix (search and settings badge)
This commit is contained in:
parent
48aaf54c7d
commit
930c1a2933
@ -138,6 +138,7 @@ apt-get install build-essential libkrb5-dev gcc g++
|
||||
* Random photo url
|
||||
* You can generate an url that returns a random photo from your gallery. You can use this feature to develop 3rd party applications, like: changing desktop background
|
||||
* video support
|
||||
* uses ffmpeg and ffprobe to generate video thumbnails
|
||||
* **Markdown based blogging support** - `future plan`
|
||||
* you can write some note in the blog.md for every directory
|
||||
* bug free :) - `In progress`
|
||||
|
@ -5,6 +5,7 @@ import {SQLConnection} from './SQLConnection';
|
||||
import {PhotoEntity} from './enitites/PhotoEntity';
|
||||
import {DirectoryEntity} from './enitites/DirectoryEntity';
|
||||
import {MediaEntity} from './enitites/MediaEntity';
|
||||
import {VideoEntity} from './enitites/VideoEntity';
|
||||
|
||||
export class SearchManager implements ISearchManager {
|
||||
|
||||
@ -27,6 +28,7 @@ export class SearchManager implements ISearchManager {
|
||||
|
||||
let result: AutoCompleteItem[] = [];
|
||||
const photoRepository = connection.getRepository(PhotoEntity);
|
||||
const videoRepository = connection.getRepository(VideoEntity);
|
||||
const mediaRepository = connection.getRepository(MediaEntity);
|
||||
const directoryRepository = connection.getRepository(DirectoryEntity);
|
||||
|
||||
@ -60,13 +62,21 @@ export class SearchManager implements ISearchManager {
|
||||
.filter(p => p.toLowerCase().indexOf(text.toLowerCase()) !== -1), SearchTypes.position));
|
||||
});
|
||||
|
||||
result = result.concat(this.encapsulateAutoComplete((await mediaRepository
|
||||
result = result.concat(this.encapsulateAutoComplete((await photoRepository
|
||||
.createQueryBuilder('media')
|
||||
.select('DISTINCT(media.name)')
|
||||
.where('media.name LIKE :text COLLATE utf8_general_ci', {text: '%' + text + '%'})
|
||||
.limit(5)
|
||||
.getRawMany())
|
||||
.map(r => r.name), SearchTypes.image));
|
||||
.map(r => r.name), SearchTypes.photo));
|
||||
|
||||
result = result.concat(this.encapsulateAutoComplete((await videoRepository
|
||||
.createQueryBuilder('media')
|
||||
.select('DISTINCT(media.name)')
|
||||
.where('media.name LIKE :text COLLATE utf8_general_ci', {text: '%' + text + '%'})
|
||||
.limit(5)
|
||||
.getRawMany())
|
||||
.map(r => r.name), SearchTypes.video));
|
||||
|
||||
result = result.concat(this.encapsulateAutoComplete((await directoryRepository
|
||||
.createQueryBuilder('dir')
|
||||
@ -91,9 +101,15 @@ export class SearchManager implements ISearchManager {
|
||||
resultOverflow: false
|
||||
};
|
||||
|
||||
const query = connection
|
||||
.getRepository(MediaEntity)
|
||||
.createQueryBuilder('media')
|
||||
let repostiroy = connection.getRepository(MediaEntity);
|
||||
|
||||
if (searchType === SearchTypes.photo) {
|
||||
repostiroy = connection.getRepository(PhotoEntity);
|
||||
} else if (searchType === SearchTypes.video) {
|
||||
repostiroy = connection.getRepository(VideoEntity);
|
||||
}
|
||||
|
||||
const query = repostiroy.createQueryBuilder('media')
|
||||
.innerJoinAndSelect('media.directory', 'directory')
|
||||
.orderBy('media.metadata.creationDate', 'ASC');
|
||||
|
||||
@ -102,7 +118,7 @@ export class SearchManager implements ISearchManager {
|
||||
query.orWhere('directory.name LIKE :text COLLATE utf8_general_ci', {text: '%' + text + '%'});
|
||||
}
|
||||
|
||||
if (!searchType || searchType === SearchTypes.image) {
|
||||
if (!searchType || searchType === SearchTypes.photo || searchType === SearchTypes.video) {
|
||||
query.orWhere('media.name LIKE :text COLLATE utf8_general_ci', {text: '%' + text + '%'});
|
||||
}
|
||||
|
||||
@ -173,7 +189,7 @@ export class SearchManager implements ISearchManager {
|
||||
return result;
|
||||
}
|
||||
|
||||
private encapsulateAutoComplete(values: Array<string>, type: SearchTypes): Array<AutoCompleteItem> {
|
||||
private encapsulateAutoComplete(values: string[], type: SearchTypes): Array<AutoCompleteItem> {
|
||||
const res = [];
|
||||
values.forEach((value) => {
|
||||
res.push(new AutoCompleteItem(value, type));
|
||||
|
@ -2,7 +2,8 @@ export enum SearchTypes {
|
||||
directory = 1,
|
||||
keyword = 2,
|
||||
position = 3,
|
||||
image = 4
|
||||
photo = 4,
|
||||
video = 5
|
||||
}
|
||||
|
||||
export class AutoCompleteItem {
|
||||
|
@ -55,10 +55,9 @@ ng2-slim-loading-bar {
|
||||
}
|
||||
}
|
||||
|
||||
.badge {
|
||||
margin-left: -5px;
|
||||
padding: 0;
|
||||
background-color: transparent;
|
||||
.navbar-badge {
|
||||
border-radius: 1rem !important;
|
||||
margin-left: -10px;
|
||||
}
|
||||
|
||||
app-language {
|
||||
@ -71,12 +70,16 @@ app-language {
|
||||
}
|
||||
|
||||
|
||||
|
||||
a.dropdown-item {
|
||||
padding:0.3rem 1.0rem 0.3rem 0.8rem;
|
||||
padding: 0.3rem 1.0rem 0.3rem 0.8rem;
|
||||
}
|
||||
|
||||
a.dropdown-item span{
|
||||
a.dropdown-item span {
|
||||
padding-right: 0.8rem;
|
||||
}
|
||||
|
||||
|
||||
a.dropdown-item span.badge {
|
||||
padding: 0.25em 0.4em 0.25rem 0;
|
||||
margin-left: -0.8rem;
|
||||
}
|
||||
|
@ -28,7 +28,7 @@
|
||||
type="button" class="btn btn-dark dropdown-toggle"
|
||||
aria-controls="dropdown-basic">
|
||||
<span class="oi oi-menu"></span>
|
||||
<span *ngIf="isAdmin() && notificationService.notifications.length>0" class="badge">{{notificationService.notifications.length}}</span>
|
||||
<span *ngIf="isAdmin() && notificationService.notifications.length>0" class="navbar-badge badge badge-warning">{{notificationService.notifications.length}}</span>
|
||||
|
||||
</button>
|
||||
<ul id="dropdown-basic" *dropdownMenu
|
||||
|
@ -54,3 +54,7 @@ app-gallery-directory {
|
||||
-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
|
||||
}
|
||||
}
|
||||
|
||||
.search-type{
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
@ -8,7 +8,8 @@
|
||||
: {{countDown.day}}
|
||||
<ng-container i18n>days</ng-container>
|
||||
,
|
||||
{{("0"+countDown.hour).slice(-2)}}:{{("0"+countDown.minute).slice(-2)}}:{{("0"+countDown.second).slice(-2)}}
|
||||
{{("0" + countDown.hour).slice(-2)}}:{{("0" + countDown.minute).slice(-2)}}
|
||||
:{{("0" + countDown.second).slice(-2)}}
|
||||
</span>
|
||||
</li>
|
||||
<li class="nav-item" *ngIf="showSearchBar">
|
||||
@ -21,7 +22,7 @@
|
||||
|
||||
<ng-container navbar-menu>
|
||||
<li role="menuitem" *ngIf="showRandomPhotoBuilder">
|
||||
<app-gallery-random-query-builder ></app-gallery-random-query-builder>
|
||||
<app-gallery-random-query-builder></app-gallery-random-query-builder>
|
||||
</li>
|
||||
</ng-container>
|
||||
|
||||
@ -47,13 +48,14 @@
|
||||
<ol class="breadcrumb">
|
||||
<li class="active">
|
||||
<ng-container i18n>Searching for:</ng-container>
|
||||
<span [ngSwitch]="_galleryService.content.value.searchResult.searchType">
|
||||
<span *ngSwitchCase="SearchTypes.image" class="oi oi-image"></span>
|
||||
<span class="search-type" [ngSwitch]="_galleryService.content.value.searchResult.searchType">
|
||||
<span *ngSwitchCase="SearchTypes.photo" class="oi oi-image"></span>
|
||||
<span *ngSwitchCase="SearchTypes.video" class="oi oi-video"></span>
|
||||
<span *ngSwitchCase="SearchTypes.directory" class="oi oi-folder"></span>
|
||||
<span *ngSwitchCase="SearchTypes.keyword" class="oi oi-tag"></span>
|
||||
<span *ngSwitchCase="SearchTypes.position" class="oi oi-map-marker"></span>
|
||||
</span>
|
||||
<strong>{{_galleryService.content.value.searchResult.searchText}}</strong>
|
||||
<strong> {{_galleryService.content.value.searchResult.searchText}}</strong>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
|
@ -21,7 +21,8 @@
|
||||
<div class="autocomplete-item" *ngFor="let item of autoCompleteItems">
|
||||
<a [routerLink]="['/search', item.text, {type: SearchTypes[item.type]}]">
|
||||
<span [ngSwitch]="item.type">
|
||||
<span *ngSwitchCase="SearchTypes.image" class="oi oi-image"></span>
|
||||
<span *ngSwitchCase="SearchTypes.photo" class="oi oi-image"></span>
|
||||
<span *ngSwitchCase="SearchTypes.video" class="oi oi-video"></span>
|
||||
<span *ngSwitchCase="SearchTypes.directory" class="oi oi-folder"></span>
|
||||
<span *ngSwitchCase="SearchTypes.keyword" class="oi oi-tag"></span>
|
||||
<span *ngSwitchCase="SearchTypes.position" class="oi oi-map-marker"></span>
|
||||
|
Loading…
Reference in New Issue
Block a user