luci-theme-material: add button select input theme
[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                     ulNode.next(".slide-menu").stop(true,true);
184                     lastNode = that.parent();
185                     tree = [trimText(ulNode.data("title")), trimText(that.data("title"))];
186                     lastNode.addClass("active");
187                     ret = true;
188                     return true;
189                 }
190             });
191         });
192         return ret;
193     }
194
195     /**
196      * menu click
197      */
198     $(".main > .main-left > .nav > .slide > .menu").click(function () {
199         var ul = $(this).next(".slide-menu");
200         var menu = $(this);
201         if (!ul.is(":visible")) {
202             menu.addClass("active");
203             ul.addClass("active");
204             ul.stop(true).slideDown();
205         } else {
206             ul.slideUp(function () {
207                 menu.removeClass("active");
208                 ul.removeClass("active");
209             });
210         }
211     });
212
213     /**
214      * hook menu click and add the hash
215      */
216     $(".main > .main-left > .nav > .slide > .slide-menu > li > a").click(function () {
217         if (lastNode != undefined) lastNode.removeClass("active");
218         $(this).parent().addClass("active");
219         $(".main > .loading").fadeIn("fast");
220         return true;
221     });
222
223     /**
224      * fix menu click
225      */
226     $(".main > .main-left > .nav > .slide > .slide-menu > li").click(function () {
227         if (lastNode != undefined) lastNode.removeClass("active");
228         $(this).addClass("active");
229         $(".main > .loading").fadeIn("fast");
230         window.location = $($(this).find("a")[0]).attr("href");
231         return;
232     });
233
234     /**
235      * get current node and open it
236      */
237     if (!getCurrentNodeByUrl()){
238         if (tree != undefined && tree[0] == "Status" && tree[1] == "Overview"){
239             //overview
240             lastNode.addClass("active");
241             $($(".main > .main-left > .nav > .slide > .menu")[0]).click();
242         }
243     }
244     if (tree != undefined){
245         mainNodeName = "node-"+ tree[0] + "-" + tree[1];
246         mainNodeName = mainNodeName.replace(/[ \t\n\r\/]+/g,"_").toLowerCase();
247         $("body").addClass(mainNodeName);
248
249     }
250     $(".cbi-button-up").val("");
251     $(".cbi-button-down").val("");
252
253
254     /**
255      * hook other "A Label" and add hash to it.
256      */
257     $("#maincontent > .container").find("a").each(function () {
258         var that = $(this);
259         var onclick = that.attr("onclick");
260         if (onclick == undefined || onclick == ""){
261             that.click(function () {
262                 var href = that.attr("href");
263                 if (href.indexOf("#") == -1){
264                     $(".main > .loading").fadeIn("fast");
265                     return true;
266                 }
267             });
268         }
269     });
270
271     /**
272      * Sidebar expand
273      */
274     var showSide = false;
275     $(".showSide").click(function () {
276         if (showSide){
277             $(".darkMask").stop(true).fadeOut();
278             $(".main-left").stop(true).animate({
279                 width: "0"
280             });
281             showSide = false;
282         }else{
283             $(".darkMask").stop(true).fadeIn();
284             $(".main-left").stop(true).animate({
285                 width: "15rem"
286             });
287             showSide = true;
288         }
289     });
290
291
292     $(".darkMask").click(function () {
293         if (showSide){
294             showSide = false;
295             $(".darkMask").stop(true).fadeOut();
296             $(".main-left").stop(true).animate({
297                 width: "0"
298             });
299         }
300     });
301
302     $(window).resize(function() {
303         if ($(window).width() > 921) {
304             $(".main-left").css("width", "");
305             $(".darkMask").stop(true);
306             $(".darkMask").css("display", "none");
307             showSide = false;
308         }
309     });
310
311     /**
312      * fix legend position
313      */
314     $("legend").each(function () {
315         var that = $(this);
316         that.after("<span class='panel-title'>" + that.text() + "</span>");
317     });
318
319
320     $(".main-right").focus();
321     $(".main-right").blur();
322     $("input").attr("size", "0");
323
324     if (mainNodeName != undefined){
325         console.log(mainNodeName);
326         switch (mainNodeName){
327             case "node-status-system_log":
328             case "node-status-kernel_log":
329                 $("#syslog").focus(function () {
330                     $("#syslog").blur();
331                     $(".main-right").focus();
332                     $(".main-right").blur();
333                 });
334                 break;
335             case "node-status-firewall":
336                 var button = $(".node-status-firewall > .main fieldset li > a");
337                 button.addClass("cbi-button cbi-button-reset a-to-btn");
338                 break;
339             case "node-system-reboot":
340                 var button = $(".node-system-reboot > .main > .main-right p > a");
341                 button.addClass("cbi-button cbi-input-reset a-to-btn");
342                 break;
343         }
344     }
345 })(jQuery);