Files
phylum/client/lib/ui/layout/app_layout.dart
2025-05-18 21:18:49 +05:30

168 lines
5.8 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter_state_notifier/flutter_state_notifier.dart';
import 'package:offtheline/offtheline.dart';
import 'package:phylum/libphylum/phylum_account.dart';
import 'package:phylum/libphylum/phylum_api_types.dart';
import 'package:phylum/ui/common/logo_row.dart';
import 'package:phylum/ui/layout/account_state_page.dart';
import 'package:phylum/ui/layout/action_queue_status_notifier.dart';
import 'package:phylum/ui/layout/app_actions.dart';
import 'package:phylum/ui/layout/nav_list.dart';
import 'package:phylum/ui/app/router.dart';
import 'package:phylum/ui/layout/search.dart';
import 'package:phylum/ui/explorer/explorer_view.dart';
import 'package:phylum/ui/explorer/explorer_controller.dart';
import 'package:phylum/ui/explorer/resource_drop_and_drop.dart';
import 'package:phylum/ui/explorer/resource_info_view.dart';
import 'package:provider/provider.dart';
import 'app_layout_collapsed.dart';
class AppLayout extends StatelessWidget {
const AppLayout._();
static Widget create(PhylumAccount account) {
return MultiProvider(
key: ValueKey(account.id),
providers: [
StateNotifierProvider<PhylumAccount, AccountState>.value(value: account),
StateNotifierProvider<PhylumActionQueue, PhylumActionQueueState>.value(value: account.actionQueue),
ChangeNotifierProvider(create: (context) => ActionQueueStatusNotifier(account.actionQueue)),
StateNotifierProvider<ExplorerController, ExplorerState>(
create: (context) => ExplorerController(account: context.read(), routerDelegate: context.read()),
lazy: false,
),
ChangeNotifierProvider(create: (context) => PhylumSearchController(context)),
],
builder: (context, child) {
final canHandlePop =
context.watch<PhylumRouterDelegate>().canGoBack || context.watch<ExplorerState>().selectedIds.isNotEmpty;
return PopScope(
canPop: !canHandlePop,
onPopInvokedWithResult: (didPop, result) {
if (didPop) return;
if (!context.read<ExplorerController>().clearSelection()) {
context.read<PhylumRouterDelegate>().goBack();
}
},
child: AccountStatePage(child: const AppLayout._()));
},
);
}
@override
Widget build(BuildContext context) {
final size = MediaQuery.sizeOf(context);
final layout = size.width <= 600
? const AppLayoutCollapsed()
: ExpandedAppLayout(
large: size.width > 1200,
);
return ExternalDropRegion(
buildItem: (context, dropTargetActive) {
final child = (dropTargetActive)
? Stack(
children: [
layout,
ConstrainedBox(
constraints: BoxConstraints.expand(),
child: Material(
color: Colors.white70,
child: const Center(child: Text('Drop Files to Upload', style: TextStyle(fontSize: 24))),
),
)
],
)
: layout;
return AppActions(
child: child,
);
},
);
}
}
class ExpandedAppLayout extends StatelessWidget {
final bool large;
const ExpandedAppLayout({super.key, required this.large});
@override
Widget build(BuildContext context) {
final sidebarWidth = large ? 288.0 : 240.0;
return Scaffold(
body: Column(
mainAxisSize: MainAxisSize.max,
children: [
Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
SizedBox(
width: sidebarWidth,
child: Padding(
padding: const EdgeInsets.only(left: 16),
child: const LogoRow(),
),
),
Expanded(
child: Card(
elevation: 0,
margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 12),
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
const Padding(
padding: EdgeInsets.only(right: 16.0),
child: Icon(Icons.search),
),
Expanded(
child: const SearchField(),
),
],
),
),
),
),
if (large) SizedBox(width: 360),
],
),
Expanded(
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SizedBox(
width: sidebarWidth,
child: Card(
elevation: 0,
margin: const EdgeInsets.only(left: 16, bottom: 16),
child: ExcludeFocusTraversal(child: NavList(drawer: false)),
),
),
Expanded(
child: Card(
elevation: 0,
margin: const EdgeInsets.only(left: 16, right: 16, bottom: 16),
child: const ExplorerView(small: false),
),
),
if (large)
SizedBox(
width: 360,
child: Card(
elevation: 0,
margin: const EdgeInsets.only(right: 16, bottom: 16),
child: ReactiveResourceInfoView(),
),
),
],
),
),
],
),
);
}
}