240 lines
9.8 KiB
Dart
240 lines
9.8 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import '../providers/sake_list_provider.dart';
|
|
import '../providers/menu_providers.dart';
|
|
import '../providers/display_mode_provider.dart';
|
|
import '../providers/filter_providers.dart';
|
|
import '../models/sake_item.dart';
|
|
import '../widgets/home/home_empty_state.dart';
|
|
import '../widgets/home/sake_no_match_state.dart';
|
|
import '../widgets/home/sake_list_view.dart';
|
|
import '../widgets/home/sake_grid_view.dart';
|
|
import '../widgets/step_indicator.dart';
|
|
import '../theme/app_theme.dart';
|
|
import 'menu_pricing_screen.dart';
|
|
import '../widgets/sake_search_delegate.dart';
|
|
import '../widgets/prefecture_filter_sheet.dart';
|
|
|
|
class MenuCreationScreen extends ConsumerWidget {
|
|
const MenuCreationScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
// Force MenuMode provider for compatibility with child widgets (like SakeListItem)
|
|
// We should probably just pass `isMenuMode: true` to children, but SakeFilterChips might rely on it?
|
|
// SakeFilterChips doesn't use isMenuMode.
|
|
// SakeListItem/GridItem take `isMenuMode` as param.
|
|
// So we don't necessarily need to set the global provider, but it's safer if other widgets rely on it.
|
|
// Actually, `HomeScreen` toggles it. Here we are always in "Creation Mode".
|
|
|
|
final displayMode = ref.watch(displayModeProvider);
|
|
final sakeListAsync = ref.watch(sakeListProvider);
|
|
final isSearching = ref.watch(sakeSearchQueryProvider).isNotEmpty;
|
|
final showSelectedOnly = ref.watch(menuShowSelectedOnlyProvider);
|
|
final showFavorites = ref.watch(sakeFilterFavoriteProvider);
|
|
final selectedPrefecture = ref.watch(sakeFilterPrefectureProvider);
|
|
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const StepIndicator(currentStep: 1, totalSteps: 3),
|
|
centerTitle: true,
|
|
automaticallyImplyLeading: false, // ヘッダー戻るボタンを無効化
|
|
actions: [
|
|
// Search (最も使用頻度が高い)
|
|
IconButton(
|
|
icon: const Icon(Icons.search),
|
|
onPressed: () => showSearch(context: context, delegate: SakeSearchDelegate(ref)),
|
|
tooltip: '検索',
|
|
),
|
|
// Prefecture Filter
|
|
IconButton(
|
|
icon: const Icon(Icons.location_on),
|
|
onPressed: () => PrefectureFilterSheet.show(context),
|
|
tooltip: '都道府県で絞り込み',
|
|
color: selectedPrefecture != null ? AppTheme.posimaiBlue : null,
|
|
),
|
|
// Show Selected Only Toggle (フィルターアイコンに変更)
|
|
IconButton(
|
|
icon: Icon(showSelectedOnly ? Icons.filter_list : Icons.filter_list_off),
|
|
color: showSelectedOnly ? AppTheme.posimaiBlue : null,
|
|
tooltip: showSelectedOnly ? '全て表示' : '選択中のみ表示',
|
|
onPressed: () {
|
|
if (!showSelectedOnly) {
|
|
// Initialize order when switching to "Selected Only"
|
|
final selected = ref.read(selectedMenuSakeIdsProvider);
|
|
if (selected.isNotEmpty) {
|
|
ref.read(menuOrderedIdsProvider.notifier).initialize(selected.toList());
|
|
}
|
|
}
|
|
ref.read(menuShowSelectedOnlyProvider.notifier).toggle();
|
|
},
|
|
),
|
|
],
|
|
bottom: PreferredSize(
|
|
preferredSize: const Size.fromHeight(2),
|
|
child: LinearProgressIndicator(
|
|
value: 1 / 3, // Step 1 of 3 = 33%
|
|
backgroundColor: Colors.grey[200],
|
|
valueColor: const AlwaysStoppedAnimation<Color>(AppTheme.posimaiBlue),
|
|
minHeight: 2,
|
|
),
|
|
),
|
|
),
|
|
body: Column(
|
|
children: [
|
|
// Guide Banner (条件付き表示: 未選択時のみ)
|
|
() {
|
|
final selectedIds = ref.watch(selectedMenuSakeIdsProvider);
|
|
if (selectedIds.isEmpty && !showSelectedOnly) {
|
|
return Container(
|
|
padding: const EdgeInsets.all(12),
|
|
decoration: BoxDecoration(
|
|
color: Colors.orange.withOpacity(0.1),
|
|
border: Border(
|
|
bottom: BorderSide(color: Colors.orange.withOpacity(0.3)),
|
|
),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Icon(Icons.touch_app, size: 20, color: Colors.orange[700]),
|
|
const SizedBox(width: 8),
|
|
Expanded(
|
|
child: Text(
|
|
'カードをタップして選択',
|
|
style: TextStyle(
|
|
color: Colors.orange[900],
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
return const SizedBox.shrink();
|
|
}(),
|
|
|
|
// Main Content
|
|
Expanded(
|
|
child: sakeListAsync.when(
|
|
data: (sakeList) {
|
|
List<SakeItem> displayList;
|
|
if (showSelectedOnly) {
|
|
final orderedIds = ref.watch(menuOrderedIdsProvider);
|
|
final sakeMap = {for (var s in sakeList) s.id: s};
|
|
displayList = orderedIds
|
|
.map((id) => sakeMap[id])
|
|
.where((s) => s != null)
|
|
.cast<SakeItem>()
|
|
.toList();
|
|
} else {
|
|
displayList = sakeList;
|
|
}
|
|
|
|
final isListActuallyEmpty = ref.watch(rawSakeListItemsProvider).asData?.value.isEmpty ?? true;
|
|
|
|
// Empty State Logic
|
|
if (displayList.isEmpty) {
|
|
if (showSelectedOnly) {
|
|
return Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(Icons.checklist, size: 60, color: Colors.grey[400]),
|
|
const SizedBox(height: 16),
|
|
const Text('お品書きに追加されたお酒はありません', style: TextStyle(fontWeight: FontWeight.bold)),
|
|
const SizedBox(height: 8),
|
|
const Text('「全て表示」に切り替えて\n掲載したいお酒を選択してください', textAlign: TextAlign.center, style: TextStyle(color: Colors.grey)),
|
|
],
|
|
),
|
|
);
|
|
} else if (isListActuallyEmpty) {
|
|
return const HomeEmptyState();
|
|
} else {
|
|
return const SakeNoMatchState();
|
|
}
|
|
}
|
|
|
|
return displayMode == 'list'
|
|
? SakeListView(sakeList: displayList, isMenuMode: true, enableReorder: false)
|
|
: SakeGridView(sakeList: displayList, isMenuMode: true, enableReorder: false);
|
|
},
|
|
loading: () => const Center(child: CircularProgressIndicator()),
|
|
error: (e, st) => Center(child: Text('Error: $e')),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
bottomNavigationBar: SafeArea(
|
|
child: Container(
|
|
padding: const EdgeInsets.all(16),
|
|
decoration: BoxDecoration(
|
|
color: Theme.of(context).cardColor,
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: Colors.black.withOpacity(0.05),
|
|
blurRadius: 8,
|
|
offset: const Offset(0, -2),
|
|
),
|
|
],
|
|
),
|
|
child: Row(
|
|
children: [
|
|
// 戻るボタン (左端)
|
|
SizedBox(
|
|
width: 56,
|
|
height: 56,
|
|
child: OutlinedButton(
|
|
onPressed: () => Navigator.of(context).pop(),
|
|
style: OutlinedButton.styleFrom(
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(12),
|
|
),
|
|
side: BorderSide(color: Colors.grey[300]!),
|
|
padding: EdgeInsets.zero,
|
|
),
|
|
child: Icon(Icons.arrow_back, color: Colors.grey[700]),
|
|
),
|
|
),
|
|
const SizedBox(width: 12),
|
|
|
|
// 次へボタン (右側いっぱいに広がる)
|
|
Expanded(
|
|
child: SizedBox(
|
|
height: 56,
|
|
child: ElevatedButton.icon(
|
|
onPressed: () {
|
|
final selectedIds = ref.read(selectedMenuSakeIdsProvider);
|
|
if (selectedIds.isEmpty) {
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
const SnackBar(content: Text('お酒を選択してください'))
|
|
);
|
|
return;
|
|
}
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(builder: (context) => const MenuPricingScreen()),
|
|
);
|
|
},
|
|
style: ElevatedButton.styleFrom(
|
|
backgroundColor: AppTheme.posimaiBlue,
|
|
foregroundColor: Colors.white,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(12),
|
|
),
|
|
),
|
|
icon: const Icon(Icons.arrow_forward),
|
|
label: const Text('価格設定', style: TextStyle(fontSize: 16, fontWeight: FontWeight.bold)),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
|
|
}
|