Currently delving into Ember.js, I have embarked on a fresh project centered around managing todo tasks.
Nevertheless, I am encountering difficulties in translating the database and OOP architecture to an ember model framework.
The model I aspire to achieve would include:
A task with these attributes:
id
title
state
('open', 'closed')editor
creator
createdAt
modifiedAt
My challenge lies in:
- abstracting the state (in OOP, I could create a struct for this)
- developing an abstraction for the editor/creator aspect
I would greatly appreciate any suggestions since the Ember.js documentation mainly covers basic scenarios and lacks details like states.