-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b4fd4fc
commit 4ac00ba
Showing
14 changed files
with
199 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
"email": "[email protected]" | ||
}, | ||
"description": "NSMusicS For Web(Electron+Vue3+TS),Multi platform Multi mode Super Music Software (Full stack development, audio processing, artificial intelligence, natural language processing)", | ||
"version": "1.3.2", | ||
"version": "1.3.3", | ||
"private": true, | ||
"license": "AGPL - 3.0", | ||
"scripts": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
13 changes: 13 additions & 0 deletions
13
...S-Electron/src/views/view_music/music_page/page_genre/store/store_view_genre_page_info.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { reactive } from 'vue' | ||
|
||
export const store_view_genre_page_info = reactive({ | ||
genre_File_metadata: [], | ||
|
||
genre_Files_temporary: [], | ||
|
||
genre_page_sizes: 15, | ||
|
||
genre_item_count: 0, | ||
genre_starred_count: 0, | ||
genre_recently_count: 0 | ||
}); |
17 changes: 17 additions & 0 deletions
17
...-Electron/src/views/view_music/music_page/page_genre/store/store_view_genre_page_logic.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import {reactive, watch} from 'vue' | ||
import {store_router_history_data_of_genre} from "@/router/router_store/store_router_history_data_of_genre"; | ||
import {store_view_genre_page_fetchData} from "./store_view_genre_page_fetchData"; | ||
import {store_router_data_info} from "@/router/router_store/store_router_data_info"; | ||
import {store_app_configs_logic_save} from "@/data/data_stores/app/store_app_configs_logic_save"; | ||
|
||
export const store_view_genre_page_logic = reactive({ | ||
list_data_StartUpdate: false, | ||
}); | ||
watch(() => store_view_genre_page_logic.list_data_StartUpdate, (newValue) => { | ||
if(newValue) { | ||
store_view_genre_page_fetchData.fetchData_Album() | ||
|
||
store_view_genre_page_logic.list_data_StartUpdate = false | ||
console.log('page_genrelists_reset_data?:' + newValue) | ||
} | ||
}); |
Oops, something went wrong.