Bugzilla – Bug 8550
Implement web ui for new alarm functionality
Last modified: 2008-12-15 11:58:41 UTC
The web ui for the new alarm functionality is currently incomplete.
No need to open bugs against boom when there's noting boom specific ;-). Feel free to tell me what's missing.
At present the alarm settings are buried heavily under Settings->Player->[player]->Alarm. Some people have said they would like them to be much more visible. Example under Extras on the web front page. (don't shoot me - I'm only the messenger) There is no way to say an alarm should use the default alarm volume in the web ui. Input of alarm time is currently just a text box with no validation. A proper time widget would be good. At a minimum, entered times should be validated. When adding a new alarm, it should only be saved if the user submits the page. At the moment the handler creates a new alarm and saves it and then the web ui edits it just like any other existing alarm. Clicking add alarm should probably unhide a blank form for entering a new alarm. It should be obvious on the page which is the new alarm that needs setting. Related to above - the handler currently assumes that the web ui has included settings for all existing alarms and then attempts to save them. It would be better if the web ui provided a list of ids for which settings are being provided and only those alarms were touched. The web ui should expose the server pref for snooze length (bug 8574). Alarms aren't sorted at the moment, but I'll change Slim::Utils::Alarm::getAlarms to return a sorted list.
Should be able to set the default volume for all alarms. Should be able to enable/disable all alarms using the per-player pref. Entering alarm volume via a text box isn't too nice. Do we have sliders or some other nice widget?
There needs to be a save button. At the moment there is only Add Alarm and Remove Alarm.
> There needs to be a save button. At the moment there is only Add Alarm and > Remove Alarm. What about the big Save button at the bottom? Not enough? Design guidelines don't allow for more than one Save button.
Sorry, completely missed the Close and Apply buttons! I think because the main ui is in a white panel, I was just focussing on that and subconsciously filtering out the stuff in the surrounding black panel.
I'm trying to add an alarm at 6:20 AM, Mon - Fri. It will mostly allow me to do this but I can't disable Sunday's alarm. If I uncheck it and click apply, the Sunday checkmark just appears again. Siduhe indicates this is working but the web UI doesn't indicate it correctly, see http://forums.slimdevices.com/showpost.php?p=316616&postcount=39
Thanks Mark - fixed the Sunday alarm (code was still counting 1..7 instead of 0..6 for the days of the week)
change 21464 - adding Alarm to web UI's Extras menu
Cosmetic thing, the information tooltip on the snooze time reads: "Define the time in seconds you'd like the alarm to pause when you hit the snoozed button." I assume this should be "snooze" button. :-)
As of change 21480 all these requests should be implemented. Any more?
(In reply to comment #4) > There needs to be a save button. At the moment there is only Add Alarm and > Remove Alarm. > Pre 7.0 there was some discussion about inconsistencies in the Settings pages where certain things were saved immediately and others required the user to click "Apply". The new alarm settings page seems to have this issue where I can add an alarm by just clicking "Add Alarm", but then I need to click "Apply" if I change any of the default settings. Seems inconsistent to me.
> click "Apply". The new alarm settings page seems to have this issue where I > can add an alarm by just clicking "Add Alarm", but then I need to click "Apply" > if I change any of the default settings. Seems inconsistent to me. The new alarm will not be saved before you hit the Apply button.
(In reply to comment #13) > > click "Apply". The new alarm settings page seems to have this issue where I > > can add an alarm by just clicking "Add Alarm", but then I need to click "Apply" > > if I change any of the default settings. Seems inconsistent to me. > > The new alarm will not be saved before you hit the Apply button. > With 21455, if I click "Add Alarm" and do nothing else, I get the message "Changes have been saved" and the new default alarm appears in both the webUI and playerUI. Similarly, "Remove Alarm" will remove the alarm. Both of these are without clicking Apply.
> With 21455, if I click "Add Alarm" and do nothing else 21455 < 21480 (see comment #11) - please update and try again. Thanks.
Do you plan to do fancy time input, Michael? At the moment it doesn't handle invalid time values in a very user-friendly way. I've changed alarm->displayStr as per Dean's requests. It now just returns off for a disabled alarm and only includes the time if it's every day. However, I'm afraid you'll need to wrap displayStr with 'Alarm x (' and ')'. Use the string ALARM_ALARM to get 'Alarm'. x simply goes from 1 to the number of alarms, in the order as returned by getAlarms.
(In reply to comment #15) > > With 21455, if I click "Add Alarm" and do nothing else > > 21455 < 21480 (see comment #11) - please update and try again. Thanks. > Sorry, my mistake. Works as expected.
If the users time format includes seconds (e.g. HH:mm:ss), the alarm alows seconds to be entered for an alarm time. It shouldn't really do this. They (probably) are valid for an alarm, but it's mainly designed around hours and minutes only for alarm times. We don't guarantee accuracy to the second.
(In reply to comment #13) > The new alarm will not be saved before you hit the Apply button. I took my first look at the new alarm functionality and couldn't figure out how to add an alarm. I had to come here to find out that I wasn't missing an 'Add Alarm' button. Why does the 'Add Alarm' button only appear after you've added at least one alarm? Some suggestions: Display existing alarms in a grid with summary info (similar to favorites, or better yet, take a look at Windows Scheduled Tasks). With an edit button for each alarm. Maybe an 'expand all' button to open all edit forms and be presented with a screen that looks like it does today. Open the edit form (a hidden div) only when the edit button is hit. Display an 'Add Alarm' button below the grid and open a new alarm edit form when hit. Add a 'Cancel' button to edit forms that will reset and close the form without saving. Display all global alarm settings together, not split as they are now. Snooze time in minutes would be sufficient and easier to understand. Using a drop-down for this would be a simpler user interface. Drop-downs for setting the alarm time would both look better and be more foolproof. Right now entering an invalid time creates an alarm for 12:00 AM, which might (literally) be a rude awakening.
change 21984 Max - seconds are now removed Jim - the "Add Alarm" button missing should be fixed, made the snooze value use minutes instead of seconds (in the UI), added slider The grid will have to wait a bit. What do you mean by "should look better" (alarm time drop down)?
The Add Alarm button is still displayed for a player with no saved alarms. As the new alarm form is also displayed, this is redundant. For players with saved alarms, the new alarm form is shown briefly at page load and then dissappears, which is a bit confusing. I like the snooze slider, but isn't 180 a bit excessive for a max value? Could it say New Alarm rather that just Alarm by the form for a new alarm? It would be nice if you could easily add multiple new alarms without having to click the Apply button between each one. Maybe just make the new alarm form appear above the Add Alarm button, so you can click it when you're done filling in the form and have the page act as if Apply was clicked?
More than one new alarm would be a bit tricky. I'm trying to keep the templates as skin independant as reasonably possible. But adding more than one would require a lot of JS, building the form on the fly etc. I'd rather see the grid approach Jim suggested. But time frame will not allow this for 7.2. The rest of your items should be implemented (reduced snooze to 90 minutes max - bet somebody will complain? :-))
I wasn't suggesting adding more than one new alarm at once. Just an easy way to save the current new alarm and go straight to adding a new one. I'd say even 90 minutes was ages for a snooze - I was thinking more 20 minutes. ;-) Someone will complain whatever it's set to. But they can always just enter their value directly...
The webUI and playerUI seem to sort favorites (under choose playlist) alphabetically. Is this intentional? I'd expect them to be sorted using the same order defined by the user when he added/edited his favorites.
I've just added another requested alarm feature, which I'm afraid needs some web ui. Alarms now time out automatically after a configurable amount of time (bug 4775). The timeout is controlled via the player pref alarmTimeoutSeconds. If this is set to a false value (0, undef etc) then the timeout is disabled completely. This should probably therefore have a checkbox to automatically end alarms and, if ticked, an element allowing the timeout to be chosen. Athough the pref is in seconds, it would be fine to only allow the user to chose minute values. Again, this is a player pref and not a per-alarm pref.
(In reply to comment #20) > Jim - the "Add Alarm" button missing should be fixed, made the snooze value use > minutes instead of seconds (in the UI), added slider Five minute steps for the snooze time isn't that great. How about a drop down list with minutes 1, 2, 3, 4 ... 18, 19, 20, 25, 30, 35... 90? Overall, the page is still confusing to me. When I have _no_ alarms I'm looking at what appears to be an enabled alarm on all 7 days of the week, with a "Remove Alarm" button. Only if I'm real familiar with the page and looking very closely can I tell this is a form to create an alarm. The, if I hit the "Remove Alarm" button I see the page exactly as I would expect it should look, with just the global settings and an "Add Alarm" button. It's immediately apparent that I have no alarms set and immediately apparent what I need to do to create one. Also, ideally, when creating a new alarm (before saving) the "Remove Alarm" button within the form would say "Cancel". A user verification dialog might be a good idea for the Remove Alarm button (and again, only for alarms that have been saved - not when creating a new one) since this button works directly, without requiring the user to press the "Apply" button.
Agree entirely about snooze time - in my experience snooze times are small and the changes people would want to make are in minutes. I've never seen an alarm clock with more than a ten minute snooze. The ones I own seem to do an eight or nine minute snooze and I therefore needed to be able to adjust my Boom by a minute to match the real alarm clock on the other side of the bed. I think the intention is that the form for a new alarm should only be displayed if the button has been clicked. Agree also on Cancel and confirmation comments.
> I've just added another requested alarm feature, which I'm afraid needs some > web ui. Alarms now time out automatically after a configurable amount of time > (bug 4775). Cool! Change 22145. I've added two strings for this feature (or did you already?). Could you please review them? SETUP_ALARM_TIMEOUT SETUP_ALARM_TIMEOUT_DESC Thanks!
change 22146 - change behaviour when there's no alarm set yet (according to the above comments).
Ok, I think the web UI is there. Please open new, more specific bugs if there are still open issues. Thanks!
webui functionality verified in 7.2 - 22900.
This bug has been fixed in the latest release of SqueezeCenter! Please download the new version from http://www.slimdevices.com/su_downloads.html if you haven't already. If you are still experiencing this problem, feel free to reopen the bug with your new comments and we'll have another look.