-
-
Notifications
You must be signed in to change notification settings - Fork 404
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tidusjar
committed
Jun 3, 2016
1 parent
6a33868
commit d6c2997
Showing
7 changed files
with
340 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,227 @@ | ||
Handlebars.registerHelper('if_eq', function (a, b, opts) { | ||
if (a == b) | ||
return !opts ? null : opts.fn(this); | ||
else | ||
return !opts ? null : opts.inverse(this); | ||
}); | ||
|
||
var issueSource = $("#issue-template").html(); | ||
var issueTemplate = Handlebars.compile(issueSource); | ||
|
||
var base = $('#baseUrl').text(); | ||
|
||
|
||
|
||
initLoad(); | ||
|
||
|
||
|
||
// Report Issue | ||
$(document).on("click", ".dropdownIssue", function (e) { | ||
var issue = $(this).attr("issue-select"); | ||
var id = e.target.id; | ||
// Other issue so the modal is opening | ||
if (issue == 4) { | ||
return; | ||
} | ||
e.preventDefault(); | ||
|
||
var $form = $('#report' + id); | ||
var data = $form.serialize(); | ||
data = data + "&issue=" + issue; | ||
|
||
$.ajax({ | ||
type: $form.prop('method'), | ||
url: $form.prop('action'), | ||
data: data, | ||
dataType: "json", | ||
success: function (response) { | ||
if (checkJsonResponse(response)) { | ||
generateNotify("Success! Added Issue.", "success"); | ||
} | ||
}, | ||
error: function (e) { | ||
console.log(e); | ||
generateNotify("Something went wrong!", "danger"); | ||
} | ||
}); | ||
}); | ||
|
||
// Modal click | ||
$(".theSaveButton").click(function (e) { | ||
var comment = $("#commentArea").val(); | ||
e.preventDefault(); | ||
|
||
var $form = $("#commentForm"); | ||
var data = $form.serialize(); | ||
data = data + "&issue=" + 4 + "&comment=" + comment; | ||
|
||
$.ajax({ | ||
type: $form.prop("method"), | ||
url: $form.prop("action"), | ||
data: data, | ||
dataType: "json", | ||
success: function (response) { | ||
if (checkJsonResponse(response)) { | ||
generateNotify("Success! Added Issue.", "success"); | ||
$("#myModal").modal("hide"); | ||
} | ||
}, | ||
error: function (e) { | ||
console.log(e); | ||
generateNotify("Something went wrong!", "danger"); | ||
} | ||
}); | ||
}); | ||
|
||
// Note Modal click | ||
$(".theNoteSaveButton").click(function (e) { | ||
var comment = $("#noteArea").val(); | ||
e.preventDefault(); | ||
|
||
var $form = $("#noteForm"); | ||
var data = $form.serialize(); | ||
|
||
|
||
$.ajax({ | ||
type: $form.prop("method"), | ||
url: $form.prop("action"), | ||
data: data, | ||
dataType: "json", | ||
success: function (response) { | ||
if (checkJsonResponse(response)) { | ||
generateNotify("Success! Added Note.", "success"); | ||
$("#myModal").modal("hide"); | ||
$('#adminNotesArea' + e.target.value).html("<div>Note from Admin: " + comment + "</div>"); | ||
} | ||
}, | ||
error: function (e) { | ||
console.log(e); | ||
generateNotify("Something went wrong!", "danger"); | ||
} | ||
}); | ||
}); | ||
|
||
// Update the modal | ||
$('#myModal').on('show.bs.modal', function (event) { | ||
var button = $(event.relatedTarget); // Button that triggered the modal | ||
var id = button.data('identifier'); // Extract info from data-* attributes | ||
|
||
var modal = $(this); | ||
modal.find('.theSaveButton').val(id); // Add ID to the button | ||
var requestField = modal.find('input'); | ||
requestField.val(id); // Add ID to the hidden field | ||
}); | ||
|
||
// Update the note modal | ||
$('#noteModal').on('show.bs.modal', function (event) { | ||
var button = $(event.relatedTarget); // Button that triggered the modal | ||
var id = button.data('identifier'); // Extract info from data-* attributes | ||
|
||
var modal = $(this); | ||
modal.find('.theNoteSaveButton').val(id); // Add ID to the button | ||
var requestField = modal.find('.noteId'); | ||
requestField.val(id); // Add ID to the hidden field | ||
}); | ||
|
||
// Delete | ||
$(document).on("click", ".delete", function (e) { | ||
e.preventDefault(); | ||
var buttonId = e.target.id; | ||
var $form = $('#delete' + buttonId); | ||
|
||
$.ajax({ | ||
type: $form.prop('method'), | ||
url: $form.prop('action'), | ||
data: $form.serialize(), | ||
dataType: "json", | ||
success: function (response) { | ||
|
||
if (checkJsonResponse(response)) { | ||
generateNotify("Success! Request Deleted.", "success"); | ||
|
||
$("#" + buttonId + "Template").slideUp(); | ||
} | ||
}, | ||
error: function (e) { | ||
console.log(e); | ||
generateNotify("Something went wrong!", "danger"); | ||
} | ||
}); | ||
|
||
}); | ||
|
||
// Clear issues | ||
$(document).on("click", ".clear", function (e) { | ||
e.preventDefault(); | ||
var buttonId = e.target.id; | ||
var $form = $('#clear' + buttonId); | ||
|
||
$.ajax({ | ||
type: $form.prop('method'), | ||
url: $form.prop('action'), | ||
data: $form.serialize(), | ||
dataType: "json", | ||
success: function (response) { | ||
|
||
if (checkJsonResponse(response)) { | ||
generateNotify("Success! Issues Cleared.", "info"); | ||
$('#issueArea' + buttonId).html("<div>Issue: None</div>"); | ||
} | ||
}, | ||
error: function (e) { | ||
console.log(e); | ||
generateNotify("Something went wrong!", "danger"); | ||
} | ||
}); | ||
|
||
}); | ||
|
||
|
||
function initLoad() { | ||
loadPendingIssues(); | ||
|
||
} | ||
|
||
|
||
function loadPendingIssues() { | ||
$issues = $('#pendingIssues'); | ||
var url = createBaseUrl(base, "issues/pending"); | ||
var linkUrl = createBaseUrl(base, "issues/"); | ||
$.ajax({ | ||
type: "get", | ||
url: url, | ||
dataType: "json", | ||
success: function (response) { | ||
if (response.length > 0) { | ||
response.forEach(function(result) { | ||
var context = buildIssueContext(result); | ||
var html = issueTemplate(context); | ||
$issues.append(html); | ||
|
||
$("#" +result.id + "link").attr("href", linkUrl + result.id); | ||
}); | ||
}; | ||
}, | ||
error: function (e) { | ||
console.log(e); | ||
generateNotify("Could not load Pending issues", "danger"); | ||
} | ||
}); | ||
|
||
} | ||
|
||
|
||
// Builds the issue context. | ||
function buildIssueContext(result) { | ||
var context = { | ||
id: result.id, | ||
requestId: result.requestId, | ||
type: result.type, | ||
title: result.title, | ||
count: result.count | ||
}; | ||
|
||
return context; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#region Copyright | ||
// /************************************************************************ | ||
// Copyright (c) 2016 Jamie Rees | ||
// File: IssuesViewModel.cs | ||
// Created By: Jamie Rees | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining | ||
// a copy of this software and associated documentation files (the | ||
// "Software"), to deal in the Software without restriction, including | ||
// without limitation the rights to use, copy, modify, merge, publish, | ||
// distribute, sublicense, and/or sell copies of the Software, and to | ||
// permit persons to whom the Software is furnished to do so, subject to | ||
// the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be | ||
// included in all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
// ************************************************************************/ | ||
#endregion | ||
|
||
using PlexRequests.Store; | ||
|
||
namespace PlexRequests.UI.Models | ||
{ | ||
public class IssuesViewModel | ||
{ | ||
public int Id { get; set; } | ||
public int RequestId { get; set; } | ||
public string Title { get; set; } | ||
public int Count { get; set; } | ||
public string Type { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.