aboutsummaryrefslogtreecommitdiff
path: root/mod/messageboard/views/default/messageboard/js.php
blob: 22aad10b7a7d70aaf453f672565067ee8752806d (plain)
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
elgg.provide('elgg.messageboard');

elgg.messageboard.init = function() {
	var form = $('form[name=elgg-messageboard]');
	form.find('input[type=submit]').live('click', elgg.messageboard.submit);

	// can't undelete because of init load order
	form.parent().find('a.elgg-requires-confirmation').removeClass('elgg-requires-confirmation');
	// delegate() instead of live() because live() has to be at the top level of chains...can't use parent().

	// delete is a little-known operator in JS. IE loses its mind if you name a method that.
	form.parent().delegate('.elgg-button-delete a', 'click', elgg.messageboard.deletePost);
}

elgg.messageboard.submit = function(e) {
	var form = $(this).parents('form');
	var data = form.serialize();

	elgg.action('messageboard/add', {
		data: data,
		success: function(json) {
			// the action always returns the full ul and li wrapped annotation.
			var ul = form.next('ul.elgg-annotation-list');

			if (ul.length < 1) {
				form.parent().append(json.output);
			} else {
				ul.prepend($(json.output).find('li:first'));
			};
			form.find('textarea').val('');
		}
	});

	e.preventDefault();
}

elgg.messageboard.deletePost = function(e) {
	var link = $(this);
	var confirmText = link.attr('title') || elgg.echo('question:areyousure');

	if (confirm(confirmText)) {
		elgg.action($(this).attr('href'), {
			success: function() {
				$(link).closest('li').remove();
			}
		});
	}

	e.preventDefault();
}


elgg.register_event_handler('init', 'system', elgg.messageboard.init);