mirror of
https://github.com/venera-app/venera.git
synced 2025-09-27 15:57:25 +00:00
[Comic Source] Improve data conversion
This commit is contained in:
@@ -294,14 +294,9 @@ abstract mixin class _ComicPageActions {
|
||||
}
|
||||
|
||||
void onTapTag(String tag, String namespace) {
|
||||
var config = comicSource.handleClickTagEvent?.call(namespace, tag) ??
|
||||
{
|
||||
'action': 'search',
|
||||
'keyword': tag,
|
||||
};
|
||||
var target = comicSource.handleClickTagEvent?.call(namespace, tag);
|
||||
var context = App.mainNavigatorKey!.currentContext!;
|
||||
var target = PageJumpTarget.parse(comicSource.key, config);
|
||||
target.jump(context);
|
||||
target?.jump(context);
|
||||
}
|
||||
|
||||
void showMoreActions() {
|
||||
|
Reference in New Issue
Block a user