aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/app/shared
diff options
context:
space:
mode:
Diffstat (limited to 'client/app/shared')
-rw-r--r--client/app/shared/index.ts3
-rw-r--r--client/app/shared/search-field.type.ts1
-rw-r--r--client/app/shared/search.component.html17
-rw-r--r--client/app/shared/search.component.ts47
-rw-r--r--client/app/shared/search.model.ts6
5 files changed, 74 insertions, 0 deletions
diff --git a/client/app/shared/index.ts b/client/app/shared/index.ts
new file mode 100644
index 000000000..a49a4f1a9
--- /dev/null
+++ b/client/app/shared/index.ts
@@ -0,0 +1,3 @@
1export * from './search-field.type';
2export * from './search.component';
3export * from './search.model';
diff --git a/client/app/shared/search-field.type.ts b/client/app/shared/search-field.type.ts
new file mode 100644
index 000000000..846236290
--- /dev/null
+++ b/client/app/shared/search-field.type.ts
@@ -0,0 +1 @@
export type SearchField = "name" | "author" | "podUrl" | "magnetUri";
diff --git a/client/app/shared/search.component.html b/client/app/shared/search.component.html
new file mode 100644
index 000000000..fb13ac72e
--- /dev/null
+++ b/client/app/shared/search.component.html
@@ -0,0 +1,17 @@
1<div class="input-group">
2 <div class="input-group-btn" dropdown>
3 <button id="simple-btn-keyboard-nav" type="button" class="btn btn-default" dropdownToggle>
4 {{ getStringChoice(searchCriterias.field) }} <span class="caret"></span>
5 </button>
6 <ul class="dropdown-menu" role="menu" aria-labelledby="simple-btn-keyboard-nav">
7 <li *ngFor="let choice of choiceKeys" class="dropdown-item">
8 <a class="dropdown-item" href="#" (click)="choose($event, choice)">{{ getStringChoice(choice) }}</a>
9 </li>
10 </ul>
11 </div>
12
13 <input
14 type="text" id="search-video" name="search-video" class="form-control" placeholder="Search a video..." class="form-control"
15 [(ngModel)]="searchCriterias.value" (keyup.enter)="doSearch()"
16 >
17</div>
diff --git a/client/app/shared/search.component.ts b/client/app/shared/search.component.ts
new file mode 100644
index 000000000..519810f9b
--- /dev/null
+++ b/client/app/shared/search.component.ts
@@ -0,0 +1,47 @@
1import { Component, EventEmitter, Output } from '@angular/core';
2
3import { DROPDOWN_DIRECTIVES} from 'ng2-bootstrap/components/dropdown';
4
5import { Search } from './search.model';
6import { SearchField } from './search-field.type';
7
8@Component({
9 selector: 'my-search',
10 templateUrl: 'client/app/shared/search.component.html',
11 directives: [ DROPDOWN_DIRECTIVES ]
12})
13
14export class SearchComponent {
15 @Output() search: EventEmitter<Search> = new EventEmitter<Search>();
16
17 searchCriterias: Search = {
18 field: 'name',
19 value: ''
20 };
21 fieldChoices = {
22 name: 'Name',
23 author: 'Author',
24 podUrl: 'Pod Url',
25 magnetUri: 'Magnet Uri'
26 };
27
28 get choiceKeys() {
29 return Object.keys(this.fieldChoices);
30 }
31
32 getStringChoice(choiceKey: SearchField): string {
33 return this.fieldChoices[choiceKey];
34 }
35
36 choose($event:MouseEvent, choice: SearchField) {
37 $event.preventDefault();
38 $event.stopPropagation();
39
40 this.searchCriterias.field = choice;
41 }
42
43 doSearch(): void {
44 this.search.emit(this.searchCriterias);
45 }
46
47}
diff --git a/client/app/shared/search.model.ts b/client/app/shared/search.model.ts
new file mode 100644
index 000000000..932a6566c
--- /dev/null
+++ b/client/app/shared/search.model.ts
@@ -0,0 +1,6 @@
1import { SearchField } from './search-field.type';
2
3export interface Search {
4 field: SearchField;
5 value: string;
6}