Code Monkey home page Code Monkey logo

Comments (1)

graskovi avatar graskovi commented on May 27, 2024

Add the AsyncStorage backend for the check-in.

On the check-in page, add a stub button that can add an object (contents don't matter, can be hardcoded) to an array value saved in AsyncStorage at key of date.
i.e. for January 5th, 2020
"2020-01-05": {
"sleepHours": 8,
"mood": 8,
"journal": "Feeling happy today"
}
Keep the backend logic out of the CheckinPage file, keep it in a backend-specific file.

Stretch goal 1: when the button is pressed, save that a response has been sent for the day so we can disallow the user to send another response, or only allow the user to update their single response for the day.
i.e. save in key "lastCheckin": "2020-01-05" (update value/overwrite previous value)

Stretch goal 2: when the button is pressed, after the object is created at the key, add its key date to an array at key "checkins", i.e.
"checkins": ["2019-01-02", "2019-01-03", "2019-01-05"]
to allow for faster iteration of previous checkins (get array, then choose keys to lookup).

from ihc-wellness-app.

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.