diff --git a/src/main/worker/dbService/modules/dislike_list/dbHelper.ts b/src/main/worker/dbService/modules/dislike_list/dbHelper.ts index 3d5d2c05..23b7f951 100644 --- a/src/main/worker/dbService/modules/dislike_list/dbHelper.ts +++ b/src/main/worker/dbService/modules/dislike_list/dbHelper.ts @@ -20,7 +20,7 @@ export const queryDislikeList = () => { * 批量插入不喜欢歌曲并刷新顺序 * @param infos 列表 */ -export const inertDislikeList = async(infos: LX.DBService.DislikeInfo[]) => { +export const insertDislikeList = async(infos: LX.DBService.DislikeInfo[]) => { const db = getDB() const insertStatement = createInsertStatement() db.transaction((infos: LX.DBService.DislikeInfo[]) => { diff --git a/src/main/worker/dbService/modules/dislike_list/index.ts b/src/main/worker/dbService/modules/dislike_list/index.ts index 37332b22..8894b604 100644 --- a/src/main/worker/dbService/modules/dislike_list/index.ts +++ b/src/main/worker/dbService/modules/dislike_list/index.ts @@ -1,7 +1,7 @@ import { SPLIT_CHAR } from '@common/constants' import { queryDislikeList, - inertDislikeList, + insertDislikeList, overwirteDislikeList, // updateDislikeList, // deleteDislikeList, @@ -71,7 +71,7 @@ export const getDislikeListInfo = (): LX.Dislike.DislikeInfo => { * @param lists 列表信息 */ export const dislikeInfoAdd = async(lists: LX.Dislike.DislikeMusicInfo[]) => { - await inertDislikeList(lists.map(info => ({ content: `${info.name}${SPLIT_CHAR.DISLIKE_NAME}${info.singer}` }))) + await insertDislikeList(lists.map(info => ({ content: `${info.name}${SPLIT_CHAR.DISLIKE_NAME}${info.singer}` }))) } /** diff --git a/src/main/worker/dbService/modules/download/dbHelper.ts b/src/main/worker/dbService/modules/download/dbHelper.ts index c4633027..6a6e9940 100644 --- a/src/main/worker/dbService/modules/download/dbHelper.ts +++ b/src/main/worker/dbService/modules/download/dbHelper.ts @@ -20,7 +20,7 @@ export const queryDownloadList = () => { * 批量插入下载歌曲并刷新顺序 * @param mInfos 列表 */ -export const inertDownloadList = (mInfos: LX.DBService.DownloadMusicInfo[], listPositions: Array<{ id: string, position: number }>) => { +export const insertDownloadList = (mInfos: LX.DBService.DownloadMusicInfo[], listPositions: Array<{ id: string, position: number }>) => { const db = getDB() const insertStatement = createInsertStatement() const updatePositionStatement = createUpdatePositionStatement() diff --git a/src/main/worker/dbService/modules/download/index.ts b/src/main/worker/dbService/modules/download/index.ts index 43388557..06c5bd36 100644 --- a/src/main/worker/dbService/modules/download/index.ts +++ b/src/main/worker/dbService/modules/download/index.ts @@ -1,7 +1,7 @@ import { arrPush, arrUnshift } from '@common/utils/common' import { queryDownloadList, - inertDownloadList, + insertDownloadList, updateDownloadList, deleteDownloadList, clearDownloadList, @@ -72,12 +72,12 @@ export const downloadInfoSave = (downloadInfos: LX.Download.ListItem[], addMusic if (addMusicLocationType == 'top') { let newList = [...list] arrUnshift(newList, downloadInfos) - inertDownloadList(toDBDownloadInfo(downloadInfos), newList.slice(downloadInfos.length - 1).map((info, index) => { + insertDownloadList(toDBDownloadInfo(downloadInfos), newList.slice(downloadInfos.length - 1).map((info, index) => { return { id: info.id, position: index } })) list = newList } else { - inertDownloadList(toDBDownloadInfo(downloadInfos, list.length), []) + insertDownloadList(toDBDownloadInfo(downloadInfos, list.length), []) arrPush(list, downloadInfos) } } diff --git a/src/main/worker/dbService/modules/list/dbHelper.ts b/src/main/worker/dbService/modules/list/dbHelper.ts index 8e32d272..e0bd9360 100644 --- a/src/main/worker/dbService/modules/list/dbHelper.ts +++ b/src/main/worker/dbService/modules/list/dbHelper.ts @@ -40,7 +40,7 @@ export const queryAllUserList = () => { * @param lists 列表 * @param isClear 是否清空列表 */ -export const inertUserLists = (lists: LX.DBService.UserListInfo[], isClear: boolean = false) => { +export const insertUserLists = (lists: LX.DBService.UserListInfo[], isClear: boolean = false) => { const db = getDB() const listClearStatement = createListClearStatement() const listInsertStatement = createListInsertStatement() diff --git a/src/main/worker/dbService/modules/list/index.ts b/src/main/worker/dbService/modules/list/index.ts index a9570af5..63615ee3 100644 --- a/src/main/worker/dbService/modules/list/index.ts +++ b/src/main/worker/dbService/modules/list/index.ts @@ -2,7 +2,7 @@ import { LIST_IDS } from '@common/constants' import { arrPush, arrPushByPosition, arrUnshift } from '@common/utils/common' import { deleteUserLists, - inertUserLists, + insertUserLists, insertMusicInfoList, insertMusicInfoListAndRefreshOrder, moveMusicInfo, @@ -61,7 +61,7 @@ export const createUserLists = (position: number, lists: LX.List.UserListInfo[]) position: position + index, } }) - inertUserLists(newLists) + insertUserLists(newLists) userLists = [...userLists, ...newLists] } else { const newUserLists = [...userLists] @@ -70,7 +70,7 @@ export const createUserLists = (position: number, lists: LX.List.UserListInfo[]) newUserLists.forEach((list, index) => { list.position = index }) - inertUserLists(newUserLists, true) + insertUserLists(newUserLists, true) userLists = newUserLists } } @@ -86,7 +86,7 @@ export const createUserLists = (position: number, lists: LX.List.UserListInfo[]) // position: index, // } // }) -// inertUserLists(newUserLists, true) +// insertUserLists(newUserLists, true) // userLists = newUserLists // } @@ -145,7 +145,7 @@ export const updateUserListsPosition = (position: number, ids: string[]) => { newUserLists.forEach((list, index) => { list.position = index }) - inertUserLists(newUserLists, true) + insertUserLists(newUserLists, true) userLists = newUserLists } diff --git a/src/main/worker/dbService/modules/lyric/dbHelper.ts b/src/main/worker/dbService/modules/lyric/dbHelper.ts index faed0c8c..5e13eb5a 100644 --- a/src/main/worker/dbService/modules/lyric/dbHelper.ts +++ b/src/main/worker/dbService/modules/lyric/dbHelper.ts @@ -39,7 +39,7 @@ export const queryRawLyric = (id: string) => { * 批量插入原始歌词 * @param lyrics 列表 */ -export const inertRawLyric = (lyrics: LX.DBService.Lyricnfo[]) => { +export const insertRawLyric = (lyrics: LX.DBService.Lyricnfo[]) => { const db = getDB() const rawLyricInsertStatement = createRawLyricInsertStatement() db.transaction((lyrics: LX.DBService.Lyricnfo[]) => { @@ -102,7 +102,7 @@ export const queryEditedLyric = (id: string) => { * 批量插入已编辑歌词 * @param lyrics 列表 */ -export const inertEditedLyric = (lyrics: LX.DBService.Lyricnfo[]) => { +export const insertEditedLyric = (lyrics: LX.DBService.Lyricnfo[]) => { const db = getDB() const rawLyricInsertStatement = createEditedLyricInsertStatement() db.transaction((lyrics: LX.DBService.Lyricnfo[]) => { diff --git a/src/main/worker/dbService/modules/lyric/index.ts b/src/main/worker/dbService/modules/lyric/index.ts index a1d5bca4..0c8b4efc 100644 --- a/src/main/worker/dbService/modules/lyric/index.ts +++ b/src/main/worker/dbService/modules/lyric/index.ts @@ -1,12 +1,12 @@ import { queryLyric, queryRawLyric, - inertRawLyric, + insertRawLyric, deleteRawLyric, updateRawLyric, clearRawLyric, queryEditedLyric, - inertEditedLyric, + insertEditedLyric, deleteEditedLyric, updateEditedLyric, clearEditedLyric, @@ -90,7 +90,7 @@ export const getRawLyric = (id: string): LX.Music.LyricInfo => { * @param lyricInfo 歌词信息 */ export const rawLyricAdd = (id: string, lyricInfo: LX.Music.LyricInfo) => { - inertRawLyric(toDBLyric(id, 'raw', lyricInfo)) + insertRawLyric(toDBLyric(id, 'raw', lyricInfo)) } /** @@ -150,7 +150,7 @@ export const getEditedLyric = (id: string): LX.Music.LyricInfo => { * @param lyricInfo 歌词信息 */ export const editedLyricAdd = (id: string, lyricInfo: LX.Music.LyricInfo) => { - inertEditedLyric(toDBLyric(id, 'edited', lyricInfo)) + insertEditedLyric(toDBLyric(id, 'edited', lyricInfo)) } /** @@ -185,7 +185,7 @@ export const editedLyricClear = () => { export const editedLyricUpdateAddAndUpdate = (id: string, lyricInfo: LX.Music.LyricInfo) => { const lyrics = queryEditedLyric(id) if (lyrics.length) updateEditedLyric(toDBLyric(id, 'edited', lyricInfo)) - else inertEditedLyric(toDBLyric(id, 'edited', lyricInfo)) + else insertEditedLyric(toDBLyric(id, 'edited', lyricInfo)) } /** diff --git a/src/main/worker/dbService/modules/music_other_source/dbHelper.ts b/src/main/worker/dbService/modules/music_other_source/dbHelper.ts index ed6d57b0..f5709282 100644 --- a/src/main/worker/dbService/modules/music_other_source/dbHelper.ts +++ b/src/main/worker/dbService/modules/music_other_source/dbHelper.ts @@ -22,7 +22,7 @@ export const queryMusicInfo = (id: string) => { * 批量插入歌曲信息 * @param musicInfos 列表 */ -export const inertMusicInfo = (musicInfos: LX.DBService.MusicInfoOtherSource[]) => { +export const insertMusicInfo = (musicInfos: LX.DBService.MusicInfoOtherSource[]) => { const db = getDB() const musicInfoInsertStatement = createMusicInfoInsertStatement() db.transaction((musicInfos: LX.DBService.MusicInfoOtherSource[]) => { diff --git a/src/main/worker/dbService/modules/music_other_source/index.ts b/src/main/worker/dbService/modules/music_other_source/index.ts index 4878b06b..d4cb934d 100644 --- a/src/main/worker/dbService/modules/music_other_source/index.ts +++ b/src/main/worker/dbService/modules/music_other_source/index.ts @@ -1,6 +1,6 @@ import { queryMusicInfo, - inertMusicInfo, + insertMusicInfo, deleteMusicInfo, clearMusicInfo, countMusicInfo, @@ -44,7 +44,7 @@ export const getMusicInfoOtherSource = (id: string): LX.Music.MusicInfoOnline[] * @param musicInfos 歌词信息 */ export const musicInfoOtherSourceAdd = (id: string, musicInfos: LX.Music.MusicInfoOnline[]) => { - inertMusicInfo(toDBMusicInfo(id, musicInfos)) + insertMusicInfo(toDBMusicInfo(id, musicInfos)) } /** diff --git a/src/main/worker/dbService/modules/music_url/dbHelper.ts b/src/main/worker/dbService/modules/music_url/dbHelper.ts index e016ea4c..8aa7ccbd 100644 --- a/src/main/worker/dbService/modules/music_url/dbHelper.ts +++ b/src/main/worker/dbService/modules/music_url/dbHelper.ts @@ -22,7 +22,7 @@ export const queryMusicUrl = (id: string) => { * 批量插入歌曲url * @param urlInfo 列表 */ -export const inertMusicUrl = (urlInfo: LX.DBService.MusicUrlInfo[]) => { +export const insertMusicUrl = (urlInfo: LX.DBService.MusicUrlInfo[]) => { const db = getDB() const insertStatement = createInsertStatement() const deleteStatement = createDeleteStatement() diff --git a/src/main/worker/dbService/modules/music_url/index.ts b/src/main/worker/dbService/modules/music_url/index.ts index 7ffdf57e..0eb40c6a 100644 --- a/src/main/worker/dbService/modules/music_url/index.ts +++ b/src/main/worker/dbService/modules/music_url/index.ts @@ -1,6 +1,6 @@ import { queryMusicUrl, - inertMusicUrl, + insertMusicUrl, deleteMusicUrl, clearMusicUrl, countMusicUrl, @@ -22,7 +22,7 @@ export const getMusicUrl = (id: string): string | null => { * @param urlInfos url信息 */ export const musicUrlSave = (urlInfos: LX.Music.MusicUrlInfo[]) => { - inertMusicUrl(urlInfos) + insertMusicUrl(urlInfos) } /**