mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-04-29 09:48:04 +00:00

Using 00:00 with relying on the implied default is sub optimal as its a bit of a magic example that new users may not understand as easily. So spell it out explicitly, even if there'd be a shorter version possible. We also had some request for the once-daily every day, and its a sensible example to have in general, could help getting the difference between an hour list and a single one. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
50 lines
1.5 KiB
JavaScript
50 lines
1.5 KiB
JavaScript
Ext.define('PVE.form.CalendarEvent', {
|
|
extend: 'Ext.form.field.ComboBox',
|
|
xtype: 'pveCalendarEvent',
|
|
|
|
editable: true,
|
|
emptyText: gettext('Editable'), // FIXME: better way to convey that to confused users?
|
|
|
|
valueField: 'value',
|
|
queryMode: 'local',
|
|
|
|
matchFieldWidth: false,
|
|
listConfig: {
|
|
maxWidth: 450,
|
|
},
|
|
|
|
store: {
|
|
field: ['value', 'text'],
|
|
data: [
|
|
{ value: '*/30', text: Ext.String.format(gettext("Every {0} minutes"), 30) },
|
|
{ value: '*/2:00', text: gettext("Every two hours") },
|
|
{ value: '21:00', text: gettext("Every day") + " 21:00" },
|
|
{ value: '2,22:30', text: gettext("Every day") + " 02:30, 22:30" },
|
|
{ value: 'mon..fri 00:00', text: gettext("Monday to Friday") + " 00:00" },
|
|
{ value: 'mon..fri */1:00', text: gettext("Monday to Friday") + ': ' + gettext("hourly") },
|
|
{
|
|
value: 'mon..fri 7..18:00/15',
|
|
text: gettext("Monday to Friday") + ', '
|
|
+ Ext.String.format(gettext('{0} to {1}'), '07:00', '18:45') + ': '
|
|
+ Ext.String.format(gettext("Every {0} minutes"), 15),
|
|
},
|
|
{ value: 'sun 01:00', text: gettext("Sunday") + " 01:00" },
|
|
// FIXME: support date based schedules in the backend (like PBS)
|
|
//{ value: 'sat *-1..7 15:00', text: gettext("First Saturday each month") + " 15:00" },
|
|
],
|
|
},
|
|
|
|
tpl: [
|
|
'<ul class="x-list-plain"><tpl for=".">',
|
|
'<li role="option" class="x-boundlist-item">{text}</li>',
|
|
'</tpl></ul>',
|
|
],
|
|
|
|
displayTpl: [
|
|
'<tpl for=".">',
|
|
'{value}',
|
|
'</tpl>',
|
|
],
|
|
|
|
});
|