-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeylolHistory.user.js
240 lines (221 loc) · 7.82 KB
/
keylolHistory.user.js
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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
// ==UserScript==
// @name keylolHistory
// @namespace https://github.com/swhoro
// @version 0.0.6
// @description 为keylol社区添加历史记录
// @author Aiden
// @match https://keylol.com/*
// @updateURL https://github.com/swhoro/myJset/raw/master/keylolHistory.user.js
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_listValues
// @grant GM_deleteValue
// ==/UserScript==
(function () {
// 当页面中存在iframe时,不在iframe中运行脚本
if (window.top != window.self) return;
// 是否已在此页面构建面板
let isDown = 0;
// 若当前处于帖子页面,将当前url记录至历史记录
let url = window.location.href;
let testReg = new RegExp("^https://keylol.com/t\\d{6}-1-1$");
if (testReg.test(url)) {
// 当出现重复帖子时,删除以前历史记录,新增一个历史记录
GM_deleteValue(url);
let date = new Date();
let month = date.getMonth() + 1;
let hour = date.getHours();
if (hour <= 9) hour = "0" + hour;
let minute = date.getMinutes();
if (minute <= 9) minute = "0" + minute;
let time = "" + month + "月" + date.getDate() + "日 " + hour + ":" + minute;
let thisHistory = {
title: document.title,
time: time,
};
GM_setValue(url, thisHistory);
}
// 插入 历史 按钮
let location = 1;
location = location - 1;
// 创建新 历史 节点并插入文档中
let dropdown = document.getElementsByClassName("dropdown-menu-right")[0];
let referenceNode = dropdown.children[location];
let historyButton = document.createElement("li");
historyButton.innerHTML = "<a>历史</a>";
historyButton.style.cssText = `
cursor: pointer;
`;
dropdown.insertBefore(historyButton, referenceNode);
// 创建历史记录面板
let historyPanel = document.createElement("div");
historyPanel.style.cssText = `
width: 35vw;
max-height: 45vh;
position: absolute;
display: none;
flex-direction: column;
align-items: center;
top: 12vh;
right: 15vw;
z-index: 99;
background-color: white;
border: 3px solid #C97546;
`;
// 历史记录显示区
let historiesDisplayDiv = document.createElement("div");
historiesDisplayDiv.id = "history-display-div";
historiesDisplayDiv.style.cssText = `
margin: 10px;
width: calc(100% - 20px);
max-height: 80%;
overflow-y: auto;
border-style: dotted;
border-width: 2px;
border-color: black;
`;
// let myStyle = document.createElement("style");
// myStyle.innerHTML = `
// div#history-display-div::-webkit-scrollbar {
// display: none;
// }
// `;
// document.getElementsByTagName("head")[0].appendChild(myStyle);
historyPanel.appendChild(historiesDisplayDiv);
// 底部功能按钮区
let functionButtonsPanel = document.createElement("div");
functionButtonsPanel.style.cssText = `
width: 100%;
display: flex;
justify-content: space-evenly;
margin: 0 10px 10px 10px;
`;
// 功能按钮通用样式
let functionButtonsStyle = `
cursor: pointer;
border: 2px solid #C97546;
font-size: 1.1rem;
line-height: 1.3rem;
text-align:center;
background-color: white;
`;
// 清空历记录按钮
let clearButton = document.createElement("button");
clearButton.innerHTML = "清空历史";
clearButton.style.cssText = functionButtonsStyle + "width: 6vw;";
functionButtonsPanel.appendChild(clearButton);
// 关闭按钮
let closeButton = document.createElement("button");
closeButton.innerHTML = "X";
closeButton.style.cssText = functionButtonsStyle + "color: red;width: 2vw";
closeButton.addEventListener("click", () => {
historyPanel.style.display = "none";
});
functionButtonsPanel.appendChild(closeButton);
historyPanel.appendChild(functionButtonsPanel);
document.getElementsByTagName("body")[0].appendChild(historyPanel);
// 历史记录表
let historyTable = document.createElement("table");
historyTable.style.cssText = `
table-layout: fixed;
width: 100%;
`;
historiesDisplayDiv.appendChild(historyTable);
// 表头
let headTr = document.createElement("tr");
let headTime = document.createElement("th");
headTime.style.cssText = `
height: 1.5vw;
text-align: center;
border-style: dotted;
border-width: 0 2px 0 0;
border-color: #00000059;
`;
headTime.innerHTML = "时间";
headTr.appendChild(headTime);
let headTitle = document.createElement("th");
headTitle.style.cssText = `
width: 80%;
text-align:center;
`;
headTitle.innerHTML = "标题";
headTr.appendChild(headTitle);
historyTable.appendChild(headTr);
// 在历史记录面板中填充内容
function fillPanel() {
// 填充数据
let histories = GM_listValues();
if (histories) {
histories.reverse().forEach((history) => {
let time = GM_getValue(history).time;
let title = GM_getValue(history).title;
let url = history;
let tr = document.createElement("tr");
let tdTime = document.createElement("td");
tdTime.title = "最后浏览时间";
tdTime.style.cssText = `
text-align: center;
border-style: dotted;
border-width: 2px 2px 0 0;
border-color: #00000059;
`;
tdTime.innerHTML = time;
tr.appendChild(tdTime);
let p = document.createElement("p");
p.style.cssText = `
line-height: 1.7vw;
height: 1.7vw;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
`;
p.innerHTML = title;
let a = document.createElement("a");
a.href = url;
a.target = "_blank";
a.appendChild(p);
let tdTitle = document.createElement("td");
tdTitle.title = title;
tdTitle.style.cssText = `
width: 80%;
padding-left: 7px;
border-style: dotted;
border-width: 2px 0 0 0;
border-color: #00000059;
`;
tdTitle.appendChild(a);
tr.appendChild(tdTitle);
historyTable.appendChild(tr);
});
}
// 清空历史记录
clearButton.addEventListener("click", () => {
let historiesArray = GM_listValues();
for (let i in historiesArray) {
GM_deleteValue(historiesArray[i]);
}
while (historyTable.children.length > 1) {
historyTable.removeChild(historyTable.children[1]);
}
alert("历史记录已清空");
});
}
// 监听 历史 按钮,开关 历史 面板
historyButton.addEventListener("click", (event) => {
event.stopPropagation();
// 如果未初始化面板,则初始化面板
if (isDown == 0) {
fillPanel();
isDown = 1;
}
// 显示面板
historyPanel.style.display = "flex";
});
// 点击historyPanel外部可以隐藏面板
document.addEventListener("click", () => {
historyPanel.style.display = "none";
});
historyPanel.addEventListener("click", (event) => {
event.stopPropagation();
});
})();