You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

121 lines
4.1 KiB

3 years ago
import 'package:aku_new_community/model/common/img_model.dart';
import 'package:aku_new_community/models/home/home_announce_model.dart';
3 years ago
import 'package:aku_new_community/ui/community/notice/notice_detail_page.dart';
import 'package:aku_new_community/utils/headers.dart';
import 'package:aku_new_community/widget/beeImageNetwork.dart';
3 years ago
import 'package:aku_new_community/widget/picker/bee_image_preview.dart';
import 'package:common_utils/common_utils.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:velocity_x/velocity_x.dart';
4 years ago
@Deprecated('旧设计,暂时弃用')
class NoticeCard extends StatelessWidget {
final HomeAnnounceModel model;
final HomeAnnounceModel? preModel;
3 years ago
const NoticeCard({
3 years ago
Key? key,
required this.model,
required this.preModel,
}) : super(key: key);
bool get sameDay =>
3 years ago
model.createDateDT?.year == (preModel?.createDateDT?.year ?? 0) &&
model.createDateDT?.month == (preModel?.createDateDT?.month ?? 0) &&
model.createDateDT?.day == (preModel?.createDateDT?.day ?? 0);
bool get isYesterday {
DateTime now = DateTime.now();
DateTime yesterday = DateTime(now.year, now.month, now.day - 1);
3 years ago
return yesterday.year == model.createDateDT?.year &&
yesterday.month == model.createDateDT?.month &&
yesterday.day == model.createDateDT?.day;
}
bool get isFirst => preModel == null;
bool get notSameYear =>
3 years ago
model.createDateDT?.year != (preModel?.createDateDT?.year ?? 0);
Widget title() {
3 years ago
if (DateUtil.isToday(model.createDateDT?.millisecond))
return '今天'.text.size(52.sp).bold.make();
if (isYesterday)
return '昨天'.text.size(52.sp).bold.make();
else
return Row(
mainAxisSize: MainAxisSize.min,
children: [
3 years ago
(model.createDateDT?.day.toString() ?? '')
.text
.size(52.sp)
.bold
.make(),
3 years ago
'${model.createDateDT?.month}'.text.size(36.sp).make(),
],
);
}
@override
Widget build(BuildContext context) {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
3 years ago
(notSameYear && model.createDateDT?.year != DateTime.now().year)
? '${model.createDateDT?.year}'
.text
.bold
.size(52.sp)
.make()
.paddingOnly(left: 32.w, top: isFirst ? 0 : 64.w, bottom: 32.w)
: SizedBox(),
MaterialButton(
onPressed: () {
Get.to(() => NoticeDetailPage(id: model.id));
},
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
width: 200.w,
padding: EdgeInsets.only(left: 32.w),
alignment: Alignment.topLeft,
child: sameDay ? SizedBox() : title(),
),
model.imgList.length == 0
? SizedBox(height: 152.w)
: GestureDetector(
onTap: () {
BeeImagePreview.toPath(
path: ImgModel.first(model.imgList),
tag:
'${ImgModel.first(model.imgList)}${model.hashCode}',
);
},
child: Container(
clipBehavior: Clip.antiAlias,
decoration: BoxDecoration(
color: Colors.black12,
borderRadius: BorderRadius.circular(8.w),
),
child: Hero(
tag:
'${ImgModel.first(model.imgList)}${model.hashCode}',
child: BeeImageNetwork(
imgs: model.imgList,
),
),
),
),
10.wb,
model.title.text.make().expand(),
],
),
),
],
);
}
}