mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
opt dyn panel
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -47,115 +47,109 @@ Widget module(
|
|||||||
orig.modules.moduleDynamic?.major?.type == 'MAJOR_TYPE_NONE';
|
orig.modules.moduleDynamic?.major?.type == 'MAJOR_TYPE_NONE';
|
||||||
late final isNormalAuth =
|
late final isNormalAuth =
|
||||||
orig.modules.moduleAuthor!.type == 'AUTHOR_TYPE_NORMAL';
|
orig.modules.moduleAuthor!.type == 'AUTHOR_TYPE_NORMAL';
|
||||||
return orig.type == 'DYNAMIC_TYPE_NONE'
|
if (isNoneMajor) {
|
||||||
? const SizedBox.shrink()
|
if (orig.modules.moduleDynamic?.major?.none?.tips?.isNotEmpty == true) {
|
||||||
: InkWell(
|
return Container(
|
||||||
onTap: isNoneMajor
|
padding: const EdgeInsets.symmetric(horizontal: 15, vertical: 8),
|
||||||
? null
|
color: theme.dividerColor.withValues(alpha: 0.08),
|
||||||
: () => PageUtils.pushDynDetail(orig, floor + 1),
|
child: Row(
|
||||||
onLongPress: isNoneMajor
|
children: [
|
||||||
? null
|
Icon(
|
||||||
: () {
|
Icons.error,
|
||||||
String? title, cover, bvid;
|
size: 18,
|
||||||
late var origMajor = orig.modules.moduleDynamic?.major;
|
color: theme.colorScheme.outline,
|
||||||
late var major = item.modules.moduleDynamic?.major;
|
),
|
||||||
switch (orig.type) {
|
const SizedBox(width: 5),
|
||||||
case 'DYNAMIC_TYPE_AV':
|
Text(
|
||||||
title = origMajor?.archive?.title;
|
orig.modules.moduleDynamic!.major!.none!.tips!,
|
||||||
cover = origMajor?.archive?.cover;
|
style: TextStyle(color: theme.colorScheme.outline),
|
||||||
bvid = origMajor?.archive?.bvid;
|
),
|
||||||
break;
|
],
|
||||||
case 'DYNAMIC_TYPE_UGC_SEASON':
|
),
|
||||||
title = origMajor?.ugcSeason?.title;
|
);
|
||||||
cover = origMajor?.ugcSeason?.cover;
|
} else {
|
||||||
bvid = origMajor?.ugcSeason?.bvid;
|
return const SizedBox.shrink();
|
||||||
break;
|
}
|
||||||
case 'DYNAMIC_TYPE_PGC' || 'DYNAMIC_TYPE_PGC_UNION':
|
}
|
||||||
title = origMajor?.pgc?.title;
|
return InkWell(
|
||||||
cover = origMajor?.pgc?.cover;
|
onTap: () => PageUtils.pushDynDetail(orig, floor + 1),
|
||||||
break;
|
onLongPress: () {
|
||||||
case 'DYNAMIC_TYPE_LIVE_RCMD':
|
String? title, cover, bvid;
|
||||||
title = major?.liveRcmd?.title;
|
late var origMajor = orig.modules.moduleDynamic?.major;
|
||||||
cover = major?.liveRcmd?.cover;
|
late var major = item.modules.moduleDynamic?.major;
|
||||||
break;
|
switch (orig.type) {
|
||||||
case 'DYNAMIC_TYPE_LIVE':
|
case 'DYNAMIC_TYPE_AV':
|
||||||
title = major?.live?.title;
|
title = origMajor?.archive?.title;
|
||||||
cover = major?.live?.cover;
|
cover = origMajor?.archive?.cover;
|
||||||
break;
|
bvid = origMajor?.archive?.bvid;
|
||||||
default:
|
break;
|
||||||
return;
|
case 'DYNAMIC_TYPE_UGC_SEASON':
|
||||||
}
|
title = origMajor?.ugcSeason?.title;
|
||||||
imageSaveDialog(
|
cover = origMajor?.ugcSeason?.cover;
|
||||||
title: title,
|
bvid = origMajor?.ugcSeason?.bvid;
|
||||||
cover: cover,
|
break;
|
||||||
bvid: bvid,
|
case 'DYNAMIC_TYPE_PGC' || 'DYNAMIC_TYPE_PGC_UNION':
|
||||||
);
|
title = origMajor?.pgc?.title;
|
||||||
},
|
cover = origMajor?.pgc?.cover;
|
||||||
child: Container(
|
break;
|
||||||
padding:
|
case 'DYNAMIC_TYPE_LIVE_RCMD':
|
||||||
const EdgeInsets.symmetric(horizontal: 15, vertical: 8),
|
title = major?.liveRcmd?.title;
|
||||||
color: theme.dividerColor.withValues(alpha: 0.08),
|
cover = major?.liveRcmd?.cover;
|
||||||
child: isNoneMajor
|
break;
|
||||||
? Row(
|
case 'DYNAMIC_TYPE_LIVE':
|
||||||
children: [
|
title = major?.live?.title;
|
||||||
Icon(
|
cover = major?.live?.cover;
|
||||||
Icons.error,
|
break;
|
||||||
size: 18,
|
default:
|
||||||
color: theme.colorScheme.outline,
|
return;
|
||||||
),
|
}
|
||||||
const SizedBox(width: 5),
|
imageSaveDialog(
|
||||||
Text(
|
title: title,
|
||||||
orig.modules.moduleDynamic?.major?.none?.tips ??
|
cover: cover,
|
||||||
'NONE',
|
bvid: bvid,
|
||||||
style: TextStyle(color: theme.colorScheme.outline),
|
);
|
||||||
),
|
},
|
||||||
],
|
child: Container(
|
||||||
)
|
padding: const EdgeInsets.symmetric(horizontal: 15, vertical: 8),
|
||||||
: Column(
|
color: theme.dividerColor.withValues(alpha: 0.08),
|
||||||
mainAxisSize: MainAxisSize.min,
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: [
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
Row(
|
children: [
|
||||||
children: [
|
Row(
|
||||||
GestureDetector(
|
children: [
|
||||||
onTap: isNormalAuth
|
GestureDetector(
|
||||||
? () => Get.toNamed(
|
onTap: isNormalAuth
|
||||||
'/member?mid=${orig.modules.moduleAuthor!.mid}')
|
? () => Get.toNamed(
|
||||||
: null,
|
'/member?mid=${orig.modules.moduleAuthor!.mid}')
|
||||||
child: Text(
|
: null,
|
||||||
'${isNormalAuth ? '@' : ''}${orig.modules.moduleAuthor!.name}',
|
child: Text(
|
||||||
style: TextStyle(
|
'${isNormalAuth ? '@' : ''}${orig.modules.moduleAuthor!.name}',
|
||||||
color: theme.colorScheme.primary),
|
style: TextStyle(color: theme.colorScheme.primary),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(width: 6),
|
const SizedBox(width: 6),
|
||||||
Text(
|
Text(
|
||||||
DateUtil.dateFormat(
|
DateUtil.dateFormat(orig.modules.moduleAuthor!.pubTs),
|
||||||
orig.modules.moduleAuthor!.pubTs),
|
style: TextStyle(
|
||||||
style: TextStyle(
|
color: theme.colorScheme.outline,
|
||||||
color: theme.colorScheme.outline,
|
fontSize: theme.textTheme.labelSmall!.fontSize),
|
||||||
fontSize:
|
),
|
||||||
theme.textTheme.labelSmall!.fontSize),
|
],
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
const SizedBox(height: 5),
|
|
||||||
content(
|
|
||||||
theme, isSave, context, orig, isDetail, callback,
|
|
||||||
floor: floor + 1),
|
|
||||||
module(
|
|
||||||
theme, isSave, orig, context, isDetail, callback,
|
|
||||||
floor: floor + 1),
|
|
||||||
if (orig.modules.moduleDynamic?.additional != null)
|
|
||||||
addWidget(theme, orig, context, floor: floor + 1),
|
|
||||||
if (orig.modules.moduleDynamic?.major?.blocked !=
|
|
||||||
null)
|
|
||||||
blockedItem(theme,
|
|
||||||
orig.modules.moduleDynamic!.major!.blocked!),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
);
|
const SizedBox(height: 5),
|
||||||
|
content(theme, isSave, context, orig, isDetail, callback,
|
||||||
|
floor: floor + 1),
|
||||||
|
module(theme, isSave, orig, context, isDetail, callback,
|
||||||
|
floor: floor + 1),
|
||||||
|
if (orig.modules.moduleDynamic?.additional != null)
|
||||||
|
addWidget(theme, orig, context, floor: floor + 1),
|
||||||
|
if (orig.modules.moduleDynamic?.major?.blocked != null)
|
||||||
|
blockedItem(theme, orig.modules.moduleDynamic!.major!.blocked!),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
// 直播
|
// 直播
|
||||||
case 'DYNAMIC_TYPE_LIVE_RCMD':
|
case 'DYNAMIC_TYPE_LIVE_RCMD':
|
||||||
return liveRcmdPanel(theme, isDetail, item, context, floor: floor);
|
return liveRcmdPanel(theme, isDetail, item, context, floor: floor);
|
||||||
|
|||||||
Reference in New Issue
Block a user