193 lines
7.2 KiB
Dart
193 lines
7.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:pilipala/common/widgets/network_img_layer.dart';
|
|
import 'package:pilipala/http/search.dart';
|
|
|
|
/// TODO 点击跳转
|
|
Widget addWidget(item, context, type, {floor = 1}) {
|
|
Map<dynamic, dynamic> dynamicProperty = {
|
|
'ADDITIONAL_TYPE_UGC': item.modules.moduleDynamic.additional.ugc,
|
|
// 直播预约
|
|
'ADDITIONAL_TYPE_RESERVE': item.modules.moduleDynamic.additional.reserve,
|
|
// 商品
|
|
'ADDITIONAL_TYPE_GOODS': item.modules.moduleDynamic.additional.goods,
|
|
// 比赛信息
|
|
'ADDITIONAL_TYPE_MATCH': item.modules.moduleDynamic.additional.match,
|
|
// 游戏信息
|
|
'ADDITIONAL_TYPE_COMMON': item.modules.moduleDynamic.additional.common,
|
|
};
|
|
Color bgColor = floor == 1
|
|
? Theme.of(context).dividerColor.withOpacity(0.08)
|
|
: Theme.of(context).colorScheme.background;
|
|
switch (type) {
|
|
case 'ADDITIONAL_TYPE_UGC':
|
|
// 转发的投稿
|
|
return InkWell(
|
|
onTap: () async {
|
|
String text = dynamicProperty[type].jumpUrl;
|
|
RegExp bvRegex = RegExp(r'BV[0-9A-Za-z]{10}', caseSensitive: false);
|
|
Iterable<Match> matches = bvRegex.allMatches(text);
|
|
if (matches.isNotEmpty) {
|
|
Match match = matches.first;
|
|
String bvid = match.group(0)!;
|
|
String cover = dynamicProperty[type].cover;
|
|
try {
|
|
int cid = await SearchHttp.ab2c(bvid: bvid);
|
|
Get.toNamed('/video?bvid=$bvid&cid=$cid',
|
|
arguments: {'pic': cover, 'heroTag': bvid});
|
|
} catch (err) {
|
|
SmartDialog.showToast(err.toString());
|
|
}
|
|
} else {
|
|
print("No match found.");
|
|
}
|
|
},
|
|
child: Container(
|
|
padding:
|
|
const EdgeInsets.only(left: 12, top: 8, right: 12, bottom: 8),
|
|
color: bgColor,
|
|
child: Row(
|
|
children: [
|
|
NetworkImgLayer(
|
|
width: 120,
|
|
height: 75,
|
|
src: dynamicProperty[type].cover,
|
|
),
|
|
const SizedBox(width: 10),
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
dynamicProperty[type].title,
|
|
maxLines: 2,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
const SizedBox(height: 4),
|
|
Text(
|
|
dynamicProperty[type].descSecond,
|
|
style: TextStyle(
|
|
color: Theme.of(context).colorScheme.outline,
|
|
fontSize:
|
|
Theme.of(context).textTheme.labelMedium!.fontSize,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
case 'ADDITIONAL_TYPE_RESERVE':
|
|
return dynamicProperty[type].state != -1
|
|
? Padding(
|
|
padding: const EdgeInsets.only(top: 8),
|
|
child: InkWell(
|
|
onTap: () {},
|
|
child: Container(
|
|
width: double.infinity,
|
|
padding: const EdgeInsets.only(
|
|
left: 12, top: 10, right: 12, bottom: 10),
|
|
color: bgColor,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
dynamicProperty[type].title,
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
const SizedBox(height: 1),
|
|
Text.rich(
|
|
TextSpan(
|
|
style: TextStyle(
|
|
color: Theme.of(context).colorScheme.outline,
|
|
fontSize: Theme.of(context)
|
|
.textTheme
|
|
.labelMedium!
|
|
.fontSize),
|
|
children: [
|
|
TextSpan(text: dynamicProperty[type].desc1['text']),
|
|
const TextSpan(text: ' '),
|
|
TextSpan(text: dynamicProperty[type].desc2['text']),
|
|
],
|
|
),
|
|
)
|
|
],
|
|
),
|
|
// TextButton(onPressed: () {}, child: Text('123'))
|
|
),
|
|
),
|
|
)
|
|
: const SizedBox();
|
|
case 'ADDITIONAL_TYPE_GOODS':
|
|
// 商品
|
|
return const SizedBox();
|
|
// return Padding(
|
|
// padding: const EdgeInsets.only(top: 6),
|
|
// child: InkWell(
|
|
// onTap: () {},
|
|
// child: Container(
|
|
// padding:
|
|
// const EdgeInsets.only(left: 12, top: 8, right: 12, bottom: 8),
|
|
// decoration: BoxDecoration(
|
|
// color: bgColor,
|
|
// borderRadius: const BorderRadius.all(Radius.circular(6)),
|
|
// ),
|
|
// child: Row(
|
|
// children: [
|
|
// NetworkImgLayer(
|
|
// width: 75,
|
|
// height: 75,
|
|
// src: dynamicProperty[type].items.first.cover,
|
|
// ),
|
|
// const SizedBox(width: 10),
|
|
// Expanded(
|
|
// child: Column(
|
|
// crossAxisAlignment: CrossAxisAlignment.start,
|
|
// mainAxisAlignment: MainAxisAlignment.start,
|
|
// children: [
|
|
// Text(
|
|
// dynamicProperty[type].items.first.name,
|
|
// maxLines: 1,
|
|
// overflow: TextOverflow.ellipsis,
|
|
// ),
|
|
// Text(
|
|
// dynamicProperty[type].items.first.brief,
|
|
// maxLines: 1,
|
|
// style: TextStyle(
|
|
// color: Theme.of(context).colorScheme.outline,
|
|
// fontSize: Theme.of(context)
|
|
// .textTheme
|
|
// .labelMedium!
|
|
// .fontSize,
|
|
// ),
|
|
// ),
|
|
// const SizedBox(height: 2),
|
|
// Text(
|
|
// dynamicProperty[type].items.first.price,
|
|
// style: TextStyle(
|
|
// color: Theme.of(context).colorScheme.primary,
|
|
// ),
|
|
// ),
|
|
// ],
|
|
// ),
|
|
// ),
|
|
// ],
|
|
// ),
|
|
// ),
|
|
// ),);
|
|
case 'ADDITIONAL_TYPE_MATCH':
|
|
return const SizedBox();
|
|
case 'ADDITIONAL_TYPE_COMMON':
|
|
return const SizedBox();
|
|
case 'ADDITIONAL_TYPE_VOTE':
|
|
return const SizedBox();
|
|
default:
|
|
return const Text('11');
|
|
}
|
|
}
|