mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
107 lines
3.0 KiB
Dart
107 lines
3.0 KiB
Dart
import 'package:app_flowy/startup/startup.dart';
|
|
import 'package:app_flowy/workspace/application/workspace/welcome_bloc.dart';
|
|
import 'package:app_flowy/workspace/domain/i_user.dart';
|
|
import 'package:flowy_infra_ui/style_widget/scrolling/styled_list.dart';
|
|
import 'package:flowy_infra_ui/style_widget/text_button.dart';
|
|
import 'package:flowy_infra_ui/widget/error_page.dart';
|
|
import 'package:flowy_sdk/protobuf/flowy-workspace/workspace_create.pb.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:app_flowy/workspace/infrastructure/repos/user_repo.dart';
|
|
|
|
class WelcomeScreen extends StatelessWidget {
|
|
final UserRepo repo;
|
|
const WelcomeScreen({
|
|
Key? key,
|
|
required this.repo,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return BlocProvider(
|
|
create: (_) => getIt<WelcomeBloc>(param1: repo.user)
|
|
..add(const WelcomeEvent.initial()),
|
|
child: BlocBuilder<WelcomeBloc, WelcomeState>(
|
|
builder: (context, state) {
|
|
return Scaffold(
|
|
body: Padding(
|
|
padding: const EdgeInsets.all(60.0),
|
|
child: Column(
|
|
children: [
|
|
_renderBody(state),
|
|
_renderCreateButton(context),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _renderBody(WelcomeState state) {
|
|
final body = state.successOrFailure.fold(
|
|
(_) => _renderList(state.workspaces),
|
|
(error) => FlowyErrorPage(error.toString()),
|
|
);
|
|
return body;
|
|
}
|
|
|
|
Widget _renderCreateButton(BuildContext context) {
|
|
return SizedBox(
|
|
width: 200,
|
|
height: 40,
|
|
child: FlowyTextButton(
|
|
"Create workspace",
|
|
fontSize: 14,
|
|
onPressed: () {
|
|
context
|
|
.read<WelcomeBloc>()
|
|
.add(const WelcomeEvent.createWorkspace("workspace", ""));
|
|
},
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _renderList(List<Workspace> workspaces) {
|
|
return Expanded(
|
|
child: StyledListView(
|
|
itemBuilder: (BuildContext context, int index) {
|
|
final workspace = workspaces[index];
|
|
return WorkspaceItem(
|
|
workspace: workspace,
|
|
onPressed: (workspace) => _handleOnPress(context, workspace),
|
|
);
|
|
},
|
|
itemCount: workspaces.length,
|
|
),
|
|
);
|
|
}
|
|
|
|
void _handleOnPress(BuildContext context, Workspace workspace) {
|
|
context.read<WelcomeBloc>().add(WelcomeEvent.openWorkspace(workspace));
|
|
|
|
Navigator.of(context).pop(workspace.id);
|
|
}
|
|
}
|
|
|
|
class WorkspaceItem extends StatelessWidget {
|
|
final Workspace workspace;
|
|
final void Function(Workspace workspace) onPressed;
|
|
const WorkspaceItem(
|
|
{Key? key, required this.workspace, required this.onPressed})
|
|
: super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SizedBox(
|
|
height: 46,
|
|
child: FlowyTextButton(
|
|
workspace.name,
|
|
fontSize: 14,
|
|
onPressed: () => onPressed(workspace),
|
|
),
|
|
);
|
|
}
|
|
}
|