Add select dropdown to notification agents

* Change priority selections to dropdown
This commit is contained in:
Jonathan Wong 2015-10-11 22:36:00 -07:00
commit c12862ffba
2 changed files with 32 additions and 11 deletions

View file

@ -44,6 +44,24 @@ from plexpy import helpers
<p class="help-block">${item['description']}</p> <p class="help-block">${item['description']}</p>
<input type="hidden" id="${item['name']}" name="${item['name']}" value="${item['value']}"> <input type="hidden" id="${item['name']}" name="${item['name']}" value="${item['value']}">
</div> </div>
% elif item['input_type'] == 'select':
<div class="form-group">
<label for="${item['name']}">${item['label']}</label>
<div class="row">
<div class="col-md-5">
<select class="form-control" id="${item['name']}" name="${item['name']}" >
% for key, value in sorted(item['select_options'].iteritems()):
% if key == item['value']:
<option value="${key}" selected>${value}</option>
% else:
<option value="${key}">${value}</option>
% endif
% endfor
</select>
</div>
</div>
<p class="help-block">${item['description']}</p>
</div>
% endif % endif
% endfor % endfor
</div> </div>
@ -68,8 +86,8 @@ from plexpy import helpers
<script> <script>
$('#osxnotifyregister').click(function () { $('#osxnotifyregister').click(function () {
var osx_notify_app = $("#osx_notify_app").val(); var osx_notify_app = $("#osx_notify_app").val();
$.get("/osxnotifyregister", {'app': osx_notify_app}, function (data) { $('#ajaxMsg').html("<div class='msg'><span class='ui-icon ui-icon-check'></span>"+data+"</div>"); }); $.get("/osxnotifyregister", { 'app': osx_notify_app }, function (data) { $('#ajaxMsg').html("<i class='fa fa-check'></i> " + data); });
$('#ajaxMsg').addClass('success').fadeIn().delay(3000).fadeOut() $('#ajaxMsg').addClass('success').fadeIn().delay(3000).fadeOut();
}) })
var notificationConfig = $("#set_notification_config"); var notificationConfig = $("#set_notification_config");
@ -80,17 +98,17 @@ from plexpy import helpers
$('#twitterStep1').click(function () { $('#twitterStep1').click(function () {
$.get("/twitterStep1", function (data) {window.open(data); }) $.get("/twitterStep1", function (data) {window.open(data); })
.done(function () { $('#ajaxMsg').html("<div class='msg'><span class='ui-icon ui-icon-check'></span>Confirm Authorization. Check pop-up blocker if no response.</div>"); }); .done(function () { $('#ajaxMsg').html("<i class='fa fa-check'></i> Confirm Authorization. Check pop-up blocker if no response."); });
$('#ajaxMsg').addClass('success').fadeIn().delay(3000).fadeOut(); $('#ajaxMsg').addClass('success').fadeIn().delay(3000).fadeOut();
}); });
$('#twitterStep2').click(function () { $('#twitterStep2').click(function () {
var twitter_key = $("#twitter_key").val(); var twitter_key = $("#twitter_key").val();
$.get("/twitterStep2", {'key': twitter_key}, function (data) { $('#ajaxMsg').html("<div class='msg'><span class='ui-icon ui-icon-check'></span>"+data+"</div>"); }); $.get("/twitterStep2", { 'key': twitter_key }, function (data) { $('#ajaxMsg').html("<i class='fa fa-check'></i> " + data); });
$('#ajaxMsg').addClass('success').fadeIn().delay(3000).fadeOut(); $('#ajaxMsg').addClass('success').fadeIn().delay(3000).fadeOut();
}); });
$('#testTwitter').click(function () { $('#testTwitter').click(function () {
$.get("/testTwitter", $.get("/testTwitter",
function (data) { $('#ajaxMsg').html("<div class='msg'><span class='ui-icon ui-icon-check'></span>"+data+"</div>"); }); function (data) { $('#ajaxMsg').html("<i class='fa fa-check'></i> " + data); });
$('#ajaxMsg').addClass('success').fadeIn().delay(3000).fadeOut(); $('#ajaxMsg').addClass('success').fadeIn().delay(3000).fadeOut();
}); });

View file

@ -467,8 +467,9 @@ class PROWL(object):
{'label': 'Priority', {'label': 'Priority',
'value': self.priority, 'value': self.priority,
'name': 'prowl_priority', 'name': 'prowl_priority',
'description': 'Set the priority (-2,-1,0,1 or 2).', 'description': 'Set the priority.',
'input_type': 'number' 'input_type': 'select',
'select_options': {-2: -2, -1: -1, 0: 0, 1: 1, 2: 2}
} }
] ]
@ -695,8 +696,9 @@ class NMA(object):
{'label': 'Priority', {'label': 'Priority',
'value': plexpy.CONFIG.NMA_PRIORITY, 'value': plexpy.CONFIG.NMA_PRIORITY,
'name': 'nma_priority', 'name': 'nma_priority',
'description': 'Set the priority (-2,-1,0,1 or 2).', 'description': 'Set the priority.',
'input_type': 'number' 'input_type': 'select',
'select_options': {-2: -2, -1: -1, 0: 0, 1: 1, 2: 2}
} }
] ]
@ -913,8 +915,9 @@ class PUSHOVER(object):
{'label': 'Priority', {'label': 'Priority',
'value': self.priority, 'value': self.priority,
'name': 'pushover_priority', 'name': 'pushover_priority',
'description': 'Set the priority (-2,-1,0,1 or 2).', 'description': 'Set the priority.',
'input_type': 'number' 'input_type': 'select',
'select_options': {-2: -2, -1: -1, 0: 0, 1: 1, 2: 2}
}, },
{'label': 'Sound', {'label': 'Sound',
'value': self.sound, 'value': self.sound,