-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlowdefy.yaml
99 lines (86 loc) · 2.14 KB
/
lowdefy.yaml
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
91
92
93
94
95
96
97
98
# Language: Lowdefy YAML, Project: DatAasee, License: MIT, Author: Christian Himpe
lowdefy: "4.3.0"
name: "DatAasee"
global:
title: "DatAasee"
logo:
src: "logo-light-theme.png"
alt: "DatAasee"
style:
filter: "invert(19%) sepia(88%) saturate(2015%) hue-rotate(182deg) brightness(96%) contrast(102%)"
unknown: "[ᴇᴍᴘᴛʏ]"
schema: null
# This enables using the Enter-key to click certain buttons
app:
html:
appendBody: |
<script>
document.addEventListener("keypress", function(event) {
if (event.key === "Enter") {
event.preventDefault();
document.getElementById("enter_button").click();
}
});
</script>
connections:
- id: "datalake_api"
type: "AxiosHttp"
properties:
baseURL:
_build.env: "DL_INTERNAL"
menus:
- id: "main"
links:
- id: "index"
type: "MenuLink"
properties:
icon: "AiFillHome"
title: "Home"
pageId: "index"
- id: "filter"
type: "MenuLink"
properties:
icon: "AiFillFilter"
title: "Filter"
pageId: "filter"
- id: "query"
type: "MenuLink"
properties:
icon: "AiFillCode"
title: "Query"
pageId: "query"
- id: "stats"
type: "MenuLink"
properties:
icon: "AiFillSignal"
title: "Statistics"
pageId: "stats"
- id: "about"
type: "MenuLink"
properties:
icon: "AiFillApi"
title: "Interface"
pageId: "about"
- id: "insert"
type: "MenuLink"
properties:
icon: "AiFillEdit"
title: "Insert"
danger: true
pageId: "insert"
- id: "admin"
type: "MenuLink"
properties:
icon: "AiFillControl"
title: "Admin"
danger: true
pageId: "admin"
pages:
- _ref: "pages/index.yaml"
- _ref: "pages/filter.yaml"
- _ref: "pages/query.yaml"
- _ref: "pages/insert.yaml"
- _ref: "pages/stats.yaml"
- _ref: "pages/about.yaml"
- _ref: "pages/fetch.yaml"
- _ref: "pages/admin.yaml"