gacha_records.html 9.22 KB
Newer Older
蓝云Reyes's avatar
蓝云Reyes committed
1
<!doctype html>
2
3
<html>
    <head>
蓝云Reyes's avatar
蓝云Reyes committed
4
5
6
7
8
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap">
        <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css">
        <style>
蓝云Reyes's avatar
蓝云Reyes committed
9
10
11
            body {
                background-color: #f0f0f0;
            }
蓝云Reyes's avatar
蓝云Reyes committed
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
            p {
                font-weight:300;
            }
            a,a:hover {
                text-decoration:none !important;
                color:#626976;
            }
            .content {
                padding:3rem 0;
            }
            .container {
                color:#626976;
                position: relative;
            }

            h2 {
                font-size:20px;
            }
            .custom-table {
                min-width:900px;
            }
            .custom-table thead tr,.custom-table thead th {
                padding-bottom:30px;
                color:#000;
            }
            .custom-table tbody th,.custom-table tbody td {
                color:#777;
                font-weight:400;
                padding-bottom:20px;
                padding-top:20px;
                font-weight:300;
                border:none;
            }
蓝云Reyes's avatar
蓝云Reyes committed
45
            .yellow {
蓝云Reyes's avatar
蓝云Reyes committed
46
                color: rgb(255, 162, 0);
蓝云Reyes's avatar
蓝云Reyes committed
47
48
49
50
51
52
53
            }
            .blue {
                color: rgb(75, 107, 251);
            }
            .purple {
                color: rgb(242, 40, 242);
            }
蓝云Reyes's avatar
蓝云Reyes committed
54
55
        </style>
        <title>Gacha Records</title>
56
57
        <script>
            // Debug entry
蓝云Reyes's avatar
Fix    
蓝云Reyes committed
58
59
60
61
62
63
            // record = [
            //     {"time": 10000341, "item": 1041}, 
            //     {"time": 10000342, "item": 1032}, 
            //     {"time": 10000343, "item": 1035}, 
            // ];
            // maxPage = 5;
64
65

            // in production environment
蓝云Reyes's avatar
Fix    
蓝云Reyes committed
66
67
            record = {{REPLACE_RECORD}};
            maxPage = {{REPLACE_MAXPAGE}};
68
69
70
71
72
73
74
75

            // TODO: implement this mapper by yourself
            // I don't want to put real items' name here to avoid being DMCA'd
            mappings = {
                'en-us': {
                    200: "Standard",
                    301: "Event Avatar",
                    302: "Event Weapon",
蓝云Reyes's avatar
蓝云Reyes committed
76
                    1041 : ["M0n4", "blue"],
77
78
79
80
81
82
83
84
85
86
87
88
89
90
                    1032 : ["B4nn477", "purple"],
                    1035 : ["77", "yellow"]
                },
                'zh-cn': {
                        // encoding issues here, maybe we should consider load mappings remotely
                        // will display as "锟斤铐锟斤铐锟斤铐", lmao
                    // 200: "常驻", 
                    // 301: "角色UP-1",
                    // 302: "武器UP"
                    200: "Standard",
                    301: "Event Avatar",
                    302: "Event Weapon",
                }
            };
91
92
93
94
95
96
97
        </script>
        <!-- This file could be generated automatically using `java -jar grasscutter.jar -gachamap` -->
        <!-- You can also modify the file manually to customize it -->
        <!-- Otherwise you may onle see number IDs in the gacha record -->
        <script type="text/javascript" src="/gcstatic/mappings.js"></script>
        <script>
            mappings['default'] = mappings['en-us']; // make en-us as default/fallback option
98
99
        </script>
    </head>
蓝云Reyes's avatar
蓝云Reyes committed
100
    <body>
101
        <div class="content">
蓝云Reyes's avatar
蓝云Reyes committed
102
103
104
105
            <div class="container">
                <h2 class="mb-5">Gacha Records</h2>
                <table id="container" class="table table-striped custom-table">
                    <thead>
106
                        <tr>
蓝云Reyes's avatar
蓝云Reyes committed
107
108
                            <th scope="col">Date</th>
                            <th scope="col">Item</th>
109
                        </tr>
蓝云Reyes's avatar
蓝云Reyes committed
110
111
                    </thead>
                    <tbody>
112
113
                    </tbody>
                </table>
蓝云Reyes's avatar
蓝云Reyes committed
114
                <div class="navbar">
蓝云Reyes's avatar
蓝云Reyes committed
115
                    <a href="" id="prev">&lt;&lt;&lt;</a>
蓝云Reyes's avatar
蓝云Reyes committed
116
                    <span id="curpage">1</span>
蓝云Reyes's avatar
蓝云Reyes committed
117
                    <a href="" id="next">&gt;&gt;&gt;</a>
蓝云Reyes's avatar
蓝云Reyes committed
118
                </div>
119
120
            </div>
        </div>
蓝云Reyes's avatar
蓝云Reyes committed
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
        <footer>
            <div class="copyright">
                <div class="container">
                    <div class="row">
                        <div class="col-md-6">
                            <span>
                                Template by <a href="https://loli.sale/">BecodReyes</a>. All rights reserved.
                            </span>
                        </div>
                        <div class="col-md-6">
                            <ul style="float:right">
                                <li class="list-inline-item">
                                    <a href="https://github.com/Grasscutters/Grasscutter">Github</a>
                                </li>
                                <li class="list-inline-item">·</li>
                                <li class="list-inline-item">
                                    <a href="https://github.com/Grasscutters/Grasscutter/blob/stable/LICENSE">License</a>
                                </li>
                            </ul>
                        </div>
                    </div>
                </div>
            </div>
        </footer>
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

        <script>
            var lang = new window.URLSearchParams(window.location.search).get("lang");
            function itemMapper(itemID) {
                if (mappings[lang] != null && mappings[lang][itemID] != null) {
                    var entry = mappings[lang][itemID];
                    if (entry){
                        return "<span class='" + entry[1] + "'>" + entry[0] + "</span>";
                    }
                } else {
                    if (mappings['default'][itemID] != null) {
                        var entry = mappings['default'][itemID];
                        if (entry){
                            return "<span class='" + entry[1] + "'>" + entry[0] + "</span>";
                        }
                    }
                }
                return "<span class='blue'>" + itemID + "</span>";
            }
            function dateFormatter(timeStamp) {
                var date = new Date(timeStamp);
                if (lang == "en-us" || lang == null) { // MM/DD/YYYY hh:mm:ss.SSS
                    return  String(date.getMonth()+1).padStart(2, "0") + 
                        "/"+String(date.getDate()).padStart(2, "0")+
                        "/"+date.getFullYear()+
                        " "+String(date.getHours()).padStart(2, "0")+
                        ":"+String(date.getMinutes()).padStart(2, "0")+
                        ":"+String(date.getSeconds()).padStart(2, "0")+
173
                        "."+String(date.getMilliseconds()).padStart(3, "0");
174
175
176
177
178
179
180
                } else if (lang == "zh-cn") { // YYYY/MM/DD hh:mm:ss.SSS
                    return date.getFullYear()+ 
                        "/" + String(date.getMonth()+1).padStart(2, "0") + 
                        "/"+String(date.getDate()).padStart(2, "0")+
                        " "+String(date.getHours()).padStart(2, "0")+
                        ":"+String(date.getMinutes()).padStart(2, "0")+
                        ":"+String(date.getSeconds()).padStart(2, "0")+
181
                        "."+String(date.getMilliseconds()).padStart(3, "0");
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
                }
            }
            (function (){
                var container = document.getElementById("container");
                record.forEach(element => {
                    var e = document.createElement("tr");
                    
                    e.innerHTML= "<td>" + dateFormatter(element.time) + "</td><td>" + itemMapper(element.item) + "</td>";
                    container.appendChild(e);
                });
                // setup pagenation buttons
                var page = parseInt(new window.URLSearchParams(window.location.search).get("p"));
                if (!page){
                    page = 0;
                }
                document.getElementById("curpage").innerText = page + 1;
                var href = new URL(window.location);
                href.searchParams.set("p", page - 1);
                document.getElementById("prev").href = href.toString();
                href.searchParams.set("p", page + 1);
                document.getElementById("next").href = href.toString();

                if (page <= 0) {
                    document.getElementById("prev").style.display = "none";
                }
                if (page >= maxPage - 1) {
                    document.getElementById("next").style.display = "none";
                }

                // setup gacha type info
                var gachaType = new window.URLSearchParams(window.location.search).get("gachaType");
                var gachaString;
                if (mappings[lang] != null && mappings[lang][gachaType] != null) {
                    gachaString = mappings[lang][gachaType];
                }else{
                    gachaString = mappings['default'][gachaType];
                    if (gachaString == null) {
                        gachaString = gachaType;
                    }
                }
                document.getElementById("gacha-type").innerText = gachaString;
        })();
        </script>

    </body>
蓝云Reyes's avatar
蓝云Reyes committed
227
</html>