Feature/bookmark feedback (#508)
* ImageService had a stream reset before writting out to array. Added logging statment for updating series metadata. Removed ConcurencyCheck due to bad update issue for CollectionTag. * Added a new screen which lets you quickly see all your bookmarks for a given user. * Built user bookmark page in user settings. Moved user settings to it's own lazy loaded module. Removed unneded debouncing from downloader and just used throttleTime instead. * Removed a not-yet implemented tab from series modal * Fixed a bug in clear bookmarks and adjusted icons within anchors to have proper styling
This commit is contained in:
parent
623e555633
commit
68bb5ed5a8
35 changed files with 554 additions and 270 deletions
|
|
@ -18,7 +18,6 @@ import { SharedModule } from './shared/shared.module';
|
|||
import { LibraryDetailComponent } from './library-detail/library-detail.component';
|
||||
import { SeriesDetailComponent } from './series-detail/series-detail.component';
|
||||
import { NotConnectedComponent } from './not-connected/not-connected.component';
|
||||
import { UserPreferencesComponent } from './user-preferences/user-preferences.component';
|
||||
import { AutocompleteLibModule } from 'angular-ng-autocomplete';
|
||||
import { ReviewSeriesModalComponent } from './_modals/review-series-modal/review-series-modal.component';
|
||||
import { CarouselModule } from './carousel/carousel.module';
|
||||
|
|
@ -37,6 +36,8 @@ import { RecentlyAddedComponent } from './recently-added/recently-added.componen
|
|||
import { InProgressComponent } from './in-progress/in-progress.component';
|
||||
import { CardsModule } from './cards/cards.module';
|
||||
import { CollectionsModule } from './collections/collections.module';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { SAVER, getSaver } from './shared/_providers/saver.provider';
|
||||
|
||||
let sentryProviders: any[] = [];
|
||||
|
||||
|
|
@ -93,7 +94,6 @@ if (environment.production) {
|
|||
LibraryDetailComponent,
|
||||
SeriesDetailComponent,
|
||||
NotConnectedComponent, // Move into ExtrasModule
|
||||
UserPreferencesComponent, // Move into SettingsModule
|
||||
ReviewSeriesModalComponent,
|
||||
PersonBadgeComponent,
|
||||
RecentlyAddedComponent,
|
||||
|
|
@ -109,11 +109,11 @@ if (environment.production) {
|
|||
|
||||
NgbDropdownModule, // Nav
|
||||
AutocompleteLibModule, // Nav
|
||||
NgbTooltipModule, // Shared & SettingsModule
|
||||
//NgbTooltipModule, // Shared & SettingsModule
|
||||
NgbRatingModule, // Series Detail
|
||||
NgbNavModule,
|
||||
NgbAccordionModule, // User Preferences
|
||||
NgxSliderModule, // User Preference
|
||||
//NgbAccordionModule, // User Preferences
|
||||
//NgxSliderModule, // User Preference
|
||||
NgbPaginationModule,
|
||||
|
||||
|
||||
|
|
@ -135,6 +135,7 @@ if (environment.production) {
|
|||
{provide: HTTP_INTERCEPTORS, useClass: ErrorInterceptor, multi: true},
|
||||
{provide: HTTP_INTERCEPTORS, useClass: JwtInterceptor, multi: true},
|
||||
Title,
|
||||
{provide: SAVER, useFactory: getSaver},
|
||||
...sentryProviders,
|
||||
],
|
||||
entryComponents: [],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue