Skip to content

Commit 17efb02

Browse files
committed
update: bangumi_community.user.js
1 parent d4f0ef6 commit 17efb02

10 files changed

+481
-229
lines changed

vickscarlet/_common.bangumi.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**merge:js=_common.bangumi.js**//**merge**/
2+
function whoami() {
3+
// 超展开在 iframe 中, 可以用 window.parent 获得父级窗口
4+
const nid = window.parent.CHOBITS_UID ?? 0;
5+
const dockA = window.parent.document.querySelector('#dock li.first a');
6+
if (dockA) {
7+
const id = dockA.href.split('/').pop();
8+
return { id, nid };
9+
}
10+
const bannerAvatar = window.parent.document.querySelector('.idBadgerNeue> .avatar');
11+
if (bannerAvatar) {
12+
const id = bannerAvatar.href.split('/').pop();
13+
return { id, nid };
14+
}
15+
return null;
16+
}

vickscarlet/_common.dom.js

+33-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
/**merge:js=_common.dom.js**//**merge**/
2+
3+
/**
4+
* 设置事件监听
5+
* @typedef {[string, (e:Event)=>void]} Event
6+
* @param {Element} element 元素
7+
* @param {Event[]} events 属性
8+
*/
9+
function setEvents(element, events) {
10+
for (const [event, listener] of events) {
11+
element.addEventListener(event, listener);
12+
}
13+
return element;
14+
}
15+
216
/**
317
* 设置属性
418
* @typedef {Record<string, string | number | boolean | Styles>} Props
@@ -7,16 +21,31 @@
721
*/
822
function setProps(element, props) {
923
if (!props || typeof props !== 'object') return element;
10-
24+
const events = [];
1125
for (const [key, value] of Object.entries(props)) {
1226
if (typeof value === 'boolean') {
1327
element[key] = value;
1428
continue;
1529
}
16-
if (key === 'class') addClass(element, value);
17-
else if (key === 'style' && typeof value === 'object') setStyle(element, value);
18-
else element.setAttribute(key, value);
30+
if (key === 'events') {
31+
if (Array.isArray(value)) {
32+
events.push(...value);
33+
} else {
34+
for (const event in value) {
35+
events.push([event, value[event]]);
36+
}
37+
}
38+
} else if (key === 'class') {
39+
addClass(element, value);
40+
} else if (key === 'style' && typeof value === 'object') {
41+
setStyle(element, value);
42+
} else if (key.startsWith('on')) {
43+
events.push([key.slice(2).toLowerCase(), value]);
44+
} else {
45+
element.setAttribute(key, value);
46+
}
1947
}
48+
setEvents(element, events);
2049
return element;
2150
}
2251

vickscarlet/_common.util.js

+18
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,22 @@ function callWhenDone(fn) {
2020
function callNow(fn) {
2121
fn();
2222
return fn;
23+
}
24+
25+
/**
26+
* @template T
27+
* @template R
28+
* @param {Iterable<T>} list
29+
* @param {(item: T, index: number, list: Iterable<T>) => R} fn
30+
* @param {R[]} ret
31+
* @return {R[]}
32+
*/
33+
function map(list, fn, ret = []) {
34+
let i = 0;
35+
for (const item of list) {
36+
const result = fn(item, i, list);
37+
ret.push(result);
38+
i++;
39+
}
40+
return ret
2341
}
+68-68
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1-
html {
1+
html, html[data-theme='dark'] {
2+
#dock {
3+
li {
4+
position: relative;
5+
height: 18px;
6+
display: flex;
7+
align-items: center;
8+
justify-content: center;
9+
}
10+
li:not(:last-child) {
11+
border-right: 1px solid var(--color-dock-sp);
12+
}
13+
}
214
.columns {
3-
> .column:not(#columnSubjectHomeB,#columnHomeB):last-child {
15+
> #columnInSubjectB {
416
> * { margin: 0; }
517
display: flex;
618
gap: 10px;
@@ -12,34 +24,25 @@ html {
1224
overflow-y: auto;
1325
}
1426
}
15-
.avatar:not(.tinyCover) {
16-
img,
17-
.avatarNeue {
18-
border-radius: 50% !important;
19-
}
20-
}
21-
.postTopic {
22-
border-bottom: none;
23-
.inner.tips {
24-
display: flex;
25-
height: 40px;
26-
align-items: center;
27-
gap: 8px;
28-
color: var(--color-reply-tips);
29-
}
30-
}
31-
#comment_list {
32-
box-sizing: border-box;
33-
34-
.row:nth-child(odd),
35-
.row:nth-child(even) {
36-
background: transparent;
27+
*:has(>#comment_list) {
28+
.postTopic {
29+
border-bottom: none;
30+
.inner.tips {
31+
display: flex;
32+
height: 40px;
33+
align-items: center;
34+
gap: 8px;
35+
color: var(--color-reply-tips);
36+
}
3737
}
38-
> .clearit:first-child {
39-
border-top: 1px solid transparent;
38+
.avatar:not(.tinyCover) {
39+
img,
40+
.avatarNeue {
41+
border-radius: 50% !important;
42+
}
4043
}
41-
> .clearit,
42-
.topic_sub_reply > .clearit {
44+
.clearit:not(.message) {
45+
transition: all 0.3s ease;
4346
box-sizing: border-box;
4447
border-bottom: none !important;
4548
border-top: 1px dashed var(--color-reply-sp);
@@ -50,51 +53,48 @@ html {
5053
gap: 8px;
5154
color: var(--color-reply-tips);
5255
}
53-
.sub_reply_collapse .inner.tips {
54-
height: auto;
55-
}
56-
}
57-
58-
> .clearit:not(:has(.topic_sub_reply > .clearit:hover)):hover,
59-
.topic_sub_reply > .clearit:hover {
60-
position: relative;
61-
z-index: 1;
62-
}
63-
64-
> .clearit:not(:has(.topic_sub_reply > .clearit:hover)):hover,
65-
.topic_sub_reply > .clearit:hover {
66-
border-top: 1px solid var(--color-reply-normal-top) !important;
67-
background: linear-gradient(var(--color-reply-normal-bg) 1px, #00000000 60px) !important;
68-
box-shadow: 0 0 4px var(--color-reply-normal-shadow);
56+
.sub_reply_collapse .inner.tips { height: auto; }
57+
--color-reply: var(--color-bangumi);
6958
}
70-
.clearit.owner {
71-
border-top: 1px solid var(--color-reply-owner-top) !important;
72-
background: linear-gradient(var(--color-reply-owner-bg) 1px, #00000000 60px) !important;
73-
}
74-
.clearit.owner:not(:has(.clearit:hover)):hover {
75-
border-top: 1px solid var(--color-reply-owner-top) !important;
76-
background: linear-gradient(var(--color-reply-owner-bg) 1px, #00000000 60px) !important;
77-
box-shadow: 0 0 4px var(--color-reply-owner-shadow);
78-
}
79-
.clearit.floor {
80-
border-top: 1px solid var(--color-reply-floor-top) !important;
81-
background: linear-gradient(var(--color-reply-floor-bg) 1px, #00000000 60px) !important;
59+
.clearit.friend { --color-reply: var(--color-green); }
60+
.clearit.owner { --color-reply: var(--color-yellow); }
61+
.clearit.floor { --color-reply: var(--color-purple); }
62+
.clearit.self { --color-reply: var(--color-blue); }
63+
.clearit.friend, .clearit.owner, .clearit.floor, .clearit.self {
64+
border-top: 1px solid var(--color-reply) !important;
65+
background: linear-gradient(rgb(from var(--color-reply) r g b / .125) 1px, #00000000 60px) !important;
66+
> .inner > :first-child > strong::before, > .inner > strong::before {
67+
padding: 1px 4px;
68+
margin-right: 4px;
69+
border-radius: 2px;
70+
background: rgb(from var(--color-bangumi) r g b /.5);
71+
}
8272
}
83-
.clearit.floor:not(:has(.clearit:hover)):hover {
84-
border-top: 1px solid var(--color-reply-floor-top) !important;
85-
background: linear-gradient(var(--color-reply-floor-bg) 1px, #00000000 60px) !important;
86-
box-shadow: 0 0 4px var(--color-reply-floor-shadow);
73+
.clearit:not(:has(.clearit:not(.message):hover), .message):hover {
74+
border-top: 1px solid var(--color-reply) !important;
75+
background: linear-gradient(rgb(from var(--color-reply) r g b / .125) 1px, #00000000 60px) !important;
76+
box-shadow: 0 0 4px rgb(from var(--color-reply) r g b / .5);
8777
}
78+
.clearit.self { > .inner > :first-child > strong::before, > .inner > strong::before { content: '自'; } }
79+
.clearit.friend { > .inner > :first-child > strong::before, > .inner > strong::before { content: '友'; } }
80+
.clearit.owner { > .inner > :first-child > strong::before, > .inner > strong::before { content: '楼'; } }
81+
.clearit.floor { > .inner > :first-child > strong::before, > .inner > strong::before { content: '层'; } }
82+
.clearit.friend.owner { > .inner > :first-child > strong::before, > .inner > strong::before { content: '友 楼'; } }
83+
.clearit.friend.floor { > .inner > :first-child > strong::before, > .inner > strong::before { content: '友 层'; } }
84+
.clearit.owner.floor { > .inner > :first-child > strong::before, > .inner > strong::before { content: '楼 层'; } }
85+
.clearit.self.owner { > .inner > :first-child > strong::before, > .inner > strong::before { content: '自 楼'; } }
86+
.clearit.self.floor { > .inner > :first-child > strong::before, > .inner > strong::before { content: '自 层'; } }
87+
.clearit.friend.owner.floor { > .inner > :first-child > strong::before, > .inner > strong::before { content: '友 楼 层'; } }
88+
.clearit.self.owner.floor { > .inner > :first-child > strong::before, > .inner > strong::before { content: '自 楼 层'; } }
89+
}
8890

89-
div.reply_collapse {
90-
padding: 5px 10px;
91-
}
91+
#comment_list {
92+
box-sizing: border-box;
93+
.row:nth-child(odd), .row:nth-child(even) { background: transparent; }
94+
> .clearit:first-child { border-top: 1px solid transparent; }
95+
div.reply_collapse { padding: 5px 10px; }
9296
}
9397
@media (max-width: 640px) {
94-
.columns {
95-
> .column:last-child {
96-
align-self: auto !important;
97-
}
98-
}
98+
.columns { > .column:last-child { align-self: auto !important; } }
9999
}
100100
}

0 commit comments

Comments
 (0)