mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 10:36:54 -07:00
The move!
This commit is contained in:
parent
1daf480b1b
commit
25526cc4d9
1147 changed files with 85 additions and 8524 deletions
210
Old/Ombi.UI/Views/SystemStatus/Status.cshtml
Normal file
210
Old/Ombi.UI/Views/SystemStatus/Status.cshtml
Normal file
|
@ -0,0 +1,210 @@
|
|||
@using Ombi.UI.Helpers
|
||||
@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase<Ombi.Core.SettingModels.SystemSettings>
|
||||
@Html.Partial("Shared/Partial/_Sidebar")
|
||||
<div id="lightbox" style="display:none"></div>
|
||||
<div class="col-sm-8 col-sm-push-1">
|
||||
<fieldset>
|
||||
<legend>Updates</legend>
|
||||
|
||||
|
||||
<ul class="nav nav-tabs">
|
||||
<li class="active"><a href="#status" data-toggle="tab" aria-expanded="true">Status</a></li>
|
||||
<li id="changesTab" class=""><a href="#changes" data-toggle="tab" aria-expanded="false">Recent Changes</a></li>
|
||||
</ul>
|
||||
<div id="myTabContent" class="tab-content">
|
||||
<div class="tab-pane fade active in" id="status">
|
||||
<br />
|
||||
<div class="form-group">
|
||||
<label class="control-label">Current Version: </label>
|
||||
<label class="control-label">@Model.Status.CurrentVersion</label>
|
||||
</div>
|
||||
|
||||
@if (Model.Status.UpdateAvailable)
|
||||
{
|
||||
<div class="form-group">
|
||||
<label class="control-label">New Version: </label>
|
||||
<label class="control-label">@Model.Status.NewVersion</label>
|
||||
</div>
|
||||
}
|
||||
<hr />
|
||||
<form id="mainForm" method="post" action="save">
|
||||
|
||||
<div class="form-group">
|
||||
<label for="select" class="control-label">Code Branch</label>
|
||||
<div id="branches">
|
||||
<select class="form-control form-control-custom" id="select">
|
||||
@foreach (var b in Model.BranchDropdown)
|
||||
{
|
||||
if (b.Selected)
|
||||
{
|
||||
<option selected='selected' value='@b.Value'>@b.Name</option>
|
||||
}
|
||||
else
|
||||
{
|
||||
<option value='@b.Value'>@b.Name</option>
|
||||
}
|
||||
}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<button id="saveSettings" class="btn btn-success-outline">Save</button>
|
||||
</form>
|
||||
<hr />
|
||||
<div class="form-group">
|
||||
<label class="control-label">Update Available: </label>
|
||||
@if (Model.Status.UpdateAvailable)
|
||||
{
|
||||
<label class="control-label"><a href="@Model.Status.UpdateUri" target="_blank"><i class="fa fa-check"></i></a> @Html.ToolTip("Click the 'tick' to manually go to the page")</label>
|
||||
<br />
|
||||
<br />
|
||||
@*<label class="control-label">Launch Arguments</label>
|
||||
@Html.ToolTip("This is if you run Ombi outside of a regular install e.g. you are launching with a custom port. This field will be used after we have updated to launch the application.")
|
||||
<input id="args" class="form-control form-control-custom " placeholder="/etc/mono /opt/Ombi.exe">
|
||||
<br />
|
||||
<button id="autoUpdate" class="btn btn-success-outline">Automatic Update (beta) <i class="fa fa-download"></i></button>*@
|
||||
}
|
||||
else
|
||||
{
|
||||
<label class="control-label"><i class="fa fa-times"></i></label>
|
||||
}
|
||||
|
||||
</div>
|
||||
<hr />
|
||||
@if (Model.Status.UpdateAvailable)
|
||||
{
|
||||
<h2>
|
||||
<a href="@Model.Status.DownloadUri">@Model.Status.ReleaseTitle</a>
|
||||
</h2>
|
||||
<hr />
|
||||
<label>Release Notes:</label>
|
||||
@Html.Raw(Model.Status.ReleaseNotes)
|
||||
}
|
||||
</div>
|
||||
<div class="tab-pane fade" id="changes">
|
||||
<br />
|
||||
<div id="changesArea"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<script id="changes-template" type="text/x-handlebars-template">
|
||||
|
||||
<fieldset>
|
||||
<div class="col-md-12">
|
||||
<h4 class="col-md-2">
|
||||
{{version}}
|
||||
</h4>
|
||||
<h5 class="col-md-4">
|
||||
<span class="date">
|
||||
- <span title="" data-original-title="Sunday, March 12 2017 10:30am">{{date}}</span>
|
||||
</span>
|
||||
</h5>
|
||||
|
||||
<h6 class="col-md-6">
|
||||
<span class="status">
|
||||
<span class="label label-default">{{branch}}</span>
|
||||
{{#if installed}}
|
||||
<span class="label label-success">Installed</span>
|
||||
{{/if}}
|
||||
</span>
|
||||
</h6>
|
||||
|
||||
</div><hr />
|
||||
<div class="col-md-12">
|
||||
{{message}}
|
||||
</div>
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
</script>
|
||||
|
||||
<script>
|
||||
$('.customTooltip').tooltipster({
|
||||
contentCloning: true
|
||||
});
|
||||
var base = '@Html.GetBaseUrl()';
|
||||
$('#autoUpdate')
|
||||
.click(function (e) {
|
||||
e.preventDefault();
|
||||
$('body').append("<i class=\"fa fa-spinner fa-spin fa-5x fa-fw\" style=\"position: absolute; top: 20%; left: 50%;\"></i>");
|
||||
$('#autoUpdate').prop("disabled", "disabled");
|
||||
document.getElementById("lightbox").style.display = "";
|
||||
var count = 0;
|
||||
setInterval(function () {
|
||||
count++;
|
||||
var dots = new Array(count % 10).join('.');
|
||||
document.getElementById('autoUpdate').innerHTML = "Updating" + dots;
|
||||
}, 1000);
|
||||
|
||||
$.ajax({
|
||||
type: "Post",
|
||||
url: "autoupdate",
|
||||
data: {
|
||||
url: "@Model.Status.DownloadUri",
|
||||
args: $('#args').val()
|
||||
},
|
||||
dataType: "json",
|
||||
error: function () {
|
||||
setTimeout(
|
||||
function () {
|
||||
location.reload();
|
||||
}, 30000);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
$('#saveSettings').click(function (e) {
|
||||
e.preventDefault();
|
||||
var $form = $("#mainForm");
|
||||
|
||||
var branches = $("#branches option:selected").val();
|
||||
|
||||
var data = $form.serialize();
|
||||
data = data + "&branch=" + branches;
|
||||
$.ajax({
|
||||
type: $form.prop("method"),
|
||||
url: $form.prop("action"),
|
||||
data: data,
|
||||
dataType: "json",
|
||||
success: function (response) {
|
||||
if (response.result === true) {
|
||||
generateNotify(response.message, "success");
|
||||
|
||||
} else {
|
||||
generateNotify(response.message, "warning");
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
var changesSource = $("#changes-template").html();
|
||||
var changesTemplate = Handlebars.compile(changesSource);
|
||||
var changesLoaded = false;
|
||||
$('#changesTab').click(function (e) {
|
||||
e.preventDefault();
|
||||
if (changesLoaded) return;
|
||||
var url = createBaseUrl(base, "/admin/changes");
|
||||
$area = $('#changesArea');
|
||||
$.ajax({
|
||||
type: 'GET',
|
||||
url: url,
|
||||
dataType: "json",
|
||||
success: function (response) {
|
||||
$(response).each(function (index, item) {
|
||||
item.date = moment.utc(item.date).local().format('lll');
|
||||
var html = changesTemplate(item);
|
||||
$area.append(html);
|
||||
});
|
||||
changesLoaded = true;
|
||||
return;
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue