luci-base: replace uci change pages with client side modal dialog
[oweals/luci.git] / themes / luci-theme-rosy / luasrc / view / themes / rosy / header.htm
1 <%#
2     Rosy is a theme for LuCI. It is based on luci-theme-bootstrap
3     luci-theme-rosy
4         Copyright 2018 Rosy Song <rosysong@rosinson.com>
5         Copyright 2018 Yan Lan Shen <yanlan.shen@rosinson.com>
6
7     Have a bug? Please create an issue here on GitHub!
8         https://github.com/rosywrt/luci-theme-rosy/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     Licensed to the public under the Apache License 2.0
16
17 -%>
18
19 <%
20         local sys  = require "luci.sys"
21         local util = require "luci.util"
22         local http = require "luci.http"
23         local disp = require "luci.dispatcher"
24
25         local boardinfo = util.ubus("system", "board")
26
27         local request  = disp.context.path
28         local request2 = disp.context.request
29
30         local category = request[1]
31         local cattree  = category and disp.node(category)
32
33         local leaf = request2[#request2]
34
35         local tree = disp.node()
36         local node = disp.context.dispatched
37
38         local categories = disp.node_childs(tree)
39
40         local c = tree
41         local i, r
42
43         -- tag all nodes leading to this page
44         for i, r in ipairs(request) do
45                 if c.nodes and c.nodes[r] then
46                         c = c.nodes[r]
47                         c._menu_selected = true
48                 end
49         end
50
51         -- send as HTML5
52         http.prepare_content("text/html")
53
54         local function nodeurl(prefix, name, query)
55                 local u = url(prefix, name)
56                 if query then
57                         u = u .. http.build_querystring(query)
58                 end
59                 return pcdata(u)
60         end
61
62         local function render_tabmenu(prefix, node, level)
63                 if not level then
64                         level = 1
65                 end
66
67                 local childs = disp.node_childs(node)
68                 if #childs > 0 then
69                         if level > 2 then
70                                 write('<ul class="tabs">')
71                         end
72
73                         local selected_node
74                         local selected_name
75                         local i, v
76
77                         for i, v in ipairs(childs) do
78                                 local nnode = node.nodes[v]
79                                 if nnode._menu_selected then
80                                         selected_node = nnode
81                                         selected_name = v
82                                 end
83
84                                 if level > 2 then
85                                         write('<li class="tabmenu-item-%s %s"><a href="%s">%s</a></li>' %{
86                                                 v, (nnode._menu_selected or (node.leaf and v == leaf)) and 'active' or '',
87                                                 nodeurl(prefix, v, nnode.query),
88                                                 striptags(translate(nnode.title))
89                                         })
90                                 end
91                         end
92
93                         if level > 2 then
94                                 write('</ul>')
95                         end
96
97                         if selected_node then
98                                 render_tabmenu(prefix .. "/" .. selected_name, selected_node, level + 1)
99                         end
100                 end
101         end
102
103         local function render_submenu(prefix, node)
104                 local childs = disp.node_childs(node)
105                 if #childs > 0 then
106                         write('<ul class="slide-menu">')
107
108                         for i, r in ipairs(childs) do
109                                 local nnode = node.nodes[r]
110                                 local title = pcdata(striptags(translate(nnode.title)))
111
112                                 write('<li><a data-title="%s" href="%s">%s</a></li>' %{
113                                         title,
114                                         nodeurl(prefix, r, nnode.query),
115                                         title
116                                 })
117                         end
118
119                         write('</ul>')
120                 end
121         end
122
123         local function render_topmenu()
124                 local childs = disp.node_childs(cattree)
125                 if #childs > 0 then
126                         write('<ul class="nav scroll">')
127
128                         for i, r in ipairs(childs) do
129                                 local nnode = cattree.nodes[r]
130                                 local grandchildren = disp.node_childs(nnode)
131
132                                 if #grandchildren > 0 then
133                                         local title = pcdata(striptags(translate(nnode.title)))
134
135                                         write('<li class="slide"><a class="menu" data-title="%s" href="#">%s</a>' %{
136                                                 title,
137                                                 title
138                                         })
139
140                                         render_submenu(category .. "/" .. r, nnode)
141                                         write('</li>')
142                                 end
143                         end
144
145                         write('</ul>')
146                 end
147         end
148
149         local function render_logout()
150                 local childs = disp.node_childs(cattree)
151                 if #childs > 0 then
152
153                         for i, r in ipairs(childs) do
154                                 local nnode = cattree.nodes[r]
155                                 local grandchildren = disp.node_childs(nnode)
156
157                                 if #grandchildren <= 0 then
158                                         local title = pcdata(striptags(translate(nnode.title)))
159
160                                         write('<span class="label logout"><a data-title="%s" href="%s">%s</a></span>' %{
161                                                 title,
162                                                 nodeurl(category, r, nnode.query),
163                                                 title
164                                         })
165                                 end
166                         end
167
168                 end
169         end
170
171
172         local function auth_level()
173                 local childs = disp.node_childs(cattree)
174                 if #childs > 0 then
175                         for i, r in ipairs(childs) do
176                                 local nnode = cattree.nodes[r]
177                                 local grandchildren = disp.node_childs(nnode)
178
179                                 if #grandchildren > 0 then
180                                         -- If this value is returned, the current interface is the logged-in data output interface
181                                         return "auth"
182                                 else
183                                         -- If this value is returned, it indicates that the current interface is a data output interface that does not require login.
184                                         return "noauth"
185                                 end
186                         end
187                 end
188                 -- If this value is returned, the current interface is the login interface
189                 return "login"
190         end
191 -%>
192 <!DOCTYPE html>
193 <html lang="<%=luci.i18n.context.lang%>">
194
195 <head>
196         <meta charset="utf-8">
197         <title>
198                 <%=striptags( (boardinfo.hostname or "?") .. ( (node and node.title) and ' - ' .. translate(node.title) or '')) %> -
199                 LuCI</title>
200         <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
201         <meta name="format-detection" content="telephone=no, email=no" />
202         <meta name="apple-mobile-web-app-capable" content="yes">
203         <meta name="mobile-web-app-capable" content="yes">
204         <meta name="x5-fullscreen" content="true">
205         <meta name="full-screen" content="yes">
206         <meta name="x5-page-mode" content="app">
207         <meta name="browsermode" content="application">
208         <meta name="theme-color" content="#0099CC">
209         <meta name="msapplication-tap-highlight" content="no">
210         <meta name="msapplication-TileColor" content="#0099CC">
211
212         <meta name="application-name" content="<%=striptags( (boardinfo.hostname or " ?") ) %> - LuCI">
213         <meta name="apple-mobile-web-app-title" content="<%=striptags( (boardinfo.hostname or " ?") ) %> - LuCI">
214         <meta name="msapplication-TileImage" content="<%=media%>/logo.png" />
215         <link rel="icon" href="<%=media%>/logo.png" sizes="144x144">
216         <link rel="apple-touch-icon-precomposed" href="<%=media%>/logo.png" sizes="144x144">
217
218         <link rel="stylesheet" href="<%=media%>/cascade.css">
219         <link rel="shortcut icon" href="<%=media%>/favicon.ico">
220         <% if node and node.css then %>
221         <link rel="stylesheet" href="<%=resource%>/<%=node.css%>">
222         <% end -%>
223         <% if css then %>
224         <style title="text/css">
225                 <%=css %>
226         </style>
227         <% end -%>
228         <script src="<%=resource%>/cbi.js"></script>
229         <script src="<%=resource%>/xhr.js"></script>
230         <script src="<%=media%>/js/ScrollY.js"></script>
231 </head>
232
233 <body class="lang_<%=luci.i18n.context.lang%> <%- if node then %><%= striptags( node.title ) %><%- end %> <%- if auth_level() == "auth" then %> logged-in<%- end %> <%- if auth_level() == "noauth" then %> login-info<%- end %> <%- if auth_level() == "login" then %> login<%- end %>">
234         <header>
235                 <div class="container">
236                         <span class="showSide"></span>
237                         <a class="brand PC-hide" href="#"><%=boardinfo.hostname or "?"%></a>
238                         <div class="btn-con pull-right">
239                                 <span id="xhr_poll_status" style="display:none" onclick="XHR.running() ? XHR.halt() : XHR.run()">
240                                         <span class="label success" id="xhr_poll_status_on"><span class="mobile-hide">
241                                                         <%:Auto Refresh%></span>
242                                                 <%:on%></span>
243                                         <span class="label" id="xhr_poll_status_off" style="display:none"><span class="mobile-hide">
244                                                         <%:Auto Refresh%></span>
245                                                 <%:off%></span>
246                                 </span>
247                                 <% render_logout() %>
248                         </div>
249                 </div>
250         </header>
251         <div style="" class="loading">
252                 <span>
253                         <div class="loading-img">
254                                 <img src="<%=media%>/loading.svg">
255                         </div>Loading...
256                 </span>
257         </div>
258         <div class="main">
259                 <div class="main-left">
260                         <div class="nav-container">
261                                 <a class="brand" href="#">
262                                         <%=boardinfo.hostname or "?"%></a>
263                                 <div class="navbar-container" id="navBox">
264                                         <% render_topmenu() %>
265                                 </div>
266                         </div>
267                 </div>
268                 <div class="main-right">
269                         <div id="maincontent">
270                                 <div class="logoImg">
271                                         <img class="mobile-hide" src="<%=media%>/logo.png" alt="Rosy">
272                                         <img src="<%=media%>/mobile-loginBG.png" class="PC-hide">
273                                         <a class="brand" href="#"><%=boardinfo.hostname or "?"%></a>
274                                 </div>
275                                 <div class="container">
276                                         <%- if luci.sys.process.info("uid") == 0 and luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") then -%>
277                                         <div class="alert-message warning">
278                                                 <h4>
279                                                         <%:No password set!%>
280                                                 </h4>
281                                                 <p>
282                                                         <%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%>
283                                                 </p>
284                                                 <div><a class="btn" href="<%=url("admin/system/admin")%>"> <%:Go to password configuration...%></a></div>
285                                         </div>
286                                         <%- end -%>
287
288                                         <noscript>
289                                                 <div class="alert-message warning">
290                                                         <h4>
291                                                                 <%:JavaScript required!%>
292                                                         </h4>
293                                                         <p>
294                                                                 <%:You must enable JavaScript in your browser or LuCI will not work properly.%>
295                                                         </p>
296                                                 </div>
297                                         </noscript>
298
299                                         <% if category then render_tabmenu(category, cattree) end %>