import 'dart:io'; import 'dart:math'; import 'package:flutter/material.dart'; import 'package:image_picker/image_picker.dart'; import 'package:path_provider/path_provider.dart'; import 'package:path/path.dart' as p; import 'package:provider/provider.dart'; import 'package:flutter_staggered_grid_view/flutter_staggered_grid_view.dart'; import '../../providers/app_provider.dart'; import '../../models/data_models.dart'; import '../../utils/toast_util.dart'; import '../../utils/image_path_helper.dart'; import 'poster_gallery_page.dart'; /// 影视海报墙页面 class MoviePostersPage extends StatefulWidget { final Movie movie; const MoviePostersPage({super.key, required this.movie}); @override State createState() => _MoviePostersPageState(); } class _MoviePostersPageState extends State { final ImagePicker _picker = ImagePicker(); List _posters = []; bool _isLoading = true; @override void initState() { super.initState(); _loadPosters(); } Future _loadPosters() async { setState(() => _isLoading = true); final posters = await context.read().getMoviePosters(widget.movie.id); setState(() { _posters = posters; _isLoading = false; }); } @override Widget build(BuildContext context) { return Scaffold( backgroundColor: Colors.white, appBar: AppBar( title: const Text('海报墙'), actions: [ IconButton( icon: const Icon(Icons.add_photo_alternate), onPressed: _pickPoster, ), const SizedBox(width: 8), ], ), body: _isLoading ? const Center(child: CircularProgressIndicator()) : _posters.isEmpty ? _buildEmptyState() : _buildPosterGrid(), ); } Widget _buildEmptyState() { return Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Container( width: 80, height: 80, decoration: BoxDecoration( color: const Color(0xFFF5F5F5), borderRadius: BorderRadius.circular(20), ), child: const Icon( Icons.photo_library_outlined, size: 40, color: Color(0xFFCCCCCC), ), ), const SizedBox(height: 20), const Text( '暂无海报', style: TextStyle( fontSize: 16, color: Color(0xFF999999), ), ), const SizedBox(height: 24), InkWell( onTap: _pickPoster, child: Container( padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 12), decoration: BoxDecoration( color: const Color(0xFF1A1A1A), borderRadius: BorderRadius.circular(8), ), child: const Text( '添加记录', style: TextStyle( fontSize: 14, fontWeight: FontWeight.w500, color: Colors.white, ), ), ), ), ], ), ); } Widget _buildPosterGrid() { return MasonryGridView.count( padding: const EdgeInsets.all(16), crossAxisCount: 2, mainAxisSpacing: 12, crossAxisSpacing: 12, itemCount: _posters.length, itemBuilder: (context, index) { final poster = _posters[index]; return _buildPosterItem(poster, index); }, ); } Widget _buildPosterItem(MoviePoster poster, int index) { // 根据索引生成不同的高度,实现瀑布流效果 final heights = [180.0, 220.0, 160.0, 200.0, 240.0, 190.0]; final height = heights[index % heights.length]; return GestureDetector( onTap: () => _showPosterDetail(poster), onLongPress: () => _showDeleteDialog(poster), child: Container( height: height, decoration: BoxDecoration( borderRadius: BorderRadius.circular(8), boxShadow: [ BoxShadow( color: Colors.black.withOpacity(0.08), blurRadius: 8, offset: const Offset(0, 2), ), ], ), child: ClipRRect( borderRadius: BorderRadius.circular(8), child: Stack( fit: StackFit.expand, children: [ // 海报图片 Image.file( File(poster.posterPath), fit: BoxFit.cover, errorBuilder: (_, __, ___) => const Center( child: Icon( Icons.broken_image, color: Color(0xFFCCCCCC), ), ), ), // 渐变遮罩(底部) Positioned( bottom: 0, left: 0, right: 0, child: Container( height: 40, decoration: BoxDecoration( gradient: LinearGradient( begin: Alignment.topCenter, end: Alignment.bottomCenter, colors: [ Colors.transparent, Colors.black.withOpacity(0.3), ], ), ), ), ), ], ), ), ), ); } void _showPosterDetail(MoviePoster poster) { // 找到当前海报的索引 final initialIndex = _posters.indexWhere((p) => p.id == poster.id); Navigator.push( context, MaterialPageRoute( builder: (context) => PosterGalleryPage( posters: _posters, initialIndex: initialIndex >= 0 ? initialIndex : 0, ), ), ); } Future _pickPoster() async { try { final XFile? pickedFile = await _picker.pickImage( source: ImageSource.gallery, maxWidth: 1200, maxHeight: 1800, imageQuality: 85, ); if (pickedFile != null) { // 生成文件名 final fileName = 'posterimg_${DateTime.now().millisecondsSinceEpoch}.jpg'; // 保存到 posterimgs 子目录: images/movies/{movieId}/posterimgs/{fileName} final targetPath = await ImagePathHelper.instance.getMoviePosterImgPath( widget.movie.id, fileName ); await ImagePathHelper.instance.ensureDirExists(p.dirname(targetPath)); await File(pickedFile.path).copy(targetPath); final newPoster = MoviePoster( id: DateTime.now().millisecondsSinceEpoch.toString(), movieId: widget.movie.id, posterPath: targetPath, createdAt: DateTime.now(), ); await context.read().addMoviePoster(newPoster); _loadPosters(); if (mounted) { ToastUtil.show(context, '添加成功'); } } } catch (e) { if (mounted) { ToastUtil.show(context, '添加海报失败: $e'); } } } void _showDeleteDialog(MoviePoster poster) { showDialog( context: context, builder: (context) => AlertDialog( backgroundColor: Colors.white, elevation: 0, shape: const RoundedRectangleBorder(borderRadius: BorderRadius.zero), title: const Text('确认删除'), content: const Text('确定要删除这张海报吗?'), actions: [ TextButton( onPressed: () => Navigator.pop(context), child: const Text('取消', style: TextStyle(color: Color(0xFF666666))), ), TextButton( onPressed: () async { await context.read().removeMoviePoster(poster.id); Navigator.pop(context); _loadPosters(); ToastUtil.show(context, '已删除'); }, child: const Text('删除', style: TextStyle(color: Colors.red)), ), ], ), ); } }