commencement de la 'page search'
This commit is contained in:
parent
5f4ecfc7b3
commit
58d80d1a6b
47 changed files with 889 additions and 84 deletions
|
|
@ -5,15 +5,24 @@ import { AppRoutingModule } from './app-routing.module';
|
|||
import { AppComponent } from './app.component';
|
||||
import { PageConnexionComponent } from './pourLes3Roles/page-connexion/page-connexion.component';
|
||||
import { PageRegisterComponent } from './pourLes3Roles/register/page-register/page-register.component';
|
||||
import { NavBarComponent } from './utils/nav-bar/nav-bar.component';
|
||||
import { NavBarComponent } from './utils/components/nav-bar/nav-bar.component';
|
||||
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
|
||||
import {MatSlideToggleModule} from '@angular/material/slide-toggle';
|
||||
import {FormsModule} from "@angular/forms";
|
||||
import { PageSearchComponent } from './user/page-search/page-search.component';
|
||||
import { PageSearchComponent } from './user/search/page-search/page-search.component';
|
||||
import {HttpClientModule} from "@angular/common/http";
|
||||
import { PopupConfirmationComponent } from './pourLes3Roles/register/popup-confirmation/popup-confirmation.component';
|
||||
import {MatDialogModule} from '@angular/material/dialog';
|
||||
import {MatButtonModule} from "@angular/material/button";
|
||||
import { PubComponent } from './utils/components/pub/pub.component';
|
||||
import { VideoCellComponent } from './user/search/video-cell/video-cell.component';
|
||||
import { VideoGridComponent } from './user/search/video-grid/video-grid.component';
|
||||
import {MatIconModule} from "@angular/material/icon";
|
||||
import { PopupAddVideoToPlaylistsComponent } from './utils/components/popup-add-video-to-playlists/popup-add-video-to-playlists.component';
|
||||
import {MatInputModule} from "@angular/material/input";
|
||||
import {MatDividerModule} from "@angular/material/divider";
|
||||
import {MatCheckboxModule} from "@angular/material/checkbox";
|
||||
import {MatFormFieldModule} from "@angular/material/form-field";
|
||||
|
||||
|
||||
@NgModule({
|
||||
|
|
@ -23,7 +32,11 @@ import {MatButtonModule} from "@angular/material/button";
|
|||
PageRegisterComponent,
|
||||
NavBarComponent,
|
||||
PageSearchComponent,
|
||||
PopupConfirmationComponent
|
||||
PopupConfirmationComponent,
|
||||
PubComponent,
|
||||
VideoCellComponent,
|
||||
VideoGridComponent,
|
||||
PopupAddVideoToPlaylistsComponent
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
|
|
@ -33,7 +46,12 @@ import {MatButtonModule} from "@angular/material/button";
|
|||
FormsModule,
|
||||
HttpClientModule,
|
||||
MatDialogModule,
|
||||
MatButtonModule
|
||||
MatButtonModule,
|
||||
MatIconModule,
|
||||
MatInputModule,
|
||||
MatDividerModule,
|
||||
MatCheckboxModule,
|
||||
MatFormFieldModule
|
||||
],
|
||||
providers: [],
|
||||
bootstrap: [AppComponent]
|
||||
|
|
|
|||
Reference in a new issue