fix indentation and move load and submit out of plugin object

This commit is contained in:
dkanada 2019-03-10 08:55:35 +09:00
parent de5fa4b8ea
commit b4e85a0196

View File

@ -1,81 +1,75 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"> <html lang="en">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<title>ExamplePlugin Configuration</title> <title>Template</title>
</head> </head>
<body> <body>
<div id="ExamplePluginConfigurationPage" data-role="page" class="page type-interior pluginConfigurationPage" data-require="emby-input,emby-button,emby-select,emby-checkbox"> <div id="ExamplePluginConfigurationPage" data-role="page" class="page type-interior pluginConfigurationPage" data-require="emby-input,emby-button,emby-select,emby-checkbox">
<div data-role="content"> <div data-role="content">
<div class="content-primary"> <div class="content-primary">
<form id="ExamplePluginConfigurationForm"> <form id="ExamplePluginConfigurationForm">
<div class="selectContainer"> <div class="selectContainer">
<label class="selectLabel" for="Options">Options</label> <label class="selectLabel" for="Options">Options</label>
<select is="emby-select" id="Options" name="Options" class="emby-select-withcolor emby-select"> <select is="emby-select" id="Options" name="Options" class="emby-select-withcolor emby-select">
<option id="optOneOption" value="OneOption">One Option</option> <option id="optOneOption" value="OneOption">One Option</option>
<option id="optAnotherOption" value="AnotherOption">Another Option</option> <option id="optAnotherOption" value="AnotherOption">Another Option</option>
</select> </select>
</div> </div>
<div class="inputContainer"> <div class="inputContainer">
<label class="inputeLabel inputLabelUnfocused" for="AnInteger">An Integer</label> <label class="inputeLabel inputLabelUnfocused" for="AnInteger">An Integer</label>
<input id="AnInteger" name="AnInteger" type="number" is="emby-input" min="0" /> <input id="AnInteger" name="AnInteger" type="number" is="emby-input" min="0" />
<div class="fieldDescription">Numbers go here</div> <div class="fieldDescription">Numbers go here</div>
</div> </div>
<div class="checkboxContainer checkboxContainer-withDescripton"> <div class="checkboxContainer checkboxContainer-withDescripton">
<label class="emby-checkbox-label"> <label class="emby-checkbox-label">
<input id="TrueFalseSetting" name="TrueFalseCheckBox" type="checkbox" is="emby-checkbox" /> <input id="TrueFalseSetting" name="TrueFalseCheckBox" type="checkbox" is="emby-checkbox" />
<span>True or False</span> <span>True or False</span>
</label> </label>
</div> </div>
<div class="inputContainer"> <div class="inputContainer">
<label class="inputeLabel inputLabelUnfocused" for="AString">A String</label> <label class="inputeLabel inputLabelUnfocused" for="AString">A String</label>
<input id="AString" name="AString" type="text" is="emby-input" /> <input id="AString" name="AString" type="text" is="emby-input" />
<div class="fieldDescription">Words go here</div> <div class="fieldDescription">Words go here</div>
</div> </div>
<div> <div>
<button is="emby-button" type="submit" class="raised button-submit block emby-button"> <button is="emby-button" type="submit" class="raised button-submit block emby-button">
<span>Save</span> <span>Save</span>
</button> </button>
</div> </div>
</form> </form>
</div>
</div> </div>
<script type="text/javascript">
var ExamplePluginConfigurationPage = {
pluginUniqueId: 'eb5d7894-8eef-4b36-aa6f-5d124e828ce1',
loadConfiguration: function() {
Dashboard.showLoadingMsg();
ApiClient.getPluginConfiguration(ExamplePluginConfigurationPage.pluginUniqueId).then(function (config) {
$('#Options').val(config.Options).change();
$('#AnInteger').val(config.AnInteger).change();
$('#TrueFalseSetting').checked(config.TrueFalseSetting).checkboxradio("refresh");
$('#AString').val(config.AString).change();
Dashboard.hideLoadingMsg();
});
},
saveConfiguration: function() {
Dashboard.showLoadingMsg();
ApiClient.getPluginConfiguration(ExamplePluginConfigurationPage.pluginUniqueId).then(function (config) {
config.Options = $('#Options').val();
config.AnInteger = $('#AnInteger').val();
config.TrueFalseSetting = $('#TrueFalseSetting').prop('checked');
config.AString = $('#AString').val();
ApiClient.updatePluginConfiguration(ExamplePluginConfigurationPage.pluginUniqueId, config).then(function (result) {
Dashboard.processPluginConfigurationUpdateResult(result);
});
});
}
};
$('#ExamplePluginConfigurationPage').on('pageshow', function () {
ExamplePluginConfigurationPage.loadConfiguration();
});
$('#ExamplePluginConfigurationForm').on('submit', function () {
ExamplePluginConfigurationPage.saveConfiguration();
return false;
});
</script>
</div> </div>
<script type="text/javascript">
var ExamplePluginConfigurationPage = {
pluginUniqueId: 'eb5d7894-8eef-4b36-aa6f-5d124e828ce1'
};
$('#ExamplePluginConfigurationPage').on('pageshow', function () {
Dashboard.showLoadingMsg();
ApiClient.getPluginConfiguration(ExamplePluginConfigurationPage.pluginUniqueId).then(function (config) {
$('#Options').val(config.Options).change();
$('#AnInteger').val(config.AnInteger).change();
$('#TrueFalseSetting').checked(config.TrueFalseSetting).checkboxradio("refresh");
$('#AString').val(config.AString).change();
Dashboard.hideLoadingMsg();
});
});
$('#ExamplePluginConfigurationForm').on('submit', function () {
Dashboard.showLoadingMsg();
ApiClient.getPluginConfiguration(ExamplePluginConfigurationPage.pluginUniqueId).then(function (config) {
config.Options = $('#Options').val();
config.AnInteger = $('#AnInteger').val();
config.TrueFalseSetting = $('#TrueFalseSetting').prop('checked');
config.AString = $('#AString').val();
ApiClient.updatePluginConfiguration(ExamplePluginConfigurationPage.pluginUniqueId, config).then(function (result) {
Dashboard.processPluginConfigurationUpdateResult(result);
});
});
return false;
});
</script>
</div>
</body> </body>
</html> </html>