2022-08-10 09:59:28 +00:00
|
|
|
library document_plugin;
|
2022-03-01 08:05:45 +00:00
|
|
|
|
2022-05-17 18:25:35 +00:00
|
|
|
import 'package:app_flowy/generated/locale_keys.g.dart';
|
2022-09-22 05:08:48 +00:00
|
|
|
import 'package:app_flowy/plugins/util.dart';
|
2022-08-09 02:35:27 +00:00
|
|
|
import 'package:app_flowy/startup/plugin/plugin.dart';
|
2021-10-28 13:55:22 +00:00
|
|
|
import 'package:app_flowy/startup/startup.dart';
|
2022-11-15 02:46:26 +00:00
|
|
|
import 'package:app_flowy/plugins/document/application/share_bloc.dart';
|
2022-03-01 08:05:45 +00:00
|
|
|
import 'package:app_flowy/workspace/presentation/home/home_stack.dart';
|
2022-06-09 08:25:38 +00:00
|
|
|
import 'package:app_flowy/workspace/presentation/home/toast.dart';
|
2022-08-09 02:35:27 +00:00
|
|
|
import 'package:app_flowy/workspace/presentation/widgets/left_bar_item.dart';
|
2021-11-10 07:09:24 +00:00
|
|
|
import 'package:app_flowy/workspace/presentation/widgets/dialogs.dart';
|
2021-11-09 15:13:04 +00:00
|
|
|
import 'package:app_flowy/workspace/presentation/widgets/pop_up_action.dart';
|
2022-10-08 09:10:04 +00:00
|
|
|
import 'package:appflowy_popover/appflowy_popover.dart';
|
2022-05-17 18:25:35 +00:00
|
|
|
import 'package:clipboard/clipboard.dart';
|
2021-12-07 17:31:23 +00:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
2022-10-23 07:05:51 +00:00
|
|
|
import 'package:file_picker/file_picker.dart';
|
2021-11-09 15:13:04 +00:00
|
|
|
import 'package:flowy_infra_ui/widget/rounded_button.dart';
|
2022-02-19 05:52:52 +00:00
|
|
|
import 'package:flowy_sdk/log.dart';
|
2021-12-14 10:04:51 +00:00
|
|
|
import 'package:flowy_sdk/protobuf/flowy-error/errors.pb.dart';
|
2022-07-04 07:00:54 +00:00
|
|
|
import 'package:flowy_sdk/protobuf/flowy-folder/view.pb.dart';
|
2022-10-13 15:29:37 +00:00
|
|
|
import 'package:flowy_sdk/protobuf/flowy-document/entities.pb.dart';
|
2021-07-24 06:05:49 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2021-11-10 06:46:59 +00:00
|
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
2021-07-24 06:05:49 +00:00
|
|
|
|
2022-08-09 02:35:27 +00:00
|
|
|
import 'document_page.dart';
|
2022-05-17 18:25:35 +00:00
|
|
|
|
2022-03-01 03:22:39 +00:00
|
|
|
class DocumentPluginBuilder extends PluginBuilder {
|
2022-02-28 14:38:53 +00:00
|
|
|
@override
|
|
|
|
Plugin build(dynamic data) {
|
2022-07-19 06:11:29 +00:00
|
|
|
if (data is ViewPB) {
|
2022-02-28 14:38:53 +00:00
|
|
|
return DocumentPlugin(pluginType: pluginType, view: data);
|
|
|
|
} else {
|
|
|
|
throw FlowyPluginException.invalidData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2022-05-17 18:25:35 +00:00
|
|
|
String get menuName => LocaleKeys.document_menuName.tr();
|
2022-02-28 14:38:53 +00:00
|
|
|
|
2022-11-15 03:45:23 +00:00
|
|
|
@override
|
|
|
|
String get menuIcon => "editor/documents";
|
|
|
|
|
2022-02-28 14:38:53 +00:00
|
|
|
@override
|
2022-08-18 11:32:08 +00:00
|
|
|
PluginType get pluginType => PluginType.editor;
|
2022-02-28 14:38:53 +00:00
|
|
|
|
|
|
|
@override
|
2022-10-22 13:57:44 +00:00
|
|
|
ViewDataFormatPB get dataFormatType => ViewDataFormatPB.TreeFormat;
|
2022-02-28 14:38:53 +00:00
|
|
|
}
|
|
|
|
|
2022-09-22 05:08:48 +00:00
|
|
|
class DocumentPlugin extends Plugin<int> {
|
2022-02-28 14:38:53 +00:00
|
|
|
late PluginType _pluginType;
|
2021-10-28 13:55:22 +00:00
|
|
|
|
2021-10-10 07:58:57 +00:00
|
|
|
@override
|
2022-09-22 05:08:48 +00:00
|
|
|
final ViewPluginNotifier notifier;
|
|
|
|
|
|
|
|
DocumentPlugin({
|
|
|
|
required PluginType pluginType,
|
|
|
|
required ViewPB view,
|
|
|
|
Key? key,
|
|
|
|
}) : notifier = ViewPluginNotifier(view: view) {
|
|
|
|
_pluginType = pluginType;
|
2022-02-28 14:38:53 +00:00
|
|
|
}
|
2021-11-09 15:13:04 +00:00
|
|
|
|
|
|
|
@override
|
2022-09-22 05:08:48 +00:00
|
|
|
PluginDisplay get display => DocumentPluginDisplay(notifier: notifier);
|
2021-11-09 15:13:04 +00:00
|
|
|
|
2021-10-10 07:58:57 +00:00
|
|
|
@override
|
2022-03-02 03:38:22 +00:00
|
|
|
PluginType get ty => _pluginType;
|
2022-02-28 14:38:53 +00:00
|
|
|
|
|
|
|
@override
|
2022-09-22 05:08:48 +00:00
|
|
|
PluginId get id => notifier.view.id;
|
2022-02-28 14:38:53 +00:00
|
|
|
}
|
|
|
|
|
2022-09-22 05:08:48 +00:00
|
|
|
class DocumentPluginDisplay extends PluginDisplay with NavigationItem {
|
|
|
|
final ViewPluginNotifier notifier;
|
|
|
|
ViewPB get view => notifier.view;
|
2022-09-26 08:59:58 +00:00
|
|
|
int? deletedViewIndex;
|
2022-02-28 14:38:53 +00:00
|
|
|
|
2022-09-22 05:08:48 +00:00
|
|
|
DocumentPluginDisplay({required this.notifier, Key? key});
|
2021-10-10 07:58:57 +00:00
|
|
|
|
|
|
|
@override
|
2022-09-26 08:59:58 +00:00
|
|
|
Widget buildWidget(PluginContext context) {
|
|
|
|
notifier.isDeleted.addListener(() {
|
|
|
|
notifier.isDeleted.value.fold(() => null, (deletedView) {
|
|
|
|
if (deletedView.hasIndex()) {
|
|
|
|
deletedViewIndex = deletedView.index;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
return DocumentPage(
|
|
|
|
view: view,
|
|
|
|
onDeleted: () => context.onDeleted(view, deletedViewIndex),
|
|
|
|
key: ValueKey(view.id),
|
|
|
|
);
|
|
|
|
}
|
2021-10-10 09:01:30 +00:00
|
|
|
|
|
|
|
@override
|
2022-09-22 05:08:48 +00:00
|
|
|
Widget get leftBarItem => ViewLeftBarItem(view: view);
|
2021-10-28 13:55:22 +00:00
|
|
|
|
|
|
|
@override
|
2022-09-22 05:08:48 +00:00
|
|
|
Widget? get rightBarItem => DocumentShareButton(view: view);
|
2022-02-28 14:38:53 +00:00
|
|
|
|
|
|
|
@override
|
2022-03-20 09:17:06 +00:00
|
|
|
List<NavigationItem> get navigationItems => [this];
|
2021-11-10 10:26:38 +00:00
|
|
|
}
|
|
|
|
|
2022-01-29 14:22:34 +00:00
|
|
|
class DocumentShareButton extends StatelessWidget {
|
2022-07-19 06:11:29 +00:00
|
|
|
final ViewPB view;
|
2022-08-09 02:35:27 +00:00
|
|
|
DocumentShareButton({Key? key, required this.view})
|
|
|
|
: super(key: ValueKey(view.hashCode));
|
2021-11-09 15:13:04 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2021-11-10 06:46:59 +00:00
|
|
|
return BlocProvider(
|
|
|
|
create: (context) => getIt<DocShareBloc>(param1: view),
|
|
|
|
child: BlocListener<DocShareBloc, DocShareState>(
|
|
|
|
listener: (context, state) {
|
|
|
|
state.map(
|
|
|
|
initial: (_) {},
|
|
|
|
loading: (_) {},
|
|
|
|
finish: (state) {
|
|
|
|
state.successOrFail.fold(
|
|
|
|
_handleExportData,
|
|
|
|
_handleExportError,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
child: BlocBuilder<DocShareBloc, DocShareState>(
|
2022-11-10 06:22:18 +00:00
|
|
|
builder: (context, state) => ConstrainedBox(
|
|
|
|
constraints: const BoxConstraints.expand(
|
|
|
|
height: 30,
|
|
|
|
width: 100,
|
|
|
|
),
|
|
|
|
child: ShareActionList(view: view),
|
|
|
|
),
|
2021-11-10 06:46:59 +00:00
|
|
|
),
|
|
|
|
),
|
2021-11-09 15:13:04 +00:00
|
|
|
);
|
|
|
|
}
|
2021-07-24 14:27:24 +00:00
|
|
|
|
2022-07-18 03:58:39 +00:00
|
|
|
void _handleExportData(ExportDataPB exportData) {
|
2021-11-10 06:46:59 +00:00
|
|
|
switch (exportData.exportType) {
|
|
|
|
case ExportType.Link:
|
|
|
|
break;
|
|
|
|
case ExportType.Markdown:
|
2022-08-09 02:35:27 +00:00
|
|
|
FlutterClipboard.copy(exportData.data)
|
|
|
|
.then((value) => Log.info('copied to clipboard'));
|
2021-11-10 06:46:59 +00:00
|
|
|
break;
|
|
|
|
case ExportType.Text:
|
|
|
|
break;
|
|
|
|
}
|
2021-07-24 14:27:24 +00:00
|
|
|
}
|
|
|
|
|
2021-12-14 10:04:51 +00:00
|
|
|
void _handleExportError(FlowyError error) {}
|
2022-10-08 09:10:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class ShareActionList extends StatelessWidget {
|
2022-10-23 07:05:51 +00:00
|
|
|
const ShareActionList({
|
|
|
|
Key? key,
|
|
|
|
required this.view,
|
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
final ViewPB view;
|
2021-11-10 06:46:59 +00:00
|
|
|
|
2022-10-08 09:10:04 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2022-10-23 07:05:51 +00:00
|
|
|
final docShareBloc = context.read<DocShareBloc>();
|
2022-10-08 09:10:04 +00:00
|
|
|
return PopoverActionList<ShareActionWrapper>(
|
|
|
|
direction: PopoverDirection.bottomWithCenterAligned,
|
|
|
|
actions: ShareAction.values
|
|
|
|
.map((action) => ShareActionWrapper(action))
|
|
|
|
.toList(),
|
2022-10-08 12:48:14 +00:00
|
|
|
buildChild: (controller) {
|
2022-10-08 09:10:04 +00:00
|
|
|
return RoundedTextButton(
|
|
|
|
title: LocaleKeys.shareAction_buttonText.tr(),
|
|
|
|
onPressed: () => controller.show(),
|
|
|
|
);
|
|
|
|
},
|
2022-10-23 07:05:51 +00:00
|
|
|
onSelected: (action, controller) async {
|
2022-10-08 09:10:04 +00:00
|
|
|
switch (action.inner) {
|
2021-11-10 06:46:59 +00:00
|
|
|
case ShareAction.markdown:
|
2022-10-23 07:05:51 +00:00
|
|
|
final exportPath = await FilePicker.platform.saveFile(
|
|
|
|
dialogTitle: '',
|
|
|
|
fileName: '${view.name}.md',
|
|
|
|
);
|
|
|
|
if (exportPath != null) {
|
|
|
|
docShareBloc.add(DocShareEvent.shareMarkdown(exportPath));
|
|
|
|
showMessageToast('Exported to: $exportPath');
|
|
|
|
}
|
2021-11-10 06:46:59 +00:00
|
|
|
break;
|
|
|
|
case ShareAction.copyLink:
|
2022-09-15 08:05:55 +00:00
|
|
|
NavigatorAlertDialog(
|
|
|
|
title: LocaleKeys.shareAction_workInProgress.tr())
|
2022-08-09 02:35:27 +00:00
|
|
|
.show(context);
|
2021-11-10 06:46:59 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-10-08 09:10:04 +00:00
|
|
|
controller.close();
|
|
|
|
},
|
2021-11-10 06:46:59 +00:00
|
|
|
);
|
2021-07-24 14:27:24 +00:00
|
|
|
}
|
2021-07-24 06:05:49 +00:00
|
|
|
}
|
2021-11-09 15:13:04 +00:00
|
|
|
|
|
|
|
enum ShareAction {
|
|
|
|
markdown,
|
|
|
|
copyLink,
|
|
|
|
}
|
|
|
|
|
2022-10-08 09:10:04 +00:00
|
|
|
class ShareActionWrapper extends ActionCell {
|
2021-11-09 15:13:04 +00:00
|
|
|
final ShareAction inner;
|
|
|
|
|
|
|
|
ShareActionWrapper(this.inner);
|
|
|
|
|
|
|
|
@override
|
2022-11-26 13:28:08 +00:00
|
|
|
Widget? leftIcon(Color iconColor) => null;
|
2021-11-09 15:13:04 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
String get name => inner.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
extension QuestionBubbleExtension on ShareAction {
|
|
|
|
String get name {
|
|
|
|
switch (this) {
|
|
|
|
case ShareAction.markdown:
|
2021-12-07 17:31:23 +00:00
|
|
|
return LocaleKeys.shareAction_markdown.tr();
|
2021-11-09 15:13:04 +00:00
|
|
|
case ShareAction.copyLink:
|
2021-12-07 17:31:23 +00:00
|
|
|
return LocaleKeys.shareAction_copyLink.tr();
|
2021-11-09 15:13:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|