-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotificationView.js
249 lines (229 loc) · 9.76 KB
/
notificationView.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
jQuery.noConflict();
(function($) {
'use strict';
// アプリカスタマイズjsと競合する可能性があるのでアプリ画面ではロードしない
const domain = '{subdomain}.cybozu.com'; // ご自身の環境のサブドメイン
if (!(location.href.indexOf('https://' + domain + '/k/#/') === 0 || location.href === 'https://' + domain + '/k/')) return;
const taskAPPID = xx; // To DoアプリID
const loginUserCode = kintone.getLoginUser().code;
// スピナー表示
function showSpinner() {
// Initialize
if ($('.kintone-spinner').length === 0) {
// Create elements for the spinner and the background of the spinner
const spin_div = $('<div id ="kintone-spin" class="kintone-spinner"></div>');
const spin_bg_div = $('<div id ="kintone-spin-bg" class="kintone-spinner"></div>');
// Append spinner to the body
$(document.body).append(spin_div, spin_bg_div);
// Set a style for the spinner
$(spin_div).css({
'position': 'fixed',
'top': '50%',
'left': '50%',
'z-index': '510',
'background-color': '#fff',
'padding': '26px',
'-moz-border-radius': '4px',
'-webkit-border-radius': '4px',
'border-radius': '4px'
});
$(spin_bg_div).css({
'position': 'absolute',
'top': '0px',
'left': '0px',
'z-index': '500',
'width': '100%',
'height': '200%',
'background-color': '#000',
'opacity': '0.5',
'filter': 'alpha(opacity=50)',
'-ms-filter': 'alpha(opacity=50)'
});
// Set options for the spinner
const opts = {
'color': '#000'
};
// Create the spinner
new Spinner(opts).spin(document.getElementById('kintone-spin'));
}
// Display the spinner
$('.kintone-spinner').show();
}
// bodyのスピナー非表示
function hideSpinner() {
// Hide the spinner
$('.kintone-spinner').hide();
}
// タスク登録アプリにレコードを登録する
function postAction() {
const body = {
'app': taskAPPID,
'record': {
'To_Do': {
'value': $('.form-example [name=task]').val()
},
'Details': {
'value': $('.form-example [name=detail]').val()
},
'Duedate': {
'value': $('.form-example [name=date]').val()
},
'From': {
'value': moment().format('YYYY-MM-DD')
},
'Priority': {
'value': $('[name=radio]:checked').val()
},
'Assignees': {
'value': [{
'code': loginUserCode
}]
}
}
};
return kintone.api('/k/v1/record', 'POST', body).then(function(resp) {
console.log(resp);
return resp;
}).catch(function(err) {
console.log(err);
});
}
// 登録したレコードのステータスを進める
function updateAssignee(resp) {
const body = {
'app': taskAPPID,
'id': resp.id,
'action': '依頼する(担当者を設定後)',
'assignee': loginUserCode
};
return kintone.api('/k/v1/record/status', 'PUT', body);
}
// タスク登録フォームをリセットする
function resetAction() {
$('.form-example [name=task]').val('');
$('.form-example [name=detail]').val('');
$('#date').val(moment().format('YYYY-MM-DD'));
$('#radio-0').prop('checked', true);
}
// タスク登録フォーム作成
function taskElmRender() {
// タスク登録用の要素
const boxHtml = $('<div class="sampleBox">' +
'<div class="kintoneplugin-label">タスク登録</div>' +
'<form class="form-example">' +
// タスク名
'<div class="form-block">' +
'<div><label>Task name: </label></div>' +
'<input type="text" name="task" id="name" required>' +
'</div>' +
// タスク詳細
'<div class="form-block">' +
'<div><label>Details: </label></div>' +
'<textarea name="detail" id="detail"></textarea>' +
'</div>' +
// 優先度ラジオボタン
'<div class="form-block">' +
'<div><label>Priority: </label></div>' +
'<div class="kintoneplugin-input-radio">' +
'<span class="kintoneplugin-input-radio-item">' +
'<input type="radio" name="radio" value="A" id="radio-0" checked="">' +
'<label for="radio-0">A</label>' +
'</span>' +
'<span class="kintoneplugin-input-radio-item">' +
'<input type="radio" name="radio" value="B" id="radio-1">' +
'<label for="radio-1">B</label>' +
'</span>' +
'<span class="kintoneplugin-input-radio-item">' +
'<input type="radio" name="radio" value="C" id="radio-2">' +
'<label for="radio-2">C</label>' +
'</span>' +
'</div>' +
'</div>' +
// タスク期限
'<div class="form-block">' +
'<div><label>Due date: </label></div>' +
'<input type="date" name="date" id="date">' +
'</div>' +
// 登録リセットボタン
'<div class="form-block">' +
'<button class="kintoneplugin-button-dialog-ok" id="post" type="submit">登録</button>' +
'<button class="kintoneplugin-button-dialog-cancel" type="reset">リセット</button>' +
'</div>' +
'</form>' +
'</div>');
boxHtml.css({
'display': 'inline-block',
'float': 'right',
'vertical-align': 'top',
'width': '25%',
'max-width': '340px',
'background-color': $('.gaia-header-header').css('background-color')
});
// 通知ブロック編集
$('.ocean-ntf-ntflist').css({
'display': 'inline-block',
'vertical-align': 'top',
'width': '75%',
});
// 登録フォーム描画
$('.ocean-ntf-ntflist').after(boxHtml);
// 登録フォームCSS編集
$('.form-example').css({
'min-width': '335px',
'margin-left': '5px'
});
// 登録フォームパーツ編集
$('.form-block').css({
'margin-bottom': '10px'
});
// 登録リセットボタン綺麗に
$('.kintoneplugin-button-dialog-ok').css({
'margin-right': '5px'
});
// 登録フォーム日付初期値
$('#date').val(moment().format('YYYY-MM-DD'));
// 登録ボタン押下時の処理
$('.form-example').on('submit', function(e) {
e.preventDefault();
showSpinner();
postAction().then(function(resp) {
return updateAssignee(resp);
}).then(function(resp) {
hideSpinner();
alert('タスク登録しました。');
resetAction();
}).catch(function(err) {
alert(err.message);
});
});
// リセットボタン押下時の処理
$('.form-example').on('reset', function(e) {
e.preventDefault();
resetAction();
});
}
// バインドする
const body = $('.body-top');
const observer = new MutationObserver(function(MutationRecord) {
const noticesBlock = $('.ocean-ntf-ntfitem');
// 通知要素が出現するまでリターン
if (!noticesBlock.length) return;
// 既にフォームが存在する場合
if ($('.sampleBox').length) return;
// タスク登録フォーム作成
taskElmRender();
// すべての処理が終わったらバインド終了
observer.disconnect();
});
// バインドする要素のオプション
const options = {
childList: true
};
observer.observe(body[0], options);
// ハッシュ切り替えの時もバインドが必要
$(window).on('hashchange', function() {
// 通知画面以外のハッシュ値変更の場合リターン
if (!location.href.indexOf('https://' + domain + '/k/#/ntf/') === 0) return;
observer.observe(body[0], options);
});
})(jQuery);