shop.reducers.ts 1.63 KB
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
import { createReducer, on } from '@ngrx/store';
import { addShopData, deleteShopData } from './shop.action';

export interface DataState {
  data: ReadonlyArray<any>;
}

const initialSate = [
  {
    Quantity: 1,
    id: '1',
    name: 'Black Heals For Women',
    offerprice: '$699',
    src: './assets/img/ecommerce/products/1.png',
    price: '$999',
    color: 'Brown Color',
    size: 'Size : M',
    discount: '30%',
  },
  {
    Quantity: 2,
    id: '2',
    name: 'Sun Glasses',
    offerprice: '$699',
    src: './assets/img/ecommerce/products/7.png',
    price: '$1,198',
    color: 'White Color',
    size: 'Adjustable',
    discount: '10%',
  },
  {
    Quantity: 0,
    id: '3',
    name: 'Leather Wallet For Girls',
    offerprice: '$150',
    src: './assets/img/ecommerce/products/10.png',
    price: '$500',
    color: 'White Color',
    discount: '5%',
  },
  {
    Quantity: 0,
    id: '4',
    name: 'Dolor Rose Frangrance Perfume',
    offerprice: '$299',
    src: './assets/img/ecommerce/products/5.png',
    price: '$199',
    color: 'Jasmine Fragrance',
    size: '500 ML',
    discount: '10%',
  },
  {
    Quantity: 0,
    id: '5',
    name: 'Dolor Wireless Airpods ',
    offerprice: '$499',
    src: './assets/img/ecommerce/products/4.png',
    price: '$499',
    color: 'White',
    size: 'Bluetooth',
    discount: '0%',
  },
 
];

export const dataReaducer = createReducer(
  initialSate,
  on(addShopData, (state, { data }) => {
    return [...state, data[0]];
  }),
  on(deleteShopData, (state, { id }) => {
    const updatedPosts = state.filter((post) => {
      return post.id !== id;
    });
    return (state = updatedPosts);
  })
);