new products

This commit is contained in:
AgataWojciech 2021-05-03 13:06:56 +02:00
parent 3bc4c76fc4
commit a625873f75

View File

@ -25,15 +25,88 @@ class Product {
}
static get REGISTRY() {
// in alphabetical order
return {
empty: new Product('', ''),
airFrashener: new Product('airFrashener', 'fa-wind'),
apple: new Product('apple', 'fa-apple-alt'),
babyAccessories: new Product('babyAccessories','fa-baby-carriage'),
bacon: new Product('bacon', 'fa-bacon'),
beer: new Product('beer','fa-beer'),
bicycle: new Product('bicycle','fa-bicycle'),
bone: new Product('bone', 'fa-bone'),
book: new Product('book', 'fa-book'),
bread: new Product('bread', 'fa-bread-slice'),
bread: new Product('bread','fa-bread-slice'),
cake: new Product('cake', 'fa-birthday-cake'),
campAccessories: new Product('campAccessories','fa-campground'),
candyCane: new Product('candy cane', 'fa-candy-cane'),
carrot: new Product('carrot', 'fa-carrot'),
cheese: new Product('cheese', 'fa-cheese')
carrot: new Product('carrot','fa-carrot'),
catAccessories: new Product('catAccessories','fa-cat'),
camera: new Product('camera','fa-camera'),
carAccessories: new Product('carAccessories','fa-car'),
cleaningSupplies: new Product('cleaningSupplies', 'fa-broom'),
cocktailSupplies: new Product('cocktailSupplies','fa-cocktail'),
coffee: new Product('cofee','fa-coffee'),
cookie: new Product('cookie','fa-cookie'),
coughSyrop: new Product('coughSyrop', 'fa-lungs'),
cheese: new Product('cheese', 'fa-cheese'),
cloathesAccessories: new Product('cloathesAccessories','fa-glasses'),
cookie: new Product('cookie', 'fa-cookie'),
dictionary: new Product('dictionary', 'fa-language'),
dogAccessories: new Product('dogAccessories','fa-dog'),
drinks: new Product('drinks', 'fa-glass-whiskey'),
drone:new Product('drone','fa-plane'),
egg: new Product('egg','fa-egg'),
electronicAccessories: new Product('electronicAccessories','fa-bolt'),
eraser: new Product('eraser','fa-eraser'),
extinguisher: new Product('extinguisher','fa-fire'),
firstAid: new Product('firstAid','fa-first-aid'),
fish: new Product('fish','fa-fish'),
glassAccessories: new Product('glassAccessories','fa-wine-glass'),
gps: new Product('gps','fa-street-view'),
hamburger: new Product('hamburger', 'fa-hamburger'),
hauntingAccessories: new Product('hauntingAccessories','fa-binoculars'),
highlighter: new Product('highlighter','fa-highlighter'),
hotdog: new Product('hotdog','fa-hotdog'),
homeSecurity: new Product('homeSecurity','fa-key'),
icecream: new Product('icecream','fa-ice-cream'),
insecticide: new Product('insecticide','fa-spider'),
jewelry: new Product('jewelry','fa-gem'),
keyboard: new Product('keyboard', 'fa-keyboard'),
kitchenSupplies: new Product('kitchenSupplies', 'fa-blender'),
laptop: new Product('laptop', 'fa-laptop'),
lemon: new Product('lemon','fa-lemon'),
movingAccessories: new Product('movingAccessories','fa-boxes'),
newbornAccessorries: new Product('newbornAccessorries','fa-baby-carriage'),
newspaper: new Product('newspaper','fa-newspaper'),
paintBrush: new Product('paintBrush','fa-paint-brush'),
paper: new Product('paper','fa-paperclip'),
partyAccessories: new Product('partyAccessories','fa-glass-cheers'),
pepper: new Product('pepper','fa-pepper-hot'),
pills: new Product('pills','fa-pills'),
pizza: new Product('pizza','fa-pizza-slice'),
plants: new Product('plants','fa-seedling'),
printer: new Product('printer','fa-print'),
pen: new Product('pen','fa-pen'),
personalSafetyAccessories: new Product('personalSafetyAccessories','fa-fingerprint'),
religionAccessories: new Product('religionAccessories','fa-pray'),
runningAccessories: new Product('runningAccessories','fa-running'),
skatingAccessories: new Product('skatingAccessories','fa-skating'),
skiingAccessories: new Product('skiingAccessories','fa-skiing'),
soap: new Product('soap','fa-pump-soap'),
spaAccessories: new Product('spaAccessories','fa-spa'),
sportCloathes: new Product('sportCloathes','fa-futbol'),
summerHoliday: new Product('summerHoliday','fa-umbrella-beach'),
sunscreen: new Product('sunscreen','fa-sun'),
swimmingAccessories: new Product('swimmingAccessories','fa-swimmer'),
toiletSupplies: new Product('toiletSupplies','fa-toilet-paper'),
tools: new Product('tools','fa-wrench'),
toys: new Product('toys','fa-horse'),
wine: new Product('wine','fa-wine-bottle'),
winterCloathes: new Product('winterCloathes','fa-mitten'),
winterHoliday: new Product('winterHoliday','fa-tree')
};
}