-
Notifications
You must be signed in to change notification settings - Fork 9
/
config.jelly
108 lines (98 loc) · 4.77 KB
/
config.jelly
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!--
The MIT License
Copyright (c) 2022 strangelookingnerd
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.
-->
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:f="/lib/form">
<f:entry title="${%IconPreview}" help="${descriptor.getHelpFile('upload')}">
<link rel="stylesheet" href="${rootURL}/plugin/custom-folder-icon/croppie/croppie.css" type="text/css" />
<script src="${rootURL}/plugin/custom-folder-icon/croppie/croppie.js" type="text/javascript"></script>
<div id="icon-preview">
<div id="file-cropper"></div>
<!-- @size is for other browsers, @style is for IE -->
<!-- TODO switch to f:file after baseline includes https://github.com/jenkinsci/jenkins/pull/7452 -->
<input type="file" class="jenkins-file-upload" style="width:80%" size="40" accept="image/*" id="file-input" />
<st:nbsp />
<input type="button" value="${%Apply}" id="apply-button" />
</div>
</f:entry>
<f:entry field="foldericon">
<f:textbox id="file-name" value="${instance.foldericon}" style="display: none" />
</f:entry>
<script>
// init preview url
var preview = document.getElementById("file-name").getAttribute("value");
var url;
if (preview != null && preview != '') {
url = "${rootURL}/userContent/customFolderIcons/" + preview;
} else {
url = "${rootURL}/plugin/custom-folder-icon/icons/default.png";
}
// init croppie
var croppie = new Croppie(document.getElementById("file-cropper"), {
viewport: { width: 128, height: 128 },
boundary: { width: 200, height: 200 },
enforceBoundary: false,
url: url
});
// read file input
document.getElementById("file-input").addEventListener("change", function(e) {
var reader = new FileReader();
reader.onload = function (ev) {
croppie.bind({
url: ev.target.result
});
}
reader.readAsDataURL(this.files[0]);
});
// handle apply
document.getElementById("apply-button").addEventListener("click", function(e) {
var request = new XMLHttpRequest();
request.onreadystatechange = function() {
if (this.readyState == 4) {
if (this.status == 200) {
document.getElementById("file-name").setAttribute("value", this.responseText);
alert("${%UploadSuccess} " + this.responseText);
} else {
var error = this.responseText.substring(this.responseText.lastIndexOf("<title>")+7, this.responseText.lastIndexOf("</title>"));
alert("${%UploadFailed} " + error);
}
}
};
request.open("POST", "${rootURL}/descriptor/jenkins.plugins.foldericon.CustomFolderIcon/uploadIcon");
// get a crumb
new Ajax.Request("${rootURL}/crumbIssuer/api/json", {
method: "GET",
onSuccess: function(req) {
var jsonResponse = JSON.parse(req.transport.response);
var header = jsonResponse.crumbRequestField;
var value = jsonResponse.crumb;
request.setRequestHeader(header, value);
},
onComplete: function() {
// upload the file
var formData = new FormData();
croppie.result("blob").then(function(blob) {
formData.append("file", blob);
request.send(formData);
});
}
});
});
</script>
</j:jelly>