AdamBCo / PunctualTime

0 stars 0 forks source link

Dynamic Save Event Button (2) #69

Closed nathanhosselton closed 9 years ago

nathanhosselton commented 9 years ago

As a user, I would like to be prevented from saving an event in a friendly way if I haven't filled out all of the necessary components.

nathanhosselton commented 9 years ago

We'll grey out the Save button and prevent it from being selectable until everything that doesn't have a default value has been filled out (Name, Date and Destination). Should only need to check for nil on these values each time one is modified. When both aren't nil, ungrey the icon and make it selectable.

nathanhosselton commented 9 years ago

Logic is implemented. Don suggested taking the user to the next component they need act on when they tap the button and animated it in some way (like a bounce).

nathanhosselton commented 9 years ago

FIXED: Aforementioned bug happens when an event is impossible. After clicking way the notification, there is no way to cause the Save button to be selectable again without canceling out of the Create view or reselecting the destination.

nathanhosselton commented 9 years ago

Need to also set another check on name field besides returning since it's possible to complete setting a name without actually pressing return.