-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtokens_ui.ml
196 lines (195 loc) · 7.1 KB
/
tokens_ui.ml
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
let create_token =
Tyxml_html.(
section
~a:[ a_id "token-create"; a_class [ "w-full mx-auto" ] ]
[
div
~a:[ a_class [ "my-6" ] ]
[
p ~a:[ a_id "tokens-form-alert"; a_class [ "my-4 hidden" ] ] [];
label
~a:[ a_class [ "block text-sm font-medium" ]; a_label_for "name" ]
[ txt "Name" ];
input
~a:
[
a_autocomplete `On;
a_input_type `Text;
a_name "token_name";
a_id "token_name";
a_class
[
"ring-primary-100 mt-1.5 transition appearance-none \
block w-full px-3 py-3 rounded-xl shadow-sm border \
hover:border-primary-200\n\
\ \
focus:border-primary-300 bg-primary-50 bg-opacity-0 \
hover:bg-opacity-50 focus:bg-opacity-50 \
ring-primary-200 focus:ring-primary-200\n\
\ \
focus:ring-[1px] focus:outline-none";
];
]
();
];
div
~a:[ a_class [ "my-6" ] ]
[
label
~a:
[
a_class [ "block text-sm font-medium" ];
a_label_for "validity";
]
[ txt "Valid for" ];
select
~a:
[
a_name "token_expiry";
a_id "token_expiry";
a_class
[
"ring-primary-100 mt-1.5 transition block w-full px-3 \
py-3 rounded-xl shadow-sm border \
hover:border-primary-200\n\
\ \
focus:border-primary-300 bg-primary-50 bg-opacity-0 \
hover:bg-opacity-50 focus:bg-opacity-50 \
ring-primary-200 focus:ring-primary-200\n\
\ \
focus:ring-[1px] focus:outline-none";
];
]
[
option ~a:[ a_value "2419200" ] (txt "1 month");
option ~a:[ a_value "7257600" ] (txt "3 months");
option ~a:[ a_value "14515200" ] (txt "6 months");
option ~a:[ a_value "29030400" ] (txt "1 year");
option ~a:[ a_value "58060800" ] (txt "2 years");
];
];
div
~a:[ a_class [ "my-6" ] ]
[
Utils.button_component
~attribs:[ a_id "create-token-button"; a_onclick "createToken()" ]
~extra_css:"w-full" ~content:(txt "Create Token")
~btn_type:`Primary_full ();
];
])
let edit_token (token : User_model.token) =
Tyxml_html.(
section
~a:[ a_id "token-update"; a_class [ "w-full mx-auto" ] ]
[
div
~a:[ a_class [ "my-6" ] ]
[
p
~a:[ a_id "tokens-update-form-alert"; a_class [ "my-4 hidden" ] ]
[];
label
~a:[ a_class [ "block text-sm font-medium" ]; a_label_for "name" ]
[ txt "Name" ];
input
~a:
[
a_autocomplete `On;
a_input_type `Text;
a_name "token_name";
a_id "token_u_name";
a_value token.name;
a_class
[
"ring-primary-100 mt-1.5 transition appearance-none \
block w-full px-3 py-3 rounded-xl shadow-sm border \
hover:border-primary-200\n\
\ \
focus:border-primary-300 bg-primary-50 bg-opacity-0 \
hover:bg-opacity-50 focus:bg-opacity-50 \
ring-primary-200 focus:ring-primary-200\n\
\ \
focus:ring-[1px] focus:outline-none";
];
]
();
];
div
~a:[ a_class [ "my-6" ] ]
[
label
~a:
[
a_class [ "block text-sm font-medium" ];
a_label_for "validity";
]
[ txt "Valid for" ];
select
~a:
[
a_name "token_expiry";
a_id "token_u_expiry";
a_class
[
"ring-primary-100 mt-1.5 transition block w-full px-3 \
py-3 rounded-xl shadow-sm border \
hover:border-primary-200\n\
\ \
focus:border-primary-300 bg-primary-50 bg-opacity-0 \
hover:bg-opacity-50 focus:bg-opacity-50 \
ring-primary-200 focus:ring-primary-200\n\
\ \
focus:ring-[1px] focus:outline-none";
];
]
[
option
~a:
([ a_value "2419200" ]
@
if token.expires_in = 2419200 then [ a_selected () ] else []
)
(txt "1 month");
option
~a:
([ a_value "7257600" ]
@
if token.expires_in = 7257600 then [ a_selected () ] else []
)
(txt "3 months");
option
~a:
([ a_value "14515200" ]
@
if token.expires_in = 14515200 then [ a_selected () ]
else [])
(txt "6 months");
option
~a:
([ a_value "29030400" ]
@
if token.expires_in = 29030400 then [ a_selected () ]
else [])
(txt "1 year");
option
~a:
([ a_value "58060800" ]
@
if token.expires_in = 58060800 then [ a_selected () ]
else [])
(txt "2 years");
];
];
div
~a:[ a_class [ "my-6" ] ]
[
Utils.button_component
~attribs:
[
a_id "update-token-button";
a_onclick ("updateToken('" ^ token.value ^ "')");
]
~extra_css:"w-full" ~content:(txt "Update Token")
~btn_type:`Primary_full ();
];
])