FlashCards - Progress

1
Q

TODO

A
  • delete a card
  • select a deck
  • change deck Meta data
  • left and right: cycle cards
    • button: add card
  • delete a deck
  • share a deck
  • UID for each deck (meta data)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Chrome Extension - Functions

A
  • add urls to YouTube page
  • click => UID to app page
  • rating: 1-5 stars
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Making new Deck container in Firebase?

A

makeDecks( )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Create a QA card OBJ?

A

makeQACard( )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Cards list for back and fort?

A

addCardsToArray( )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Add a DeckName to DeckJSON? (helper function)

A
addingDecksToString(deckName)
// all done
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Pull all deckJSON from Firebase (based on UID, based email)?

A
pullAllDecks( )
//works well
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Add DeckName to DeckJSON? (async parent)

A

deckAdder(deckName)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Add Card to deck (async parent)?

A

addCard(deckName, question, answer)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Add Card (helper child function)?

A

addCardHelper(deckName, question, answer)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

=====================

A

======================

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Firebase adding to User?

A
adding(root, data)
// creates new profile, adds data
addDoc(root, docMe, data)
// adds data to same profile, if first data obj already exists it will override
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Firebase - get UID based on ‘email’?

A
emailPullHelper(emailSearch)
// works well
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Pull ALL elements from USE based on their UID?

A
pullALLDataBasedOnUID(savedUIDstr)
// does its job!
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

============================

A

========================

How well did you know this?
1
Not at all
2
3
4
5
Perfectly