luci-theme-material: add some new features and fix some bugs
[project/luci.git] / themes / luci-theme-material / htdocs / luci-static / material / js / script.js
1 /**
2  *  Material is a clean HTML5 theme for LuCI. It is based on luci-theme-bootstrap and MUI
3  *
4  *  luci-theme-material
5  *      Copyright 2015 Lutty Yang <lutty@wcan.in>
6  *
7  *  Have a bug? Please create an issue here on GitHub!
8  *      https://github.com/LuttyYang/luci-theme-material/issues
9  *
10  *  luci-theme-bootstrap:
11  *      Copyright 2008 Steven Barth <steven@midlink.org>
12  *      Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
13  *      Copyright 2012 David Menting <david@nut-bolt.nl>
14  *
15  *  MUI:
16  *      https://github.com/muicss/mui
17  *
18  *  Licensed to the public under the Apache License 2.0
19  */
20 (function ($) {
21     var b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",
22         a256 = '',
23         r64 = [256],
24         r256 = [256],
25         i = 0;
26     var UTF8 = {
27         /**
28          * Encode multi-byte Unicode string into utf-8 multiple single-byte characters
29          * (BMP / basic multilingual plane only)
30          *
31          * Chars in range U+0080 - U+07FF are encoded in 2 chars, U+0800 - U+FFFF in 3 chars
32          *
33          * @param {String} strUni Unicode string to be encoded as UTF-8
34          * @returns {String} encoded string
35          */
36         encode: function (strUni) {
37             // use regular expressions & String.replace callback function for better efficiency
38             // than procedural approaches
39             var strUtf = strUni.replace(/[\u0080-\u07ff]/g, // U+0080 - U+07FF => 2 bytes 110yyyyy, 10zzzzzz
40                 function (c) {
41                     var cc = c.charCodeAt(0);
42                     return String.fromCharCode(0xc0 | cc >> 6, 0x80 | cc & 0x3f);
43                 })
44                 .replace(/[\u0800-\uffff]/g, // U+0800 - U+FFFF => 3 bytes 1110xxxx, 10yyyyyy, 10zzzzzz
45                 function (c) {
46                     var cc = c.charCodeAt(0);
47                     return String.fromCharCode(0xe0 | cc >> 12, 0x80 | cc >> 6 & 0x3F, 0x80 | cc & 0x3f);
48                 });
49             return strUtf;
50         },
51         /**
52          * Decode utf-8 encoded string back into multi-byte Unicode characters
53          *
54          * @param {String} strUtf UTF-8 string to be decoded back to Unicode
55          * @returns {String} decoded string
56          */
57         decode: function (strUtf) {
58             // note: decode 3-byte chars first as decoded 2-byte strings could appear to be 3-byte char!
59             var strUni = strUtf.replace(/[\u00e0-\u00ef][\u0080-\u00bf][\u0080-\u00bf]/g, // 3-byte chars
60                 function (c) { // (note parentheses for precence)
61                     var cc = ((c.charCodeAt(0) & 0x0f) << 12) | ((c.charCodeAt(1) & 0x3f) << 6) | (c.charCodeAt(2) & 0x3f);
62                     return String.fromCharCode(cc);
63                 })
64                 .replace(/[\u00c0-\u00df][\u0080-\u00bf]/g, // 2-byte chars
65                 function (c) { // (note parentheses for precence)
66                     var cc = (c.charCodeAt(0) & 0x1f) << 6 | c.charCodeAt(1) & 0x3f;
67                     return String.fromCharCode(cc);
68                 });
69             return strUni;
70         }
71     };
72     while (i < 256) {
73         var c = String.fromCharCode(i);
74         a256 += c;
75         r256[i] = i;
76         r64[i] = b64.indexOf(c);
77         ++i;
78     }
79     function code(s, discard, alpha, beta, w1, w2) {
80         s = String(s);
81         var buffer = 0,
82             i = 0,
83             length = s.length,
84             result = '',
85             bitsInBuffer = 0;
86         while (i < length) {
87             var c = s.charCodeAt(i);
88             c = c < 256 ? alpha[c] : -1;
89             buffer = (buffer << w1) + c;
90             bitsInBuffer += w1;
91             while (bitsInBuffer >= w2) {
92                 bitsInBuffer -= w2;
93                 var tmp = buffer >> bitsInBuffer;
94                 result += beta.charAt(tmp);
95                 buffer ^= tmp << bitsInBuffer;
96             }
97             ++i;
98         }
99         if (!discard && bitsInBuffer > 0) result += beta.charAt(buffer << (w2 - bitsInBuffer));
100         return result;
101     }
102
103     var Plugin = $.base64 = function (dir, input, encode) {
104         return input ? Plugin[dir](input, encode) : dir ? null : this;
105     };
106     Plugin.btoa = Plugin.encode = function (plain, utf8encode) {
107         plain = Plugin.raw === false || Plugin.utf8encode || utf8encode ? UTF8.encode(plain) : plain;
108         plain = code(plain, false, r256, b64, 8, 6);
109         return plain + '===='.slice((plain.length % 4) || 4);
110     };
111     Plugin.atob = Plugin.decode = function (coded, utf8decode) {
112         coded = String(coded).split('=');
113         var i = coded.length;
114         do {
115             --i;
116             coded[i] = code(coded[i], true, r64, a256, 6, 8);
117         } while (i > 0);
118         coded = coded.join('');
119         return Plugin.raw === false || Plugin.utf8decode || utf8decode ? UTF8.decode(coded) : coded;
120     };
121 }(jQuery));
122
123 (function ($) {
124     $(".main > .loading").fadeOut();
125
126     /**
127      * trim text, Remove spaces, wrap
128      * @param text
129      * @returns {string}
130      */
131     function trimText(text) {
132         return text.replace(/[ \t\n\r]+/g, " ");
133     }
134
135
136     var tree = undefined;
137     var lastNode = undefined;
138     var mainNodeName = undefined;
139
140     /**
141      * get the current node by Burl (primary)
142      * @returns {boolean} success?
143      */
144     function getCurrentNodeByUrl() {
145         var ret = false;
146         var getUrlNode = function (href){
147             var linkPos = href.indexOf(";");
148             if (linkPos == -1){
149                 return "login";
150             }else{
151                 linkPos = href.indexOf("/", linkPos);
152                 if (linkPos == -1){
153                     return "overview";
154                 }else{
155                     var link = href.substr(linkPos);
156                     if (link == "/")
157                         return "overview";
158                     else
159                         return link;
160                 }
161             }
162         };
163
164         var currentNode = getUrlNode(window.location.pathname);
165
166         if (currentNode == "login"){
167             tree = ["Main", "Login"];
168             return false;
169         }else if(currentNode == "overview"){
170             tree = ["Status", "Overview"];
171             lastNode = $($($(".main > .main-left > .nav > .slide > .menu")[0]).next().find("a")[0]).parent();
172             return false;
173         }
174
175         $(".main > .main-left > .nav > .slide > .menu").each(function () {
176             var ulNode = $(this);
177             ulNode.next().find("a").each(function () {
178                 var that = $(this);
179                 var href = that.attr("href");
180
181                 if (currentNode.indexOf(getUrlNode(href)) != -1){
182                     ulNode.click();
183                     lastNode = that.parent();
184                     tree = [trimText(ulNode.data("title")), trimText(that.data("title"))];
185                     lastNode.addClass("active");
186                     ret = true;
187                     return true;
188                 }
189             });
190         });
191         return ret;
192     }
193
194     /**
195      * menu click
196      */
197     $(".main > .main-left > .nav > .slide > .menu").click(function () {
198         var ul = $(this).next(".slide-menu");
199         var menu = $(this);
200         if (!ul.is(":visible")) {
201             menu.addClass("active");
202             ul.addClass("active");
203             ul.stop(true).slideDown();
204         } else {
205             ul.slideUp(function () {
206                 menu.removeClass("active");
207                 ul.removeClass("active");
208             });
209         }
210     });
211
212     /**
213      * hook menu click and add the hash
214      */
215     $(".main > .main-left > .nav > .slide > .slide-menu > li > a").click(function () {
216         if (lastNode != undefined) lastNode.removeClass("active");
217         $(this).parent().addClass("active");
218         $(".main > .loading").fadeIn();
219         return true;
220     });
221
222     /**
223      * fix menu click
224      */
225     $(".main > .main-left > .nav > .slide > .slide-menu > li").click(function () {
226         if (lastNode != undefined) lastNode.removeClass("active");
227         $(this).addClass("active");
228         $(".main > .loading").fadeIn();
229         window.location = $($(this).find("a")[0]).attr("href");
230         return;
231     });
232
233     /**
234      * get current node and open it
235      */
236     if (!getCurrentNodeByUrl()){
237         if (tree != undefined && tree[0] == "Status" && tree[1] == "Overview"){
238             //overview
239             lastNode.addClass("active");
240             $($(".main > .main-left > .nav > .slide > .menu")[0]).click();
241         }
242     }
243     if (tree != undefined){
244         mainNodeName = "node-"+ tree[0] + "-" + tree[1];
245         mainNodeName = mainNodeName.replace(/[ \t\n\r\/]+/g,"_").toLowerCase();
246         $("body").addClass(mainNodeName);
247
248     }
249     $(".cbi-button-up").val("");
250     $(".cbi-button-down").val("");
251
252
253     /**
254      * hook other "A Label" and add hash to it.
255      */
256     $("#maincontent > .container").find("a").each(function () {
257         var that = $(this);
258         var onclick = that.attr("onclick");
259         if (onclick == undefined || onclick == ""){
260             that.click(function () {
261                 var href = that.attr("href");
262                 if (href.indexOf("#") == -1){
263                     $(".main > .loading").fadeIn();
264                     return true;
265                 }
266             });
267         }
268     });
269
270     /**
271      * Sidebar expand
272      */
273     var showSide = false;
274     $(".showSide").click(function () {
275         if (showSide){
276             $(".darkMask").stop(true).fadeOut();
277             $(".main-left").stop(true).animate({
278                 width: "0"
279             });
280             showSide = false;
281         }else{
282             $(".darkMask").stop(true).fadeIn();
283             $(".main-left").stop(true).animate({
284                 width: "15rem"
285             });
286             showSide = true;
287         }
288     });
289
290
291     $(".darkMask").click(function () {
292         if (showSide){
293             showSide = false;
294             $(".darkMask").stop(true).fadeOut();
295             $(".main-left").stop(true).animate({
296                 width: "0"
297             });
298         }
299     });
300
301     $(window).resize(function() {
302         if ($(window).width() > 921) {
303             $(".main-left").css("width", "");
304             $(".darkMask").stop(true);
305             $(".darkMask").css("display", "none");
306             showSide = false;
307         }
308     });
309
310     /**
311      * fix legend position
312      */
313     $("legend").each(function () {
314         var that = $(this);
315         that.after("<span class='panel-title'>" + that.text() + "</span>");
316     });
317
318
319     $(".main-right").focus();
320     $(".main-right").blur();
321
322     if (mainNodeName != undefined){
323         console.log(mainNodeName);
324         switch (mainNodeName){
325             case "node-status-system_log":
326             case "node-status-kernel_log":
327                 $("#syslog").focus(function () {
328                     $("#syslog").blur();
329                     $(".main-right").focus();
330                     $(".main-right").blur();
331                 });
332                 break;
333         }
334     }
335 })(jQuery);