-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.json
90 lines (90 loc) · 2.48 KB
/
node.json
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "Content Player",
"options": [{
"title": "Tile configuration",
"type": "section"
}, {
"title": "Screen size",
"type": "select",
"name": "size",
"options": [
[[2,2], "2x2"],
[[4,2], "4x2"],
[[2,4], "2x4"],
[[3,3], "3x3"]
],
"ui_width": 3,
"default": "2x2"
}, {
"title": "Tiles",
"name": "tiles",
"type": "list",
"itemname": "Tile",
"adders": [{
"label": "tile",
"help": "Add an new tile",
"item": {},
"select": ["asset", {
"asset_id": "tile_asset"
}]
}],
"items": [{
"type": "section",
"name": "tile_section",
"ui_type": "small",
"title": "Tile"
}, {
"title": "Asset",
"ui_width": 6,
"name": "tile_asset",
"type": "resource",
"valid": ["image", "video", "child"],
"features": ["image4k", "hevc"],
"default": "empty.png"
}, {
"title": "Size",
"type": "select",
"name": "size",
"options": [
[[1,1], "1x1"],
[[1,2], "1x2"],
[[1,3], "1x3"],
[[2,1], "2x1"],
[[2,2], "2x2"],
[[3,1], "3x1"]
],
"ui_width": 3,
"default": "1x1"
}, {
"title": "Reload",
"condition": ["config", "tile_asset", "is_child"],
"type": "select",
"name": "reload",
"options": [
[60, "Every minute"],
[120, "Every 2 minutes"],
[300, "Every 5 minutes"]
],
"ui_width": 3,
"default": 300
}, {
"title": "Reload",
"condition": ["!", ["config", "tile_asset", "is_child"]],
"type": "select",
"name": "x_reload",
"options": [
["", "Automatic"]
],
"ui_width": 3,
"default": ""
}, {
"title": "",
"condition": ["config", "tile_asset", "is_child"],
"name": "child_config",
"type": "custom",
"child_ref": "tile_asset",
"page": "zz-plugin.html",
"default": {}
}]
}]
}