-
-
Notifications
You must be signed in to change notification settings - Fork 358
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ask if the opening hours here still not signed #3130
Comments
Maybe
would be simpler? For surveyor it is not important at all that it is asked because it was marked as signed... Also "yes, it is signed" and "no, it is not signed" is significantly easier to parse than "no, it is now signed" and "yes, it is still not signed" (at least to me). |
Hmm, there is a UI problem: If the question is "Is there an opening hours sign for ...?" and the user answers "yes", the quest title doesn't change, only the form. Because no quest form does that, to change the title. Only the form itself changes. So if in this case the current opening hours are displayed, it might lead to the user not knowing what to do. On the other hand, starting to change the quest title may be equally confusing, i.e. the user might wonder if this is still the same quest? Additionally, I believe this would then be the first quest that requires up to three answers to be given (in the same form, not in a dialog) until it is finished: "Is it signed?" ---yes---> "Is this still correct?" ---no--> define opening hours. So, an alternative solution would be: If the user answers "yes", additionally to setting This requires however the quest to know the element ('s timestamp) in the method applyAnswerTo(answer: Boolean, element: ChangeElement) {
element["lit"] = answer ? "yes" : "no" // =changes.addOrModifiy
element["lot"] = null // =changes.delete
} or simplest at least applyAnswerTo(answer: Boolean, changes: StringMapChangesBuilder, lastEditTimestamp: Long) {
...
} Anyway, this would be too big now, so I am postponing this. |
Also some of us, such as myself, may be willing to make the effort to answer yes/no for signed, but not to fill in the whole opening hours form.
I think I suggested a similar workaround for something in the past (but I can't remember what off the top of my head), so perhaps that could be revisited if this is implemented in this way? |
Yes, of course |
This comment has been minimized.
This comment has been minimized.
…urvey Resurvey for `opening_hours:signed=no` (fixes #3130)
General
Affected tag(s) to be modified/added: opening_hours:signed
Question asked: Are the opening hours of Rhababerbarbarabar still not signed?
Checklist
Checklist for quest suggestions (see guidelines):
I noticed that some shops may have opening hours signed at one time, but later they don't. Even later, they might have opening hours signed again. (Smaller shops, shops where opening hours are hand-written our printed out and taped to the door)
Since the opening hours quest also serves as a quest to check if a shop (etc) is still there, I think it would make sense to also ask recurringly about whether non-signed opening hours are signed now.
It should be a simple yes/no quest. However, if the user answers "yes", the UI to enter/display opening hours should be displayed (depending on if there are already opening hours recorded or not). After setting the opening hours, also
opening_hours:signed=yes
should be tagged.For the check date, simply
check_date:opening_hours
could be used.Maybe it could be re-asked less often. On the other hand, answering "no" is really fast.
The text was updated successfully, but these errors were encountered: