2024-07-22 13:35:42 +08:00
|
|
|
import 'package:appflowy/generated/locale_keys.g.dart';
|
|
|
|
import 'package:appflowy/plugins/database/application/tab_bar_bloc.dart';
|
|
|
|
import 'package:appflowy/plugins/shared/share/_shared.dart';
|
|
|
|
import 'package:appflowy/plugins/shared/share/share_bloc.dart';
|
|
|
|
import 'package:appflowy/plugins/shared/share/share_menu.dart';
|
|
|
|
import 'package:appflowy/startup/startup.dart';
|
|
|
|
import 'package:appflowy/workspace/application/view/view_ext.dart';
|
|
|
|
import 'package:appflowy/workspace/presentation/widgets/dialogs.dart';
|
|
|
|
import 'package:appflowy_backend/protobuf/flowy-error/errors.pb.dart';
|
|
|
|
import 'package:appflowy_backend/protobuf/flowy-folder/view.pb.dart';
|
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
|
|
|
|
class ShareButton extends StatelessWidget {
|
|
|
|
const ShareButton({
|
|
|
|
super.key,
|
|
|
|
required this.view,
|
|
|
|
});
|
|
|
|
|
|
|
|
final ViewPB view;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MultiBlocProvider(
|
|
|
|
providers: [
|
|
|
|
BlocProvider(
|
|
|
|
create: (context) =>
|
|
|
|
getIt<ShareBloc>(param1: view)..add(const ShareEvent.initial()),
|
|
|
|
),
|
|
|
|
if (view.layout.isDatabaseView)
|
|
|
|
BlocProvider(
|
|
|
|
create: (context) => DatabaseTabBarBloc(view: view)
|
|
|
|
..add(const DatabaseTabBarEvent.initial()),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
child: BlocListener<ShareBloc, ShareState>(
|
|
|
|
listener: (context, state) {
|
|
|
|
if (!state.isLoading && state.exportResult != null) {
|
|
|
|
state.exportResult!.fold(
|
|
|
|
(data) => _handleExportSuccess(context, data),
|
|
|
|
(error) => _handleExportError(context, error),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
child: BlocBuilder<ShareBloc, ShareState>(
|
|
|
|
builder: (context, state) {
|
|
|
|
final tabs = [
|
2024-10-03 14:31:04 +08:00
|
|
|
if (state.enablePublish) ...[
|
|
|
|
// share the same permission with publish
|
|
|
|
ShareMenuTab.share,
|
|
|
|
ShareMenuTab.publish,
|
|
|
|
],
|
2024-07-22 13:35:42 +08:00
|
|
|
ShareMenuTab.exportAs,
|
|
|
|
];
|
|
|
|
|
|
|
|
return ShareMenuButton(tabs: tabs);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _handleExportSuccess(BuildContext context, ShareType shareType) {
|
|
|
|
switch (shareType) {
|
|
|
|
case ShareType.markdown:
|
|
|
|
case ShareType.html:
|
|
|
|
case ShareType.csv:
|
|
|
|
showToastNotification(
|
|
|
|
context,
|
|
|
|
message: LocaleKeys.settings_files_exportFileSuccess.tr(),
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _handleExportError(BuildContext context, FlowyError error) {
|
|
|
|
showToastNotification(
|
|
|
|
context,
|
|
|
|
message:
|
|
|
|
'${LocaleKeys.settings_files_exportFileFail.tr()}: ${error.code}',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|