Moved JS to separate file.
This commit is contained in:
parent
348397e442
commit
e4a2228b2c
|
@ -384,6 +384,7 @@
|
||||||
<Content Include="Scripts\jquery.validate.unobtrusive.min.js" />
|
<Content Include="Scripts\jquery.validate.unobtrusive.min.js" />
|
||||||
<Content Include="Scripts\NzbDrone\addSeries.js" />
|
<Content Include="Scripts\NzbDrone\addSeries.js" />
|
||||||
<Content Include="Scripts\NzbDrone\AutoComplete.js" />
|
<Content Include="Scripts\NzbDrone\AutoComplete.js" />
|
||||||
|
<Content Include="Scripts\NzbDrone\settings.js" />
|
||||||
<Content Include="Scripts\NzbDrone\localSearch.js" />
|
<Content Include="Scripts\NzbDrone\localSearch.js" />
|
||||||
<Content Include="Scripts\NzbDrone\Notification.js" />
|
<Content Include="Scripts\NzbDrone\Notification.js" />
|
||||||
<Content Include="Scripts\NzbDrone\seriesDetails.js" />
|
<Content Include="Scripts\NzbDrone\seriesDetails.js" />
|
||||||
|
|
|
@ -0,0 +1,105 @@
|
||||||
|
$('#SeriesName').live('change', function () { createExamples(); });
|
||||||
|
$('#EpisodeName').live('change', function () { createExamples(); });
|
||||||
|
$('#ReplaceSpaces').live('change', function () { createExamples(); });
|
||||||
|
$('#AppendQuality').live('change', function () { createExamples(); });
|
||||||
|
$('#SeparatorStyle').live('change', function () { createExamples(); });
|
||||||
|
$('#NumberStyle').live('change', function () { createExamples(); });
|
||||||
|
$('#MultiEpisodeStyle').live('change', function () { createExamples(); });
|
||||||
|
|
||||||
|
function createExamples() {
|
||||||
|
createSingleEpisodeExample();
|
||||||
|
createMultiEpisodeExample();
|
||||||
|
}
|
||||||
|
|
||||||
|
function createSingleEpisodeExample() {
|
||||||
|
var result = '';
|
||||||
|
|
||||||
|
var separator = ' - ';
|
||||||
|
|
||||||
|
if ($("#SeparatorStyle option:selected").val() == 1)
|
||||||
|
separator = ' ';
|
||||||
|
|
||||||
|
if ($('#SeriesName').attr('checked')) {
|
||||||
|
result += 'Series Name';
|
||||||
|
result += separator;
|
||||||
|
}
|
||||||
|
|
||||||
|
result += $("#NumberStyle option:selected").text();
|
||||||
|
|
||||||
|
if ($('#EpisodeName').attr('checked')) {
|
||||||
|
result += separator;
|
||||||
|
result += 'Episode Name';
|
||||||
|
}
|
||||||
|
|
||||||
|
var appQual = $('#AppendQuality');
|
||||||
|
if ($('#AppendQuality').attr('checked'))
|
||||||
|
result += ' [TV]';
|
||||||
|
|
||||||
|
if ($('#ReplaceSpaces').attr('checked'))
|
||||||
|
result = result.replace(/\s/g, '.');
|
||||||
|
|
||||||
|
$('#singleEpisodeExample').children('.result').text(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
function createMultiEpisodeExample() {
|
||||||
|
var result = '';
|
||||||
|
|
||||||
|
var separator = ' - ';
|
||||||
|
|
||||||
|
if ($("#SeparatorStyle option:selected").val() == 1)
|
||||||
|
separator = ' ';
|
||||||
|
|
||||||
|
if ($('#SeriesName').attr('checked')) {
|
||||||
|
result += 'Series Name';
|
||||||
|
result += separator;
|
||||||
|
}
|
||||||
|
|
||||||
|
var numberStyle = $("#NumberStyle option:selected").text();
|
||||||
|
var numberId = $("#NumberStyle option:selected").val();
|
||||||
|
var style = $("#MultiEpisodeStyle option:selected").val();
|
||||||
|
|
||||||
|
result += numberStyle;
|
||||||
|
|
||||||
|
if (style == 0)
|
||||||
|
result += '-06';
|
||||||
|
|
||||||
|
if (style == 1) {
|
||||||
|
result += separator;
|
||||||
|
result += numberStyle.replace('5', '6');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (style == 2) {
|
||||||
|
if (numberId <= 1)
|
||||||
|
result += 'x06';
|
||||||
|
|
||||||
|
if (numberId == 2)
|
||||||
|
result += 'E06';
|
||||||
|
|
||||||
|
if (numberId == 3)
|
||||||
|
result += 'e06';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (style == 3) {
|
||||||
|
if (numberId <= 1)
|
||||||
|
result += '-x06';
|
||||||
|
|
||||||
|
if (numberId == 2)
|
||||||
|
result += '-E06';
|
||||||
|
|
||||||
|
if (numberId == 3)
|
||||||
|
result += '-e06';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($('#EpisodeName').attr('checked')) {
|
||||||
|
result += separator;
|
||||||
|
result += 'Episode Name';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($('#AppendQuality').attr('checked'))
|
||||||
|
result += ' [TV]';
|
||||||
|
|
||||||
|
if ($('#ReplaceSpaces').attr('checked'))
|
||||||
|
result = result.replace(/\s/g, '.');
|
||||||
|
|
||||||
|
$('#multiEpisodeExample').children('.result').text(result);
|
||||||
|
}
|
|
@ -1,4 +1,5 @@
|
||||||
@{ViewBag.Title = "Settings";}
|
@using NzbDrone.Web.Helpers
|
||||||
|
@{ViewBag.Title = "Settings";}
|
||||||
|
|
||||||
<div class="jquery-tabs">
|
<div class="jquery-tabs">
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -9,4 +10,8 @@
|
||||||
<li>@Html.ActionLink("Notifications", "Notifications", "Settings")</li>
|
<li>@Html.ActionLink("Notifications", "Notifications", "Settings")</li>
|
||||||
<li>@Html.ActionLink("System", "System", "Settings")</li>
|
<li>@Html.ActionLink("System", "System", "Settings")</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@section Scripts{
|
||||||
|
@Html.IncludeScript("NzbDrone/settings.js")
|
||||||
|
}
|
|
@ -77,114 +77,5 @@
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
createExamples();
|
createExamples();
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#SeriesName').live('change', function () { createExamples(); });
|
|
||||||
$('#EpisodeName').live('change', function () { createExamples(); });
|
|
||||||
$('#ReplaceSpaces').live('change', function () { createExamples(); });
|
|
||||||
$('#AppendQuality').live('change', function () { createExamples(); });
|
|
||||||
$('#SeparatorStyle').live('change', function () { createExamples(); });
|
|
||||||
$('#NumberStyle').live('change', function () { createExamples(); });
|
|
||||||
$('#MultiEpisodeStyle').live('change', function () { createExamples(); });
|
|
||||||
|
|
||||||
function createExamples() {
|
|
||||||
createSingleEpisodeExample();
|
|
||||||
createMultiEpisodeExample();
|
|
||||||
}
|
|
||||||
|
|
||||||
function createSingleEpisodeExample() {
|
|
||||||
var result = '';
|
|
||||||
|
|
||||||
var separator = ' - ';
|
|
||||||
|
|
||||||
if ($("#SeparatorStyle option:selected").val() == 1)
|
|
||||||
separator = ' ';
|
|
||||||
|
|
||||||
if ($('#SeriesName').attr('checked')) {
|
|
||||||
result += 'Series Name';
|
|
||||||
result += separator;
|
|
||||||
}
|
|
||||||
|
|
||||||
result += $("#NumberStyle option:selected").text();
|
|
||||||
|
|
||||||
if ($('#EpisodeName').attr('checked')) {
|
|
||||||
result += separator;
|
|
||||||
result += 'Episode Name';
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($('#AppendQuality').attr('checked'))
|
|
||||||
result += ' [TV]';
|
|
||||||
|
|
||||||
if ($('#ReplaceSpaces').attr('checked'))
|
|
||||||
result = result.replace(/\s/g, '.');
|
|
||||||
|
|
||||||
//result = '<b>Single Episode Example: </b>' + result;
|
|
||||||
|
|
||||||
$('#singleEpisodeExample').children('.result').text(result);
|
|
||||||
}
|
|
||||||
|
|
||||||
function createMultiEpisodeExample() {
|
|
||||||
var result = '';
|
|
||||||
|
|
||||||
var separator = ' - ';
|
|
||||||
|
|
||||||
if ($("#SeparatorStyle option:selected").val() == 1)
|
|
||||||
separator = ' ';
|
|
||||||
|
|
||||||
if ($('#SeriesName').attr('checked')) {
|
|
||||||
result += 'Series Name';
|
|
||||||
result += separator;
|
|
||||||
}
|
|
||||||
|
|
||||||
var numberStyle = $("#NumberStyle option:selected").text();
|
|
||||||
var numberId = $("#NumberStyle option:selected").val();
|
|
||||||
var style = $("#MultiEpisodeStyle option:selected").val();
|
|
||||||
|
|
||||||
result += numberStyle;
|
|
||||||
|
|
||||||
if (style == 0)
|
|
||||||
result += '-06';
|
|
||||||
|
|
||||||
if (style == 1) {
|
|
||||||
result += separator;
|
|
||||||
result += numberStyle.replace('5', '6');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (style == 2) {
|
|
||||||
if (numberId <= 1)
|
|
||||||
result += 'x06';
|
|
||||||
|
|
||||||
if (numberId == 2)
|
|
||||||
result += 'E06';
|
|
||||||
|
|
||||||
if (numberId == 3)
|
|
||||||
result += 'e06';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (style == 3) {
|
|
||||||
if (numberId <= 1)
|
|
||||||
result += '-x06';
|
|
||||||
|
|
||||||
if (numberId == 2)
|
|
||||||
result += '-E06';
|
|
||||||
|
|
||||||
if (numberId == 3)
|
|
||||||
result += '-e06';
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($('#EpisodeName').attr('checked')) {
|
|
||||||
result += separator;
|
|
||||||
result += 'Episode Name';
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($('#AppendQuality').attr('checked'))
|
|
||||||
result += ' [TV]';
|
|
||||||
|
|
||||||
if ($('#ReplaceSpaces').attr('checked'))
|
|
||||||
result = result.replace(/\s/g, '.');
|
|
||||||
|
|
||||||
//result = '<b>Multi-Episode Example: </b>' + result;
|
|
||||||
|
|
||||||
$('#multiEpisodeExample').children('.result').text(result);
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue