pokemon card inventory application
Because I collect pokemon cards in my spare time and need an application that just displays exactly what I need. the below images are a basic idea of what I setout to create with pokeo. The colors in the frames show where the user can click to increase teh count of that card or decrease the count of that card.
- clone repo
git clone https://github.com/williamtober/pokeo.git - install dependencies
npm i - start react
npm run start
here are various things I need to remember to do when I come back to this project
- import set data from PokemonTCG Project Repo
- using the set data, get card data depending on the set... Perhaps this involves some FS work Set Data Files
- create type/interface so that redux knows what type of datatype to expect from the json files
- give each individual card a style
- create a library redux store it needs to account for decks, cards, needs, and selling.
- considering renaming the cards redux store to something like pokemon because it's not really specific.
- write tests and make sure that the cards set selector, button menu collapse, and card add/minus features work via keyboard accessibilities.
They did a lot of work on their API and published a lot of the interfaces, queries, and other logic that otherwise would have taken several hours to create.
CSS Framework for quickly building out applications. I work a lot, so CSS frameworks for most things is a no brainer. Also they allow us to override existing classnames, so you can really go back and change all the styles to something custom.

