]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Add search with field choose support in client
authorChocobozzz <florian.bigard@gmail.com>
Mon, 23 May 2016 07:30:18 +0000 (09:30 +0200)
committerChocobozzz <florian.bigard@gmail.com>
Mon, 23 May 2016 07:38:38 +0000 (09:38 +0200)
client/angular/app/app.component.html
client/angular/app/app.component.scss
client/angular/app/app.component.ts
client/angular/app/search.component.html [new file with mode: 0644]
client/angular/app/search.component.ts [new file with mode: 0644]
client/angular/app/search.ts [new file with mode: 0644]
client/angular/videos/components/list/videos-list.component.ts
client/angular/videos/videos.service.ts
client/index.html
client/tsconfig.json

index ccbaef947b3a72433fa51662525e418b9b5a54ea..48e97d5239952ce3f5a6bca44db3790f89034505 100644 (file)
@@ -6,10 +6,7 @@
     </div>
 
     <div class="col-md-9">
-      <input
-        type="text" id="search_video" name="search_video" class="form-control" placeholder="Search a video..."
-        #search (keyup.enter)="doSearch(search.value)"
-      >
+      <my-search (search)="onSearch($event)"></my-search>
     </div>
   </header>
 
index 35f0e079bc7cf7bec93c075f941122835f8607b3..e02c2d5b0718b0a925223cc7bb06c7559595ce3f 100644 (file)
@@ -1,5 +1,4 @@
 header div {
-  height: 50px;
   line-height: 25px;
   margin-bottom: 30px;
 }
index a105ed26a9ec881b66eeb2a2fda432c3fb56f3cd..513830d6bc14ca1e11d3c9f5efcc760eb41dd616 100644 (file)
@@ -2,6 +2,8 @@ import { Component } from '@angular/core';
 import { RouteConfig, ROUTER_DIRECTIVES, ROUTER_PROVIDERS, Router } from '@angular/router-deprecated';
 import { HTTP_PROVIDERS } from '@angular/http';
 
+import { DROPDOWN_DIRECTIVES} from  'ng2-bootstrap/components/dropdown';
+
 import { VideosAddComponent } from '../videos/components/add/videos-add.component';
 import { VideosListComponent } from '../videos/components/list/videos-list.component';
 import { VideosWatchComponent } from '../videos/components/watch/videos-watch.component';
@@ -10,6 +12,8 @@ import { FriendsService } from '../friends/services/friends.service';
 import { UserLoginComponent } from '../users/components/login/login.component';
 import { AuthService } from '../users/services/auth.service';
 import { AuthStatus } from '../users/models/authStatus';
+import { SearchComponent } from './search.component';
+import { Search } from './search';
 
 @RouteConfig([
   {
@@ -39,12 +43,14 @@ import { AuthStatus } from '../users/models/authStatus';
     selector: 'my-app',
     templateUrl: 'app/angular/app/app.component.html',
     styleUrls: [ 'app/angular/app/app.component.css' ],
-    directives: [ ROUTER_DIRECTIVES ],
+    directives: [ ROUTER_DIRECTIVES, SearchComponent ],
     providers: [ ROUTER_PROVIDERS, HTTP_PROVIDERS, VideosService, FriendsService, AuthService ]
 })
 
 export class AppComponent {
   isLoggedIn: boolean;
+  search_field: string = name;
+  choices = [  ];
 
   constructor(private _friendsService: FriendsService,
               private _authService: AuthService,
@@ -61,9 +67,10 @@ export class AppComponent {
     );
   }
 
-  doSearch(search: string) {
-    if (search !== '') {
-      this._router.navigate(['VideosList', { search: search }]);
+  onSearch(search: Search) {
+    console.log(search);
+    if (search.value !== '') {
+      this._router.navigate(['VideosList', { search: search.value, field: search.field }]);
     } else {
       this._router.navigate(['VideosList']);
     }
diff --git a/client/angular/app/search.component.html b/client/angular/app/search.component.html
new file mode 100644 (file)
index 0000000..fb13ac7
--- /dev/null
@@ -0,0 +1,17 @@
+<div class="input-group">
+  <div class="input-group-btn" dropdown>
+    <button id="simple-btn-keyboard-nav" type="button" class="btn btn-default" dropdownToggle>
+      {{ getStringChoice(searchCriterias.field) }} <span class="caret"></span>
+    </button>
+    <ul class="dropdown-menu" role="menu" aria-labelledby="simple-btn-keyboard-nav">
+      <li *ngFor="let choice of choiceKeys" class="dropdown-item">
+        <a class="dropdown-item" href="#" (click)="choose($event, choice)">{{ getStringChoice(choice) }}</a>
+      </li>
+    </ul>
+  </div>
+
+  <input
+    type="text" id="search-video" name="search-video" class="form-control" placeholder="Search a video..." class="form-control"
+    [(ngModel)]="searchCriterias.value" (keyup.enter)="doSearch()"
+  >
+</div>
diff --git a/client/angular/app/search.component.ts b/client/angular/app/search.component.ts
new file mode 100644 (file)
index 0000000..3e8db70
--- /dev/null
@@ -0,0 +1,48 @@
+import { Component, EventEmitter, Output } from '@angular/core';
+import { RouteConfig, ROUTER_DIRECTIVES, ROUTER_PROVIDERS, Router } from '@angular/router-deprecated';
+import { HTTP_PROVIDERS } from '@angular/http';
+
+import { DROPDOWN_DIRECTIVES} from  'ng2-bootstrap/components/dropdown';
+
+import { Search, SearchField } from './search';
+
+@Component({
+    selector: 'my-search',
+    templateUrl: 'app/angular/app/search.component.html',
+    directives: [ DROPDOWN_DIRECTIVES ]
+})
+
+export class SearchComponent {
+  @Output() search: EventEmitter<Search> = new EventEmitter<Search>();
+
+  searchCriterias: Search = {
+    field: "name",
+    value: ""
+  }
+  fieldChoices = {
+    name: "Name",
+    author: "Author",
+    podUrl: "Pod Url",
+    magnetUri: "Magnet Uri"
+  }
+
+  get choiceKeys() {
+    return Object.keys(this.fieldChoices);
+  }
+
+  getStringChoice(choiceKey: SearchField): string {
+    return this.fieldChoices[choiceKey];
+  }
+
+  choose($event:MouseEvent, choice: SearchField){
+    $event.preventDefault();
+    $event.stopPropagation();
+
+    this.searchCriterias.field = choice;
+  }
+
+  doSearch(): void {
+    this.search.emit(this.searchCriterias);
+  }
+
+}
diff --git a/client/angular/app/search.ts b/client/angular/app/search.ts
new file mode 100644 (file)
index 0000000..c4e771b
--- /dev/null
@@ -0,0 +1,6 @@
+export type SearchField = "name" | "author" | "podUrl" | "magnetUri";
+
+export interface Search {
+  field: SearchField;
+  value: string;
+}
index 341afdaa683975765070aa3fe80d661ddc52666d..a17b06cd97a91e449fb601e9f7fb17957753872e 100644 (file)
@@ -9,6 +9,7 @@ import { User } from '../../../users/models/user';
 import { VideosService } from '../../videos.service';
 import { Video } from '../../video';
 import { VideoMiniatureComponent } from './video-miniature.component';
+import { Search, SearchField } from '../../../app/search';
 
 @Component({
   selector: 'my-videos-list',
@@ -26,14 +27,17 @@ export class VideosListComponent implements OnInit {
     total: 0
   }
 
-  private search: string;
+  private search: Search;
 
   constructor(
     private _authService: AuthService,
     private _videosService: VideosService,
     private _routeParams: RouteParams
   ) {
-    this.search = this._routeParams.get('search');
+    this.search = {
+      value: this._routeParams.get('search'),
+      field: <SearchField>this._routeParams.get('field')
+    }
   }
 
   ngOnInit() {
@@ -47,7 +51,7 @@ export class VideosListComponent implements OnInit {
   getVideos() {
     let observable = null;
 
-    if (this.search !== null) {
+    if (this.search.value !== null) {
       observable = this._videosService.searchVideos(this.search, this.pagination);
     } else {
       observable = this._videosService.getVideos(this.pagination);
index 94ef418ebdd886a3dd48b6988560de305e312eb5..1329ead49360ddda8201e86d711c57c5cdef1b5e 100644 (file)
@@ -5,6 +5,7 @@ import { Observable } from 'rxjs/Rx';
 import { Pagination } from './pagination';
 import { Video } from './video';
 import { AuthService } from '../users/services/auth.service';
+import { Search } from '../app/search';
 
 @Injectable()
 export class VideosService {
@@ -13,8 +14,8 @@ export class VideosService {
   constructor (private http: Http, private _authService: AuthService) {}
 
   getVideos(pagination: Pagination) {
-    const params = { search: this.createPaginationParams(pagination) };
-    return this.http.get(this._baseVideoUrl, params)
+    const params = this.createPaginationParams(pagination);
+    return this.http.get(this._baseVideoUrl, { search: params })
                     .map(res => res.json())
                     .map(this.extractVideos)
                     .catch(this.handleError);
@@ -33,9 +34,10 @@ export class VideosService {
                     .catch(this.handleError);
   }
 
-  searchVideos(search: string, pagination: Pagination) {
-    const params = { search: this.createPaginationParams(pagination) };
-    return this.http.get(this._baseVideoUrl + 'search/' + encodeURIComponent(search), params)
+  searchVideos(search: Search, pagination: Pagination) {
+    const params = this.createPaginationParams(pagination);
+    if (search.field) params.set('field', search.field);
+    return this.http.get(this._baseVideoUrl + 'search/' + encodeURIComponent(search.value), { search: params })
                     .map(res => res.json())
                     .map(this.extractVideos)
                     .catch(this.handleError);
index c9bc7adb2fa9c488daf2f6617addb558c7d96d36..8b98cbbb2ebbe5a60cb5c94fb66c6d9f2df225c7 100644 (file)
@@ -22,8 +22,6 @@
 
     <script src="/app/node_modules/webtorrent/webtorrent.min.js"></script>
 
-    <!-- <script src="/app/angular/angular-rxjs.bundle.js"></script> -->
-
     <!-- 2. Configure SystemJS -->
     <script src="/app/systemjs.config.js"></script>
     <script>
index 1d002f7b06a6fb85a70b4d25d708b12a6a37f5db..df46b5d46b0f09b82cf91a823b085760400e3bc5 100644 (file)
@@ -21,6 +21,8 @@
   "compileOnSave": false,
   "files": [
     "angular/app/app.component.ts",
+    "angular/app/search.component.ts",
+    "angular/app/search.ts",
     "angular/friends/services/friends.service.ts",
     "angular/main.ts",
     "angular/users/components/login/login.component.ts",