summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-https-dns-proxy/luasrc/view/https-dns-proxy/buttons.htm
blob: 52d2b50e5227788b47c511b935c1bb45a4ba315a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<%#
	Copyright 2019 Stan Grishin <stangri@melmac.net>
-%>

<%-
	local packageName = "https-dns-proxy"
	local enabledFlag = luci.sys.init.enabled(packageName)
	local ubusStatus = luci.util.ubus("service", "list", { name = packageName })

	if not ubusStatus or not ubusStatus[packageName] then
		tmpfsStatusCode = 0
	else
		tmpfsStatusCode = 1
	end

	if tmpfsStatusCode == 0 then
		btn_start_style = "cbi-button cbi-button-apply important"
		btn_action_style = "cbi-button cbi-button-apply important"
		btn_stop_style = "cbi-button cbi-button-reset -disabled"
	else
		btn_start_style = "cbi-button cbi-button-apply -disabled"
		btn_action_style = "cbi-button cbi-button-apply important"
		btn_stop_style = "cbi-button cbi-button-reset important"
	end
	if not enabledFlag then
		btn_start_style = "cbi-button cbi-button-apply -disabled"
		btn_action_style = "cbi-button cbi-button-apply -disabled"
		btn_enable_style = "cbi-button cbi-button-apply important"
		btn_disable_style = "cbi-button cbi-button-reset -disabled"
	else
		btn_enable_style = "cbi-button cbi-button-apply -disabled"
		btn_disable_style = "cbi-button cbi-button-reset important"
	end
-%>

<%+https-dns-proxy/css%>
<%+https-dns-proxy/js%>

<div class="cbi-value"><label class="cbi-value-title">Service Control</label>
	<div class="cbi-value-field">
		<input type="button" class="<%=btn_start_style%>" id="btn_start" name="start" value="<%:Start%>" onclick="button_action(this)" />
		<span id="btn_start_spinner" class="btn_spinner"></span>
		<input type="button" class="<%=btn_action_style%>" id="btn_action" name="action" value="<%:Reload%>" onclick="button_action(this)" />
		<span id="btn_action_spinner" class="btn_spinner"></span>
		<input type="button" class="<%=btn_stop_style%>" id="btn_stop" name="stop" value="<%:Stop%>" onclick="button_action(this)"  />
		<span id="btn_stop_spinner" class="btn_spinner"></span>
		&nbsp;
		&nbsp;
		&nbsp;
		&nbsp;
		<input type="button" class="<%=btn_enable_style%>" id="btn_enable" name="enable" value="<%:Enable%>" onclick="button_action(this)"  />
		<span id="btn_enable_spinner" class="btn_spinner"></span>
		<input type="button" class="<%=btn_disable_style%>" id="btn_disable" name="disable" value="<%:Disable%>" onclick="button_action(this)"  />
		<span id="btn_disable_spinner" class="btn_spinner"></span>
	</div>
</div>