summaryrefslogtreecommitdiffstats
path: root/modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js
blob: 41caaa2aa9634791e775f2a9dd9520c60fe2c4f3 (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
'use strict';
'require baseclass';
'require form';
'require tools.widgets as widgets';

return baseclass.extend({
	trigger: _("Network device activity (kernel: netdev)"),
	description: _('The LED flashes with link status and activity on the configured interface.'),
	kernel: true,
	addFormOptions: function(s) {
		var o;

		o = s.option(widgets.DeviceSelect, '_net_dev', _('Device'));
		o.rmempty = true;
		o.ucioption = 'dev';
		o.modalonly = true;
		o.noaliases = true;
		o.depends('trigger', 'netdev');

		o = s.option(form.MultiValue, 'mode', _('Trigger Mode'));
		o.rmempty = true;
		o.modalonly = true;
		o.depends('trigger', 'netdev');
		o.value('link', _('Link On'));
		o.value('link_10', _('Link 10M On'));
		o.value('link_100', _('Link 100M On'));
		o.value('link_1000', _('Link 1G On'));
		o.value('link_2500', _('Link 2.5G On'));
		o.value('link_5000', _('Link 5G On'));
		o.value('link_10000', _('Link 10G On'));
		o.value('half_duplex', _('Half Duplex'));
		o.value('full_duplex', _('Full Duplex'));
		o.value('tx', _('Transmit'));
		o.value('rx', _('Receive'));
	}
});