2 Material is a clean HTML5 theme for LuCI. It is based on luci-theme-bootstrap and MUI
5 Copyright
2015-
2017 Lutty Yang
<lutty@wcan.in
>
7 Have a bug? Please create an issue here on GitHub!
8 https://github.com/LuttyYang/luci-theme-material/issues
11 Copyright
2008 Steven Barth
<steven@midlink.org
>
12 Copyright
2008-
2016 Jo-Philipp Wich
<jow@openwrt.org
>
13 Copyright
2012 David Menting
<david@nut-bolt.nl
>
16 https://github.com/muicss/mui
18 Licensed to the public under the Apache License
2.0
22 local sys = require
"luci.sys"
23 local util = require
"luci.util"
24 local http = require
"luci.http"
25 local disp = require
"luci.dispatcher"
27 local boardinfo = util.ubus(
"system",
"board")
29 local node = disp.context.dispatched
32 http.prepare_content(
"text/html")
35 <html lang=
"<%=luci.i18n.context.lang%>">
37 <meta charset=
"utf-8">
38 <title><%=striptags( (boardinfo.hostname or
"?") .. ( (node and node.title) and ' - ' .. translate(node.title) or '')) %
> - LuCI
</title>
39 <meta content=
"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name=
"viewport"/>
40 <meta name=
"apple-mobile-web-app-capable" content=
"yes">
41 <meta name=
"mobile-web-app-capable" content=
"yes">
42 <meta name=
"theme-color" content=
"#09c">
43 <meta name=
"msapplication-tap-highlight" content=
"no">
44 <meta name=
"msapplication-TileColor" content=
"#09c">
45 <meta name=
"application-name" content=
"<%=striptags( (boardinfo.hostname or "?
") ) %> - LuCI">
46 <meta name=
"apple-mobile-web-app-title" content=
"<%=striptags( (boardinfo.hostname or "?
") ) %> - LuCI">
47 <link rel=
"stylesheet" href=
"<%=media%>/cascade.css">
48 <link rel=
"shortcut icon" href=
"<%=media%>/favicon.ico">
49 <% if node and node.css then %
>
50 <link rel=
"stylesheet" href=
"<%=resource%>/<%=node.css%>">
53 <style title=
"text/css"><%= css %
></style>
55 <script src=
"<%=url('admin/translations', luci.i18n.context.lang)%><%# ?v=PKG_VERSION %>"></script>
56 <script src=
"<%=resource%>/cbi.js"></script>
57 <script src=
"<%=resource%>/xhr.js"></script>
58 <script type=
"text/javascript">//<![CDATA[
60 function get_children(node) {
63 for (var k in node.children) {
64 if (!node.children.hasOwnProperty(k))
67 if (!node.children[k].satisfied)
70 if (!node.children[k].hasOwnProperty('title'))
73 children.push(Object.assign(node.children[k], { name: k }));
76 return children.sort(function(a, b) {
77 return ((a.order ||
1000) - (b.order ||
1000));
81 function render_mainmenu(tree, url, level) {
82 var l = (level ||
0) +
1,
83 ul = E('ul', { 'class': level ? 'slide-menu' : 'nav' }),
84 children = get_children(tree);
86 if (children.length ==
0 || l
> 2)
89 for (var i =
0; i < children.length; i++) {
90 var submenu = render_mainmenu(children[i], url + '/' + children[i].name, l),
91 hasChildren = submenu.children.length;
93 ul.appendChild(E('li', { 'class': hasChildren ? 'slide' : null }, [
95 'href': hasChildren ? '#' : L.url(url, children[i].name),
96 'class': hasChildren ? 'menu' : null,
97 'data-title': hasChildren ? null : _(children[i].title),
98 }, [ _(children[i].title) ]),
104 var container = document.querySelector('#mainmenu');
106 container.appendChild(ul);
107 container.style.display = '';
113 function render_modemenu(tree) {
114 var ul = document.querySelector('#modemenu'),
115 children = get_children(tree);
117 for (var i =
0; i < children.length; i++) {
118 var isActive = (L.env.requestpath.length ? children[i].name == L.env.requestpath[
0] : i ==
0);
120 ul.appendChild(E('li', {}, [
122 'href': L.url(children[i].name),
123 'class': isActive ? 'active' : null
124 }, [ _(children[i].title) ])
128 render_mainmenu(children[i], children[i].name);
131 if (ul.children.length
> 1)
132 ul.style.display = '';
135 function render_tabmenu(tree, url, level) {
136 var container = document.querySelector('#tabmenu'),
137 l = (level ||
0) +
1,
138 ul = E('ul', { 'class': 'tabs' }),
139 children = get_children(tree),
142 if (children.length ==
0)
145 for (var i =
0; i < children.length; i++) {
146 var isActive = (L.env.dispatchpath[l +
2] == children[i].name),
147 activeClass = isActive ? ' active' : '',
148 className = 'tabmenu-item-%s %s'.format(children[i].name, activeClass);
150 ul.appendChild(E('li', { 'class': className }, [
151 E('a', { 'href': L.url(url, children[i].name) }, [ _(children[i].title) ] )
155 activeNode = children[i];
158 container.appendChild(ul);
159 container.style.display = '';
162 container.appendChild(render_tabmenu(activeNode, url + '/' + activeNode.name, l));
167 document.addEventListener('luci-loaded', function(ev) {
168 var tree = <%= luci.http.write_json(luci.dispatcher.menu_json() or {}) %
>,
172 render_modemenu(tree);
174 if (L.env.dispatchpath.length
>=
3) {
175 for (var i =
0; i <
3 && node; i++) {
176 node = node.children[L.env.dispatchpath[i]];
177 url = url + (url ? '/' : '') + L.env.dispatchpath[i];
181 render_tabmenu(node, url);
187 <body class=
"lang_<%=luci.i18n.context.lang%> <% if node then %><%= striptags( node.title ) %><% end %> <% if luci.dispatcher.context.authsession then %>logged-in<% end %>" data-page=
"<%= table.concat(disp.context.requestpath, "-
") %>">
190 <div class=
"container">
191 <span class=
"showSide"></span>
192 <a id=
"logo" href=
"<% if luci.dispatcher.context.authsession then %><%=url('admin/status/overview')%><% else %>#<% end %>"><img src=
"<%=media%>/brand.png" alt=
"OpenWrt"></a>
193 <a class=
"brand" href=
"#"><%=boardinfo.hostname or
"?"%
></a>
195 <span id=
"xhr_poll_status" style=
"display:none" onclick=
"XHR.running() ? XHR.halt() : XHR.run()">
196 <span class=
"label success" id=
"xhr_poll_status_on"><span class=
"mobile-hide"><%:Auto Refresh%
></span> <%:on%
></span>
197 <span class=
"label" id=
"xhr_poll_status_off" style=
"display:none"><span class=
"mobile-hide"><%:Auto Refresh%
></span> <%:off%
></span>
204 <div style=
"" class=
"loading"><span><div class=
"loading-img"></div><%:Collecting data...%
></span></div>
205 <div class=
"main-left" id=
"mainmenu" style=
"display:none"></div>
206 <div class=
"main-right">
207 <div class=
"darkMask"></div>
208 <div id=
"maincontent">
209 <div class=
"container">
210 <%- if luci.sys.process.info(
"uid") ==
0 and luci.sys.user.getuser(
"root") and not luci.sys.user.getpasswd(
"root") then -%
>
211 <div class=
"alert-message warning">
212 <h4><%:No password set!%
></h4>
213 <p><%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%
></p>
214 <% if disp.lookup(
"admin/system/admin") then %
>
215 <div class=
"right"><a class=
"btn" href=
"<%=url("admin/system/admin
")%>"><%:Go to password configuration...%
></a></div>
221 <div class=
"alert-message warning">
222 <h4><%:JavaScript required!%
></h4>
223 <p><%:You must enable JavaScript in your browser or LuCI will not work properly.%
></p>
227 <div id=
"tabmenu" style=
"display:none"></div>