aboutsummaryrefslogtreecommitdiff
path: root/mod/riverdashboard/views/default/riverdashboard/js.php
blob: 4995799f13e6dae8dff4208268e5d15a33cb6a0b (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
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
<script type="text/javascript">
	$(document).ready(function() {
		$('.river-comment-form-button').click(function() {
			elgg_slide_toggle(this, '.elgg-module', '.river-comment-form');
		});

		$('.likes-user-list-button').click(function() {
			var myParent = $(this).closest('.elgg-river-item');
			var likesList = myParent.find('.likes-list');

			if (likesList.css('display') == 'none') {
				// pull in likes via ajax to save on loading many avatars
				var riverItem = $(this).closest('.elgg-river-item');
				var guid = riverItem.attr('id').replace('river-entity-', '');

				var params = {
					'entity_guid': guid
				}

				$(likesList).load('<?php echo elgg_get_site_url();?>mod/riverdashboard/endpoint/get_likes.php', params, function(data) {
					// hide comments
					myParent.find('.comments-container').animate({"height": "toggle", "opacity": "toggle"}, { duration: 400 });
					// change selected tab
					myParent.find('.show-comments-button').addClass('off');
					myParent.find('.likes-user-list-button').removeClass('off');
					// show users that liked object
					elgg_slide_toggle(this, '.elgg-river-item', '.likes-list');
				});
			}
		});

		$('.show-comments-button').click(function() {
			var myParent = $(this).closest('.elgg-river-item');
			if (myParent.find('.comments-container').css('display') == 'none') {
				// hide likes
				myParent.find('.likes-list').animate({"height": "toggle", "opacity": "toggle"}, { duration: 400 });
				// change selected tab
				myParent.find('.show-comments-button').removeClass('off');
				myParent.find('.likes-user-list-button').addClass('off');
				// show users that liked object
				elgg_slide_toggle(this, '.elgg-river-item', '.comments-container');
			}
		});

		// grab more comments
		$('.river-more-comments.show-more-button').click(function() {
			var showLess = $(this).next('.show-less-button');
			var showMore = $(this);
			var riverItem = $(this).closest('.elgg-river-item');

			var guid = riverItem.attr('id').replace('river-entity-', '');
			var commentsList = riverItem.find('.comments-list');
			var numComments = riverItem.find('.river-comment').length;

			var params = {
				'entity_guid': guid,
				'offset': numComments
			}

			$.post('<?php echo elgg_get_site_url();?>mod/riverdashboard/endpoint/get_comments.php', params, function(data) {
				commentsList.prepend(data);

				showLess.toggle();
				showMore.toggle();

			});
		});

		// hide more comments
		$('.river-more-comments.show-less-button').click(function() {
			var showLess = $(this);
			var showMore = $(this).prev('.show-more-button');
			var riverItem = $(this).closest('.elgg-river-item');
			// want to keep the latest 3 comments
			var comments = riverItem.find('.river-comment')
			comments = $.makeArray(comments).reverse();
			//reverse().splice(0, 3);

			len = comments.length;

			for (i=3; i<len; i++) {
				$(comments[i]).empty().remove();
			}


			// remove them so we can force an ajax update when clicked again.

			showLess.toggle();
			showMore.toggle();

		});
	});

	// re-add avatar menus for new avatars
	//setup_avatar_menu($('.river-item_list'));
</script>