- 로그인 화면 상단에 브랜드 아이콘과 안내 문구를 추가하고 카드/푸터 레이아웃을 정리 - 네비게이션 레일/앱바 구성 재배치, 테마 토글 상단 이동, 그라데이션/브랜드 아이콘 스타일 조정 - ScaffoldMessenger 의존성 문제를 피하도록 벤더 컨트롤러 에러 스낵바 호출 시점을 프레임 이후로 이연 - IMPLEMENTATION_TASKS.md에 이번 변경 내역을 요약하여 진행 상황을 문서화
396 lines
12 KiB
Dart
396 lines
12 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:lucide_icons_flutter/lucide_icons.dart' as lucide;
|
|
|
|
import '../core/constants/app_sections.dart';
|
|
import '../core/theme/theme_controller.dart';
|
|
import '../core/permissions/permission_manager.dart';
|
|
|
|
/// 앱 기본 레이아웃을 제공하는 셸 위젯. 사이드 네비게이션과 AppBar를 구성한다.
|
|
class AppShell extends StatelessWidget {
|
|
const AppShell({
|
|
super.key,
|
|
required this.child,
|
|
required this.currentLocation,
|
|
});
|
|
|
|
final Widget child;
|
|
final String currentLocation;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return LayoutBuilder(
|
|
builder: (context, constraints) {
|
|
final isWide = constraints.maxWidth >= 960;
|
|
final manager = PermissionScope.of(context);
|
|
final filteredPages = <AppPageDescriptor>[
|
|
for (final section in appSections)
|
|
for (final page in section.pages)
|
|
if (manager.can(page.path, PermissionAction.view)) page,
|
|
];
|
|
final pages = filteredPages.isEmpty ? allAppPages : filteredPages;
|
|
final themeController = ThemeControllerScope.of(context);
|
|
final appBar = _GradientAppBar(
|
|
title: const _BrandTitle(),
|
|
actions: [
|
|
_ThemeMenuButton(
|
|
mode: themeController.mode,
|
|
onChanged: themeController.update,
|
|
),
|
|
const SizedBox(width: 8),
|
|
IconButton(
|
|
tooltip: '로그아웃',
|
|
icon: const Icon(lucide.LucideIcons.logOut),
|
|
onPressed: () => context.go(loginRoutePath),
|
|
),
|
|
const SizedBox(width: 8),
|
|
],
|
|
);
|
|
|
|
if (isWide) {
|
|
return Scaffold(
|
|
appBar: appBar,
|
|
body: Row(
|
|
children: [
|
|
_NavigationRail(currentLocation: currentLocation, pages: pages),
|
|
const VerticalDivider(width: 1),
|
|
Expanded(child: child),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
return Scaffold(
|
|
appBar: appBar,
|
|
drawer: Drawer(
|
|
child: SafeArea(
|
|
child: _NavigationList(
|
|
currentLocation: currentLocation,
|
|
onTap: (path) {
|
|
Navigator.of(context).pop();
|
|
context.go(path);
|
|
},
|
|
pages: pages,
|
|
),
|
|
),
|
|
),
|
|
body: child,
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|
|
|
|
class _NavigationRail extends StatelessWidget {
|
|
const _NavigationRail({required this.currentLocation, required this.pages});
|
|
|
|
final String currentLocation;
|
|
final List<AppPageDescriptor> pages;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final selectedIndex = _selectedIndex(currentLocation, pages);
|
|
final theme = Theme.of(context);
|
|
final colorScheme = theme.colorScheme;
|
|
|
|
return Container(
|
|
width: 220,
|
|
decoration: BoxDecoration(
|
|
border: Border(right: BorderSide(color: colorScheme.outlineVariant)),
|
|
),
|
|
child: Column(
|
|
children: [
|
|
const SizedBox(height: 24),
|
|
Expanded(
|
|
child: ListView.builder(
|
|
padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 8),
|
|
itemCount: pages.length,
|
|
itemBuilder: (context, index) {
|
|
final page = pages[index];
|
|
final isSelected = index == selectedIndex;
|
|
final textStyle = theme.textTheme.labelSmall?.copyWith(
|
|
color: isSelected
|
|
? colorScheme.primary
|
|
: colorScheme.onSurfaceVariant,
|
|
);
|
|
|
|
return Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 4),
|
|
child: Material(
|
|
color: isSelected
|
|
? colorScheme.primary.withValues(alpha: 0.12)
|
|
: Colors.transparent,
|
|
borderRadius: BorderRadius.circular(12),
|
|
child: InkWell(
|
|
borderRadius: BorderRadius.circular(12),
|
|
onTap: () {
|
|
if (page.path != currentLocation) {
|
|
context.go(page.path);
|
|
}
|
|
},
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
vertical: 10,
|
|
horizontal: 12,
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Icon(
|
|
page.icon,
|
|
size: 22,
|
|
color: isSelected
|
|
? colorScheme.primary
|
|
: colorScheme.onSurfaceVariant,
|
|
),
|
|
const SizedBox(width: 12),
|
|
Expanded(
|
|
child: Text(
|
|
page.label,
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
style: textStyle,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class _NavigationList extends StatelessWidget {
|
|
const _NavigationList({
|
|
required this.currentLocation,
|
|
required this.onTap,
|
|
required this.pages,
|
|
});
|
|
|
|
final String currentLocation;
|
|
final ValueChanged<String> onTap;
|
|
final List<AppPageDescriptor> pages;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final selectedIndex = _selectedIndex(currentLocation, pages);
|
|
final themeController = ThemeControllerScope.of(context);
|
|
|
|
return ListView.builder(
|
|
itemCount: pages.length + 1,
|
|
itemBuilder: (context, index) {
|
|
if (index == pages.length) {
|
|
return Padding(
|
|
padding: const EdgeInsets.fromLTRB(16, 12, 16, 16),
|
|
child: _ThemeMenuButton(
|
|
mode: themeController.mode,
|
|
onChanged: (mode) {
|
|
themeController.update(mode);
|
|
Navigator.of(context).maybePop();
|
|
},
|
|
),
|
|
);
|
|
}
|
|
|
|
final page = pages[index];
|
|
final selected = index == selectedIndex;
|
|
return ListTile(
|
|
leading: Icon(page.icon),
|
|
title: Text(page.label),
|
|
subtitle: Text(
|
|
page.summary,
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
selected: selected,
|
|
selectedColor: Theme.of(context).colorScheme.primary,
|
|
onTap: () => onTap(page.path),
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|
|
|
|
class _BrandTitle extends StatelessWidget {
|
|
const _BrandTitle();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
final colorScheme = theme.colorScheme;
|
|
|
|
return Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
DecoratedBox(
|
|
decoration: BoxDecoration(
|
|
shape: BoxShape.circle,
|
|
color: colorScheme.primary,
|
|
),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(12),
|
|
child: Icon(
|
|
lucide.LucideIcons.ship,
|
|
size: 28,
|
|
color: colorScheme.onPrimary,
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(width: 12),
|
|
Text(
|
|
'Superport v2',
|
|
style: theme.textTheme.titleLarge?.copyWith(
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|
|
|
|
class _GradientAppBar extends StatelessWidget implements PreferredSizeWidget {
|
|
const _GradientAppBar({required this.title, required this.actions});
|
|
|
|
final Widget title;
|
|
final List<Widget> actions;
|
|
|
|
@override
|
|
Size get preferredSize => const Size.fromHeight(kToolbarHeight);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
final colorScheme = theme.colorScheme;
|
|
|
|
return AppBar(
|
|
backgroundColor: Colors.transparent,
|
|
surfaceTintColor: Colors.transparent,
|
|
automaticallyImplyLeading: false,
|
|
titleSpacing: 16,
|
|
toolbarHeight: kToolbarHeight,
|
|
title: title,
|
|
actions: actions,
|
|
flexibleSpace: Container(
|
|
decoration: BoxDecoration(
|
|
gradient: LinearGradient(
|
|
begin: Alignment.bottomCenter,
|
|
end: Alignment.topCenter,
|
|
colors: [
|
|
colorScheme.primary.withValues(alpha: 0),
|
|
colorScheme.primary.withValues(alpha: 0.2),
|
|
],
|
|
stops: const [0, 1],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class _ThemeMenuButton extends StatelessWidget {
|
|
const _ThemeMenuButton({required this.mode, required this.onChanged});
|
|
|
|
final ThemeMode mode;
|
|
final ValueChanged<ThemeMode> onChanged;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
final colorScheme = theme.colorScheme;
|
|
final label = _label(mode);
|
|
final icon = _icon(mode);
|
|
|
|
return PopupMenuButton<ThemeMode>(
|
|
tooltip: '테마 변경',
|
|
onSelected: onChanged,
|
|
itemBuilder: (context) => ThemeMode.values
|
|
.map(
|
|
(value) => PopupMenuItem<ThemeMode>(
|
|
value: value,
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(_icon(value), size: 18),
|
|
const SizedBox(width: 8),
|
|
Flexible(
|
|
child: Text(
|
|
_label(value),
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
)
|
|
.toList(),
|
|
child: Container(
|
|
padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 10),
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(12),
|
|
border: Border.all(color: colorScheme.outlineVariant),
|
|
),
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(icon, size: 18),
|
|
const SizedBox(width: 8),
|
|
Flexible(
|
|
child: Text(
|
|
'테마 · $label',
|
|
style: theme.textTheme.labelSmall,
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
static String _label(ThemeMode mode) {
|
|
switch (mode) {
|
|
case ThemeMode.system:
|
|
return '시스템';
|
|
case ThemeMode.light:
|
|
return '라이트';
|
|
case ThemeMode.dark:
|
|
return '다크';
|
|
}
|
|
}
|
|
|
|
static IconData _icon(ThemeMode mode) {
|
|
switch (mode) {
|
|
case ThemeMode.system:
|
|
return lucide.LucideIcons.monitorCog;
|
|
case ThemeMode.light:
|
|
return lucide.LucideIcons.sun;
|
|
case ThemeMode.dark:
|
|
return lucide.LucideIcons.moon;
|
|
}
|
|
}
|
|
}
|
|
|
|
int _selectedIndex(String location, List<AppPageDescriptor> pages) {
|
|
final normalized = location.toLowerCase();
|
|
final exact = pages.indexWhere(
|
|
(page) => normalized == page.path.toLowerCase(),
|
|
);
|
|
if (exact != -1) {
|
|
return exact;
|
|
}
|
|
|
|
final prefix = pages.indexWhere(
|
|
(page) => normalized.startsWith(page.path.toLowerCase()),
|
|
);
|
|
return prefix == -1 ? 0 : prefix;
|
|
}
|