mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-21 16:11:56 +00:00

* chore: rename flowy-folder2 to flowy-folder * chore: rename flowy-document2 to flowy-document * chore: fix test * chore: move lib-infra crate * chore: remove shared-lib * chore: fix clippy
66 lines
2.1 KiB
Dart
66 lines
2.1 KiB
Dart
import 'package:appflowy/mobile/application/mobile_router.dart';
|
|
import 'package:appflowy/mobile/presentation/home/personal_folder/mobile_home_personal_folder.dart';
|
|
import 'package:appflowy/workspace/application/favorite/favorite_bloc.dart';
|
|
import 'package:appflowy/workspace/application/menu/menu_bloc.dart';
|
|
import 'package:appflowy_backend/protobuf/flowy-folder/protobuf.dart';
|
|
import 'package:appflowy_backend/protobuf/flowy-user/user_profile.pb.dart';
|
|
import 'package:flowy_infra_ui/flowy_infra_ui.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:flutter_slidable/flutter_slidable.dart';
|
|
|
|
class MobileFolders extends StatelessWidget {
|
|
const MobileFolders({
|
|
super.key,
|
|
required this.user,
|
|
required this.workspaceSetting,
|
|
required this.showFavorite,
|
|
});
|
|
|
|
final UserProfilePB user;
|
|
final WorkspaceSettingPB workspaceSetting;
|
|
final bool showFavorite;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MultiBlocProvider(
|
|
providers: [
|
|
BlocProvider(
|
|
create: (_) => MenuBloc(
|
|
user: user,
|
|
workspaceId: workspaceSetting.workspaceId,
|
|
)..add(const MenuEvent.initial()),
|
|
),
|
|
BlocProvider(
|
|
create: (_) => FavoriteBloc()..add(const FavoriteEvent.initial()),
|
|
),
|
|
],
|
|
child: MultiBlocListener(
|
|
listeners: [
|
|
BlocListener<MenuBloc, MenuState>(
|
|
listenWhen: (p, c) =>
|
|
p.lastCreatedView?.id != c.lastCreatedView?.id,
|
|
listener: (context, state) =>
|
|
context.pushView(state.lastCreatedView!),
|
|
),
|
|
],
|
|
child: Builder(
|
|
builder: (context) {
|
|
final menuState = context.watch<MenuBloc>().state;
|
|
return SlidableAutoCloseBehavior(
|
|
child: Column(
|
|
children: [
|
|
MobilePersonalFolder(
|
|
views: menuState.views,
|
|
),
|
|
const VSpace(8.0),
|
|
],
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|