mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
import { defineComponentMetadata } from '@/components/define'
|
|
import { videoAndBangumiUrls } from '@/core/utils/urls'
|
|
import { videoChange } from '@/core/observer'
|
|
import { select, sq } from '@/core/spin-query'
|
|
import { addStyle, removeStyle } from '@/core/style'
|
|
import style from './full-description.scss'
|
|
|
|
const name = 'fullVideoDescription'
|
|
const entry = () => {
|
|
addStyle(style, name)
|
|
videoChange(async () => {
|
|
const desc = await select('.video-desc, .video-desc-v1, .video-desc-container')
|
|
if (!desc) {
|
|
return
|
|
}
|
|
const expandButton = await sq(
|
|
() => dq(desc, '[report-id="abstract_spread"], .toggle-btn') as HTMLElement,
|
|
it => it && it.style.display !== 'none',
|
|
)
|
|
expandButton?.click()
|
|
})
|
|
}
|
|
export const component = defineComponentMetadata({
|
|
name,
|
|
entry,
|
|
reload: entry,
|
|
unload: () => {
|
|
removeStyle(name)
|
|
},
|
|
displayName: '展开视频简介',
|
|
tags: [componentsTags.video, componentsTags.style],
|
|
description: {
|
|
'zh-CN': '总是展开完整的视频简介.',
|
|
},
|
|
urlInclude: videoAndBangumiUrls,
|
|
})
|