mirror of
https://github.com/venera-app/venera-configs.git
synced 2025-09-27 08:27:24 +00:00
Update template
This commit is contained in:
@@ -1,4 +1,19 @@
|
|||||||
/** @type {import('./_venera_.js')} */
|
/** @type {import('./_venera_.js')} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {Object} PageJumpTarget
|
||||||
|
* @Property {string} page - The page name (search, category)
|
||||||
|
* @Property {Object} attributes - The attributes of the page
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* {
|
||||||
|
* page: "search",
|
||||||
|
* attributes: {
|
||||||
|
* keyword: "example",
|
||||||
|
* },
|
||||||
|
* }
|
||||||
|
*/
|
||||||
|
|
||||||
class NewComicSource extends ComicSource {
|
class NewComicSource extends ComicSource {
|
||||||
// Note: The fields which are marked as [Optional] should be removed if not used
|
// Note: The fields which are marked as [Optional] should be removed if not used
|
||||||
|
|
||||||
@@ -256,20 +271,42 @@ class NewComicSource extends ComicSource {
|
|||||||
```
|
```
|
||||||
*/
|
*/
|
||||||
},
|
},
|
||||||
// provide options for category comic loading
|
// [Optional] provide options for category comic loading
|
||||||
optionList: [
|
optionList: [
|
||||||
{
|
{
|
||||||
|
// [Optional] The label will not be displayed if it is empty.
|
||||||
|
label: "",
|
||||||
// For a single option, use `-` to separate the value and text, left for value, right for text
|
// For a single option, use `-` to separate the value and text, left for value, right for text
|
||||||
options: [
|
options: [
|
||||||
"newToOld-New to Old",
|
"newToOld-New to Old",
|
||||||
"oldToNew-Old to New"
|
"oldToNew-Old to New"
|
||||||
],
|
],
|
||||||
// [Optional] {string[]} - show this option only when the value not in the list
|
// [Optional] {string[]} - show this option only when the category not in the list
|
||||||
notShowWhen: null,
|
notShowWhen: null,
|
||||||
// [Optional] {string[]} - show this option only when the value in the list
|
// [Optional] {string[]} - show this option only when the category in the list
|
||||||
showWhen: null
|
showWhen: null
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
/**
|
||||||
|
* [Optional] load options dynamically. If `optionList` is provided, this will be ignored.
|
||||||
|
* @since 1.5.0
|
||||||
|
* @param category {string}
|
||||||
|
* @param param {string?}
|
||||||
|
* @return {Promise<{options: string[], label?: string}[]>} - return a list of option group, each group contains a list of options
|
||||||
|
*/
|
||||||
|
optionLoader: async (category, param) => {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
// [Optional] The label will not be displayed if it is empty.
|
||||||
|
label: "",
|
||||||
|
// For a single option, use `-` to separate the value and text, left for value, right for text
|
||||||
|
options: [
|
||||||
|
"newToOld-New to Old",
|
||||||
|
"oldToNew-Old to New"
|
||||||
|
],
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
ranking: {
|
ranking: {
|
||||||
// For a single option, use `-` to separate the value and text, left for value, right for text
|
// For a single option, use `-` to separate the value and text, left for value, right for text
|
||||||
options: [
|
options: [
|
||||||
|
Reference in New Issue
Block a user