1 // This file is part of Moodle - http://moodle.org/
3 // Moodle is free software: you can redistribute it and/or modify
4 // it under the terms of the GNU General Public License as published by
5 // the Free Software Foundation, either version 3 of the License, or
6 // (at your option) any later version.
8 // Moodle is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 // GNU General Public License for more details.
13 // You should have received a copy of the GNU General Public License
14 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * @author Dongsheng Cai <dongsheng@moodle.com>
22 * Initialize commenting system
24 init: function(Y, options) {
25 var CommentHelper = function(args) {
26 CommentHelper.superclass.constructor.apply(this, arguments);
28 CommentHelper.NAME = "COMMENT";
29 CommentHelper.ATTRS = {
33 Y.extend(CommentHelper, Y.Base, {
34 api: M.cfg.wwwroot+'/comment/comment_ajax.php',
35 initializer: function(args) {
37 this.client_id = args.client_id;
38 this.itemid = args.itemid;
39 this.commentarea = args.commentarea;
40 this.courseid = args.courseid;
41 this.contextid = args.contextid;
49 Y.one('#comment-link-'+this.client_id).setStyle('display', 'none');
52 var handle = Y.one('#comment-link-'+this.client_id);
54 handle.on('click', function(e) {
60 CommentHelper.confirmoverlay = new Y.Overlay({
61 bodyContent: '<div class="comment-delete-confirm"><a href="#" id="confirmdelete-'+this.client_id+'">'+M.str.moodle.yes+'</a> <a href="#" id="canceldelete-'+this.client_id+'">'+M.str.moodle.no+'</a></div>',
64 CommentHelper.confirmoverlay.render(document.body);
67 var ta = Y.one('#dlg-content-'+this.client_id);
69 var value = ta.get('value');
70 if (value && value != M.str.moodle.addcomment) {
71 var params = {'content': value};
76 callback: function(id, obj, args) {
77 var scope = args.scope;
78 var cid = scope.client_id;
79 var ta = Y.one('#dlg-content-'+cid);
81 var container = Y.one('#comment-list-'+cid);
82 var result = scope.render([obj], true);
83 var newcomment = Y.Node.create(result.html);
84 container.appendChild(newcomment);
86 var linktext = Y.one('#comment-link-text-'+cid);
87 linktext.set('innerHTML', M.str.moodle.comments + ' ('+obj.count+')');
90 color: { to: '#06e' },
91 backgroundColor: { to: '#FFE390' }
93 var anim = new YAHOO.util.ColorAnim(ids[i], attributes);
96 scope.register_pagination();
97 scope.register_delete_buttons();
102 backgroundColor: { from: '#FFE390', to:'#FFFFFF' }
104 var anim = new YAHOO.util.ColorAnim('dlg-content-'+cid, attributes);
108 request: function(args, noloading) {
112 scope = args['scope'];
114 //params['page'] = args.page?args.page:'';
116 // the form element only accept certain file types
117 params['sesskey'] = M.cfg.sesskey;
118 params['action'] = args.action?args.action:'';
119 params['client_id'] = this.client_id;
120 params['itemid'] = this.itemid;
121 params['area'] = this.commentarea;
122 params['courseid'] = this.courseid;
123 params['contextid'] = this.contextid;
124 if (args['params']) {
125 for (i in args['params']) {
126 params[i] = args['params'][i];
132 complete: function(id,o,p) {
137 var data = Y.JSON.parse(o.responseText);
142 args.callback(id,data,p);
151 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
152 'User-Agent': 'MoodleComment/3.0'
154 data: build_querystring(params)
157 cfg.form = args.form;
164 render: function(list, newcmt) {
167 var template = Y.one('#cmt-tmpl');
170 var htmlid = 'comment-'+list[i].id+'-'+this.client_id;
171 var val = template.get('innerHTML');
172 if (list[i].profileurl) {
173 val = val.replace('___name___', '<a href="'+list[i].profileurl+'">'+list[i].fullname+'</a>');
175 val = val.replace('___name___', list[i].fullname);
177 if (list[i]['delete']||newcmt) {
178 list[i].content = '<div class="comment-delete"><a href="#" id ="comment-delete-'+this.client_id+'-'+list[i].id+'" title="'+M.str.moodle.deletecomment+'"><img src="'+M.util.image_url('t/delete', 'core')+'" /></a></div>' + list[i].content;
180 val = val.replace('___time___', list[i].time);
181 val = val.replace('___picture___', list[i].avatar);
182 val = val.replace('___content___', list[i].content);
183 val = '<li id="'+htmlid+'">'+val+'</li>';
184 ret.ids.push(htmlid);
190 load: function(page) {
192 var container = Y.one('#comment-ctrl-'+this.client_id);
199 callback: function(id, ret, args) {
200 var linktext = Y.one('#comment-link-text-'+scope.client_id);
201 linktext.set('innerHTML', M.str.moodle.comments + ' ('+ret.count+')');
202 var container = Y.one('#comment-list-'+scope.client_id);
203 var pagination = Y.one('#comment-pagination-'+scope.client_id);
204 if (ret.pagination) {
205 pagination.set('innerHTML', ret.pagination);
208 pagination.set('innerHTML', '');
210 var result = scope.render(ret.list);
211 container.set('innerHTML', result.html);
212 args.scope.register_pagination();
213 args.scope.register_delete_buttons();
218 dodelete: function(id) { // note: delete is a reserved word in javascript, chrome and safary do not like it at all here!
220 var params = {'commentid': id};
221 scope.cancel_delete();
222 function remove_dom(type, anim, cmt) {
229 callback: function(id, resp, args) {
230 var htmlid= 'comment-'+resp.commentid+'-'+resp.client_id;
235 var cmt = Y.one('#'+htmlid);
236 cmt.setStyle('overflow', 'hidden');
237 var anim = new YAHOO.util.Anim(htmlid, attributes, 1, YAHOO.util.Easing.easeOut);
238 anim.onComplete.subscribe(remove_dom, cmt, this);
243 register_actions: function() {
245 var action_btn = Y.one('#comment-action-post-'+this.client_id);
247 action_btn.on('click', function(e) {
253 // cancel comment box
254 var cancel = Y.one('#comment-action-cancel-'+this.client_id);
256 cancel.on('click', function(e) {
263 register_delete_buttons: function() {
266 Y.all('div.comment-delete a').each(
268 var theid = node.get('id');
269 var parseid = new RegExp("comment-delete-"+scope.client_id+"-(\\d+)", "i");
270 var commentid = theid.match(parseid);
275 Y.Event.purgeElement('#'+theid, false, 'click');
277 node.on('click', function(e, node) {
279 var width = CommentHelper.confirmoverlay.bodyNode.getStyle('width');
280 var re = new RegExp("(\\d+).*", "i");
281 var result = width.match(re);
283 width = Number(result[1]);
287 //CommentHelper.confirmoverlay.set('xy', [e.pageX-(width/2), e.pageY]);
288 CommentHelper.confirmoverlay.set('xy', [e.pageX-width-5, e.pageY]);
289 CommentHelper.confirmoverlay.set('visible', true);
290 Y.one('#canceldelete-'+scope.client_id).on('click', function(e) {
292 scope.cancel_delete();
294 Y.Event.purgeElement('#confirmdelete-'+scope.client_id, false, 'click');
295 Y.one('#confirmdelete-'+scope.client_id).on('click', function(e) {
298 scope.dodelete(commentid[1]);
305 cancel_delete: function() {
306 CommentHelper.confirmoverlay.set('visible', false);
308 register_pagination: function() {
311 Y.all('#comment-pagination-'+this.client_id+' a').each(
313 node.on('click', function(e, node) {
315 var id = node.get('id');
316 var re = new RegExp("comment-page-"+this.client_id+"-(\\d+)", "i");
317 var result = id.match(re);
318 this.load(result[1]);
323 view: function(page) {
324 var container = Y.one('#comment-ctrl-'+this.client_id);
325 var ta = Y.one('#dlg-content-'+this.client_id);
326 var img = Y.one('#comment-img-'+this.client_id);
327 var d = container.getStyle('display');
328 if (d=='none'||d=='') {
330 if (this.env != 'block_comments') {
333 this.register_delete_buttons();
334 this.register_pagination();
336 container.setStyle('display', 'block');
337 img.src=M.util.image_url('t/expanded', 'core');
340 container.setStyle('display', 'none');
341 img.src=M.util.image_url('t/collapsed', 'core');
347 //toggle_textarea.apply(ta, [false]);
348 //// reset textarea size
349 ta.on('click', function() {
350 this.toggle_textarea(true);
352 //ta.onkeypress = function() {
353 //if (this.scrollHeight > this.clientHeight && !window.opera)
356 ta.on('blur', function() {
357 this.toggle_textarea(false);
360 this.register_actions();
363 toggle_textarea: function(focus) {
364 var t = Y.one('#dlg-content-'+this.client_id);
366 if (t.get('value') == M.str.moodle.addcomment) {
368 t.setStyle('color', 'black');
371 if (t.get('value') == '') {
372 t.set('value', M.str.moodle.addcomment);
373 t.setStyle('color','grey');
379 var container = Y.one('#comment-list-'+this.client_id);
380 container.set('innerHTML', '<div class="mdl-align"><img src="'+M.util.image_url('i/loading', 'core')+'" /></div>');
384 new CommentHelper(options);
386 init_admin: function(Y) {
387 var select_all = Y.one('#comment_select_all');
388 select_all.on('click', function(e) {
389 var comments = document.getElementsByName('comments');
391 for (var i in comments) {
392 if (comments[i].checked) {
396 for (i in comments) {
397 comments[i].checked = !checked;
399 this.set('checked', !checked);
402 var comments_delete = Y.one('#comments_delete');
403 if (comments_delete) {
404 comments_delete.on('click', function(e) {
407 var comments = document.getElementsByName('comments');
408 for (var i in comments) {
409 if (typeof comments[i] == 'object' && comments[i].checked) {
410 list += (comments[i].value + '-');
417 args.message = M.str.admin.confirmdeletecomments;
418 args.callback = function() {
419 var url = M.cfg.wwwroot + '/comment/index.php';
423 'sesskey': M.cfg.sesskey,
429 complete: function(id,o,p) {
434 if (o.responseText == 'yes') {
443 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
444 'User-Agent': 'MoodleComment/3.0'
446 data: build_querystring(data)
450 M.util.show_confirm_dialog(e, args);