-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
40 lines (40 loc) · 2.08 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//Community "Answered" and "Closed" checkboxes
$(document).ready(function () {
// Replace SUBDOMAIN for account subdomain. For example: var subdomain = 'support';
var subdomain = 'SUBDOMAIN';
var windowURL = window.location.href;
if (windowURL.indexOf('posts') > 0) {
(function () {
var $commentFormControls = $('.comment-form-controls');
var $officialCommentLabel = $('#community_comment_official');
if ($officialCommentLabel.length > 0) {
$commentFormControls.prepend($('<input class="community_moderator_tool" type="checkbox" name="community_comment[answered]" id="community_comment_answered">\n <label class="community_moderator_tool" for="community_comment_answered" id="community_comment_answered_label" style="margin-right: 15px;">Answered</label>\n <input class="community_moderator_tool" type="checkbox" name="community_comment[closed]" id="community_comment_closed">\n <label class="community_moderator_tool" for="community_comment_closed" id="community_comment_closed_label" style="margin-right: 15px;">Closed for comments</label>'));
}
var $commentSubmitButton = $('input[type=submit]');
var postSplit = windowURL.split('/posts/');
var secondHalf = postSplit[1];
var postID = secondHalf.substring(0, 9);
var communityJSON = 'https://' + subdomain + '.zendesk.com/api/v2/community/posts/' + postID + '.json';
$commentSubmitButton.click(function makeCalls() {
var $checkedAnswered = $('#community_comment_answered').is(':checked');
var $checkedClosed = $('#community_comment_closed').is(':checked');
if ($checkedAnswered == true) {
$.ajax({
type: 'PUT',
url: communityJSON,
contentType: 'application/json',
data: '{"post": {"status": "answered"}}'
});
}
if ($checkedClosed == true) {
$.ajax({
type: 'PUT',
url: communityJSON,
contentType: 'application/json',
data: '{"post": {"closed": "true"}}'
});
}
});
})();
}
});