summaryrefslogtreecommitdiffstats
path: root/settings/js/apps.js
blob: df5300911aa388ffc404165644d0fe196f44f6c4 (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
/**
 * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
 * This file is licensed under the Affero General Public License version 3 or later.
 * See the COPYING-README file.
 */

$(document).ready(function(){
	$('#leftcontent li').each(function(index,li){
		var app=$.parseJSON($(this).children('span').text());
		$(li).data('app',app);
	});
	$('#leftcontent li').click(function(){
		var app=$(this).data('app');
		$('#rightcontent p').show();
		$('#rightcontent span.name').text(app.name);
		$('#rightcontent small.externalapp').text(app.internallabel);
		$('#rightcontent span.version').text(app.version);
		$('#rightcontent p.description').text(app.description);
		$('#rightcontent img.preview').attr('src',app.preview);
		$('#rightcontent small.externalapp').attr('style','visibility:visible');
		$('#rightcontent span.author').text(app.author);
		$('#rightcontent span.licence').text(app.licence);
		
		$('#rightcontent input.enable').show();
		$('#rightcontent input.enable').val((app.active)?t('settings','Disable'):t('settings','Enable'));
		$('#rightcontent input.enable').data('appid',app.id);
		$('#rightcontent input.enable').data('active',app.active);
	});
	$('#rightcontent input.enable').click(function(){
		var app=$(this).data('appid');
		var active=$(this).data('active');
		if(app){
			if(active){
				$.post(OC.filePath('settings','ajax','disableapp.php'),{appid:app},function(result){
					if(!result || result.status!='success'){
						OC.dialogs.alert('Error','Error while disabling app');
					}
				},'json');
				$('#leftcontent li[data-id="'+app+'"]').removeClass('active');
			}else{
				$.post(OC.filePath('settings','ajax','enableapp.php'),{appid:app},function(result){
					if(!result || result.status!='success'){
						OC.dialogs.alert('Error','Error while enabling app');
					}
				},'json');
				$('#leftcontent li[data-id="'+app+'"]').addClass('active');
			}
			active=!active;
			$(this).data('active',active);
			$(this).val((active)?t('settings','Disable'):t('settings','Enable'));
			var appData=$('#leftcontent li[data-id="'+app+'"]');
			appData.active=active;
		}
	});
});