Passed
Push — master ( 5322e3...8b6067 )
by Maxence
01:51
created

js/personal.js   A

Complexity

Total Complexity 9
Complexity/F 1

Size

Lines of Code 80
Function Count 9

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 9
c 2
b 0
f 0
dl 0
loc 80
rs 10
cc 0
nc 1
mnd 0
bc 9
fnc 9
bpm 1
cpm 1
noi 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A $(document).ready 0 73 1
1
/*
2
 * CMS Pico - Integration of Pico within your files to create websites.
3
 *
4
 * This file is licensed under the Affero General Public License version 3 or
5
 * later. See the COPYING file.
6
 *
7
 * @author Maxence Lange <[email protected]>
8
 * @copyright 2017
9
 * @license GNU AGPL version 3 or any later version
10
 *
11
 * This program is free software: you can redistribute it and/or modify
12
 * it under the terms of the GNU Affero General Public License as
13
 * published by the Free Software Foundation, either version 3 of the
14
 * License, or (at your option) any later version.
15
 *
16
 * This program is distributed in the hope that it will be useful,
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 * GNU Affero General Public License for more details.
20
 *
21
 * You should have received a copy of the GNU Affero General Public License
22
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23
 *
24
 */
25
26
27
/** global: OC */
28
/** global: OCA */
29
30
/** global: pico_elements */
31
/** global: pico_result */
32
33
var define = {
34
	sites: '/sites/',
35
	index: '/index.php',
36
	nchost: ''
37
};
38
39
40
$(document).ready(function () {
41
42
	/**
43
	 * @constructs CMSPico
44
	 */
45
	var CMSPico = function () {
46
47
		$.extend(CMSPico.prototype, pico_elements);
48
		$.extend(CMSPico.prototype, pico_result);
49
50
		this.initialize();
51
		this.retrieveWebsites();
52
	};
53
54
	CMSPico.prototype = {
55
56
		initialize: function () {
57
			define.nchost = window.location.protocol + '//' + window.location.host;
58
			pico_elements.initElements();
59
			pico_elements.initUI();
60
			pico_elements.initTweaks();
61
		},
62
63
64
		retrieveWebsites: function () {
65
66
			$.ajax({
67
				method: 'GET',
68
				url: OC.generateUrl('/apps/cms_pico/personal/websites'),
69
				data: {}
70
			}).done(function (res) {
71
				pico_result.displayWebsites(res.websites);
72
			});
73
74
		}
75
76
	};
77
78
79
	/**
80
	 * @constructs Notification
81
	 */
82
	var Notification = function () {
83
		this.initialize();
84
	};
85
86
	Notification.prototype = {
87
88
		initialize: function () {
89
90
			var notyf = new Notyf({
0 ignored issues
show
Bug introduced by
The variable Notyf seems to be never declared. If this is a global, consider adding a /** global: Notyf */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
91
				delay: 5000
92
			});
93
94
			this.onSuccess = function (text) {
95
				notyf.confirm(text);
96
			};
97
98
			this.onFail = function (text) {
99
				notyf.alert(text);
100
			};
101
102
		}
103
104
	};
105
106
	OCA.CMSPico = CMSPico;
107
	OCA.CMSPico.manage = new CMSPico();
108
109
	OCA.Notification = Notification;
110
	OCA.notification = new Notification();
111
112
});
113