Giter Club home page Giter Club logo

ngrx-wallpapers's Introduction

Ngrx unsplash Wallpapers

ngrx-store app reference

- Standard action -

Create Action
export const addWallpaperToFavorites = createAction(
  ADD_WALLPAPER_TO_FAVORITES,
  props<{ paper: IWallpaper }>()
);
Create Reducer
export const reducer = createReducer(
  initialState,
  on(WallpaperActions.addWallpaperToFavorites, (state, { paper }) => ({
    ...state,
    favorites: [
      paper,
      ...state.favorites.filter((fav: IWallpaper) => fav.id !== paper.id )
      ]
    })
  ),
    // .... next 
);
Dispatch from component
public addToFavorites(paper: IWallpaper): void {
  this.store.dispatch(addWallpaperToFavorites({ paper }));
}

- Async action -

Create Effect
@Injectable()
export class WallpapersEffects {
  loadRecent$ = createEffect(() =>
    this.actions$.pipe(
      ofType(GET_RECENT_WALLPAPERS), // Action Pipe
      concatMap(() => concat(
        of(WallpaperActions.recentLoading()), // Dispatch Action Run loader
        this.unsplashApi.getLast15() // Common httpClient api service
          .pipe(
            switchMap(recent => [
              WallpaperActions.loadRecentSuccess({ recent }), // Dispatch Action when contentvloaded 
            ]),
            catchError(() => EMPTY) // Error Handle
          )))
    )
  );

  constructor(private actions$: Actions, private unsplashApi: UnsplashApiService) {}
}
Dispatch from component
 this.store.dispatch({type: GET_RECENT_WALLPAPERS});

You need to set Unsplash API key

src/app/unsplash-api.const.ts

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Future plans

Animation on route

Code coverage(unit test ngrx-store)

ngrx-wallpapers's People

Watchers

James Cloos avatar Boris avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.