Giter VIP home page Giter VIP logo

Comments (5)

cch5ng avatar cch5ng commented on May 28, 2024

side things to think about:

  • how the base list gets updated (original repo mdn/json file)
  • how to avoid losing data between different base list versions
    • what if the user likes a question that gets removed from the base list
  • understanding that the original list will always be growing
    • also it is likely that original list order may change with time

from react-fe-interview.

cch5ng avatar cch5ng commented on May 28, 2024

resources

https://github.com/jakearchibald/idb

  • caveats are only working in chrome and ff (with polyfill)

from react-fe-interview.

cch5ng avatar cch5ng commented on May 28, 2024

data format

{ id: string,
  name: string,
  questions: [
    {category: [strings]},
    {category: [strings]},
  ] // right now I think just store the exact question string and not an id for the string
}

route will be like /favorites/:id

from react-fe-interview.

cch5ng avatar cch5ng commented on May 28, 2024

UI would look similar to current /all except

  • make list items into checkboxes
  • add Save buttons (top/bottom)
  • add some place to saved the list Name
  • event handler for save button
  • add List Preview? (b/c right now the list is super long)

from react-fe-interview.

cch5ng avatar cch5ng commented on May 28, 2024

data functionality

  • add question to store
  • remove question from store
  • add list to indexedDB
    • keep in mind that would like to display saved questions in same category order as the original list (so probably auto generated keys is not good idea)
  • remove list from indexedDB
  • edit list in indexedDB

from react-fe-interview.

Related Issues (20)

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.