refactor: 优化eslint配置,提升代码质量 (#1341)

* feat: 统一并标准化eslint

* lint: napcat.webui

* lint: napcat.webui

* lint: napcat.core

* build: fix

* lint: napcat.webui

* refactor: 重构eslint

* Update README.md
This commit is contained in:
时瑾
2025-11-03 16:30:45 +08:00
committed by GitHub
parent d5b8f886d6
commit 06f6a542f5
651 changed files with 37981 additions and 37587 deletions

View File

@@ -1,11 +1,11 @@
import { PlayMode } from '@/const/enum'
import { PlayMode } from '@/const/enum';
import WebUIManager from '@/controllers/webui_manager'
import WebUIManager from '@/controllers/webui_manager';
import type {
FinalMusic,
Music163ListResponse,
Music163URLResponse
} from '@/types/music'
Music163URLResponse,
} from '@/types/music';
/**
* 获取网易云音乐歌单
@@ -13,17 +13,17 @@ import type {
* @returns 歌单信息
*/
export const get163MusicList = async (id: string) => {
let res = await WebUIManager.proxy<Music163ListResponse>(
const res = await WebUIManager.proxy<Music163ListResponse>(
'https://wavesgame.top/playlist/track/all?id=' + id
)
);
// const res = await request.get<Music163ListResponse>(
// `https://wavesgame.top/playlist/track/all?id=${id}`
// )
if (res?.data?.code !== 200) {
throw new Error('获取歌曲列表失败')
throw new Error('获取歌曲列表失败');
}
return res.data
}
return res.data;
};
/**
* 获取歌曲地址
@@ -32,29 +32,29 @@ export const get163MusicList = async (id: string) => {
*/
export const getSongsURL = async (ids: number[]) => {
const _ids = ids.reduce((prev, cur, index) => {
const groupIndex = Math.floor(index / 10)
const groupIndex = Math.floor(index / 10);
if (!prev[groupIndex]) {
prev[groupIndex] = []
prev[groupIndex] = [];
}
prev[groupIndex].push(cur)
return prev
}, [] as number[][])
prev[groupIndex].push(cur);
return prev;
}, [] as number[][]);
const res = await Promise.all(
_ids.map(async (id) => {
const res = await WebUIManager.proxy<Music163URLResponse>(
`https://wavesgame.top/song/url?id=${id.join(',')}`
)
);
if (res?.data?.code !== 200) {
throw new Error('获取歌曲地址失败')
throw new Error('获取歌曲地址失败');
}
return res.data.data
return res.data.data;
})
)
);
const result = res.reduce((prev, cur) => {
return prev.concat(...cur)
}, [])
return result
}
return prev.concat(...cur);
}, []);
return result;
};
/**
* 获取网易云音乐歌单歌曲
@@ -62,26 +62,26 @@ export const getSongsURL = async (ids: number[]) => {
* @returns 歌曲信息
*/
export const get163MusicListSongs = async (id: string) => {
const listRes = await get163MusicList(id)
const songs = listRes.songs.map((song) => song.id)
const songsRes = await getSongsURL(songs)
const finalMusic: FinalMusic[] = []
const listRes = await get163MusicList(id);
const songs = listRes.songs.map((song) => song.id);
const songsRes = await getSongsURL(songs);
const finalMusic: FinalMusic[] = [];
for (let i = 0; i < listRes.songs.length; i++) {
const song = listRes.songs[i]
const music = songsRes.find((s) => s.id === song.id)
const songURL = music?.url
const song = listRes.songs[i];
const music = songsRes.find((s) => s.id === song.id);
const songURL = music?.url;
if (songURL) {
finalMusic.push({
id: song.id,
url: songURL.replace(/http:\/\//, '//').replace(/https:\/\//, '//'),
title: song.name,
artist: song.ar.map((p) => p.name).join('/'),
cover: song.al.picUrl
})
cover: song.al.picUrl,
});
}
}
return finalMusic
}
return finalMusic;
};
/**
* 获取随机音乐
@@ -90,13 +90,13 @@ export const get163MusicListSongs = async (id: string) => {
* @returns 随机音乐id
*/
export const getRandomMusic = (ids: number[], currentId: number): number => {
const randomIndex = Math.floor(Math.random() * ids.length)
const randomId = ids[randomIndex]
const randomIndex = Math.floor(Math.random() * ids.length);
const randomId = ids[randomIndex];
if (randomId === currentId) {
return getRandomMusic(ids, currentId)
return getRandomMusic(ids, currentId);
}
return randomId
}
return randomId;
};
/**
* 获取下一首音乐id
@@ -109,14 +109,14 @@ export const getNextMusic = (
currentId: number,
mode: PlayMode
): number => {
const ids = musics.map((music) => music.id)
const ids = musics.map((music) => music.id);
if (mode === PlayMode.Loop) {
const currentIndex = ids.findIndex((id) => id === currentId)
const nextIndex = currentIndex + 1
return ids[nextIndex] || ids[0]
const currentIndex = ids.findIndex((id) => id === currentId);
const nextIndex = currentIndex + 1;
return ids[nextIndex] || ids[0];
}
if (mode === PlayMode.Random) {
return getRandomMusic(ids, currentId)
return getRandomMusic(ids, currentId);
}
return currentId
}
return currentId;
};