mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-09-10 18:34:18 +08:00
25 lines
1.0 KiB
JavaScript
25 lines
1.0 KiB
JavaScript
'use strict';
|
|
'require baseclass';
|
|
|
|
/**
|
|
* Shared view constants for luci-app-fwlive.
|
|
* LuCI modules must return baseclass.extend(...) — plain objects fail Class.isSubclass.
|
|
*/
|
|
return baseclass.extend({
|
|
/* Keep in sync with openwrt-feed/luci-app-fwlive/Makefile PKG_VERSION. */
|
|
APP_VERSION: '0.1.37',
|
|
ROW_LIMIT_OPTIONS: [ 25, 50, 100, 250, 500, 1000, 2000 ],
|
|
DEFAULT_ROW_LIMIT: 100,
|
|
/* Row pass/deny tint (#40): classic green/red default; accessible teal/orange */
|
|
ROW_TINT_OPTIONS: [ 'off', 'classic', 'accessible' ],
|
|
DEFAULT_ROW_TINT: 'classic',
|
|
FETCH_LINES_MAX: 2000, /* ubus poll / logd ring cap (~2000 lines ≈ typical ring) */
|
|
/* DOM budget: ~250 new/updated rows painted per second on typical LuCI routers */
|
|
RENDER_CAP_PER_SEC: 250,
|
|
VIEW_MODES: [ 'simple', 'detailed' ],
|
|
COLUMN_SETS: {
|
|
simple: [ 'action', 'time', 'iface', 'flow', 'proto', 'rule' ],
|
|
detailed: [ 'time', 'action', 'rule', 'iface_in', 'iface_out', 'dir', 'proto', 'src', 'sport', 'dst', 'dport', 'flags', 'len', 'message' ]
|
|
}
|
|
});
|