mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-10-27 08:03:56 +00:00
28 lines
777 B
Dart
28 lines
777 B
Dart
|
|
import 'package:app_flowy/workspace/domain/i_share.dart';
|
||
|
|
import 'package:flowy_sdk/protobuf/flowy-workspace-infra/protobuf.dart';
|
||
|
|
import 'package:flowy_sdk/protobuf/flowy-workspace/errors.pb.dart';
|
||
|
|
import 'package:dartz/dartz.dart';
|
||
|
|
|
||
|
|
import 'repos/share_repo.dart';
|
||
|
|
|
||
|
|
class IShareImpl extends IShare {
|
||
|
|
ShareRepo repo;
|
||
|
|
|
||
|
|
IShareImpl({required this.repo});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Future<Either<ExportData, WorkspaceError>> exportText(String docId) {
|
||
|
|
return repo.export(docId, ExportType.Text);
|
||
|
|
}
|
||
|
|
|
||
|
|
@override
|
||
|
|
Future<Either<ExportData, WorkspaceError>> exportMarkdown(String docId) {
|
||
|
|
return repo.export(docId, ExportType.Markdown);
|
||
|
|
}
|
||
|
|
|
||
|
|
@override
|
||
|
|
Future<Either<ExportData, WorkspaceError>> exportURL(String docId) {
|
||
|
|
return repo.export(docId, ExportType.Link);
|
||
|
|
}
|
||
|
|
}
|