codelab icon indicating copy to clipboard operation
codelab copied to clipboard

Add a page which displays user ratings

Open kirjs opened this issue 6 years ago • 1 comments

At the end of each milestone there is a survey but we do not do anything with the results: https://codelab.fun/angular/typescript/end

They are in firebase under the 'ratings'

kirjs avatar Aug 29 '19 19:08 kirjs

Instead of having just a number for rating, e.g.

newMilestone: {
  good: 4,
  bad: 1
}

Store list of events e.g.

newMilestone: [
  {type: 'good', uid: uid, date: date},
  {type: 'bad', uid: uid, date: date}
  {type: 'good', uid: uid, date: date},
  {type: 'good', uid: uid, date: date},
  {type: 'good', uid: uid, date: date},
]

(uid comes from login service)

NothingEverHappens avatar Sep 04 '19 16:09 NothingEverHappens