Skip to content

mazi-project/MaziRecorder

 
 

Repository files navigation

MaziRecorder

The code is under development and is not ready for distribution.

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

About

This is the Interview archive iOS application

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Swift 99.4%
  • Ruby 0.6%