Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 1.14 KB

README.md

File metadata and controls

51 lines (37 loc) · 1.14 KB

MaziRecorder

Setup IDE

  • run pod install from terminal
  • open xcworkspace file instead of xcode

TODO

  • Load persisted state
  • Create network manager
  • Styling
  • Add manual resetting functionality
  • Color questions depending on if they are answered
  • Recorder view: load tags from model and update attachment in interview model instead of creating a new one
  • Add upload feedback
  • Fix label text in recording view
  • Sound visualisation for audio recorder
  • Scroll up when the keyboard appears
  • Fix retain cycles
  • Reset interview after submitting
  • Fix bug where photo isn't displayed

API Examples

# POST api/interviews/ (returns interview: { _id : xxx, ...})
{
  text: 'Synopsis Lorem ipsum',
  name: 'Peter'
  role: 'Designer'
}

# POST api/file/upload/image/:interviewId (returns interview)
FILES['file'] = file

# POST api/attachments/ (returns attachment: { _id : xxx, ...})
{
	text: 'Question text',
	tags: ['test1' , 'test2'],
	interview: interviewId // obtained after creating the interview
}

# POST api/upload/attachment/:attachmentId (returns attachment)
FILES['file'] = file