97 lines
2.8 KiB
Dart
Raw Normal View History

import 'dart:convert';
import 'package:editor/flutter_quill.dart';
import 'package:flowy_log/flowy_log.dart';
2021-09-11 21:30:58 +08:00
import 'package:flowy_sdk/protobuf/flowy-workspace/errors.pb.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
2021-07-24 18:55:13 +08:00
import 'package:app_flowy/workspace/domain/i_doc.dart';
import 'package:freezed_annotation/freezed_annotation.dart';
2021-10-19 13:56:11 +08:00
import 'package:dartz/dartz.dart';
import 'dart:async';
2021-07-24 18:55:13 +08:00
part 'doc_bloc.freezed.dart';
class DocBloc extends Bloc<DocEvent, DocState> {
2021-10-19 13:56:11 +08:00
final IDoc docManager;
late Document document;
late StreamSubscription _subscription;
2021-07-24 18:55:13 +08:00
2021-10-19 13:56:11 +08:00
DocBloc({required this.docManager}) : super(DocState.initial());
2021-07-24 18:55:13 +08:00
@override
Stream<DocState> mapEventToState(DocEvent event) async* {
yield* event.map(initial: _initial);
2021-07-24 18:55:13 +08:00
}
2021-09-11 21:30:58 +08:00
2021-10-19 13:56:11 +08:00
@override
Future<void> close() async {
await _subscription.cancel();
2021-10-19 13:56:11 +08:00
docManager.closeDoc();
return super.close();
}
Stream<DocState> _initial(Initial value) async* {
final result = await docManager.readDoc();
yield result.fold(
2021-09-11 21:30:58 +08:00
(doc) {
document = _decodeJsonToDocument(doc.data);
_subscription = document.changes.listen((event) {
final delta = event.item2;
final documentDelta = document.toDelta();
_composeDelta(delta, documentDelta);
});
return state.copyWith(loadState: DocLoadState.finish(left(unit)));
2021-09-11 21:30:58 +08:00
},
2021-10-19 13:56:11 +08:00
(err) {
return state.copyWith(loadState: DocLoadState.finish(right(err)));
2021-09-11 21:30:58 +08:00
},
);
}
2021-10-10 11:40:45 +08:00
// Document _decodeListToDocument(Uint8List data) {
// final json = jsonDecode(utf8.decode(data));
// final document = Document.fromJson(json);
// return document;
// }
void _composeDelta(Delta composedDelta, Delta documentDelta) async {
final json = jsonEncode(composedDelta.toJson());
Log.debug("Send json: $json");
final result = await docManager.composeDelta(json: json);
result.fold((rustDoc) {
// final json = utf8.decode(doc.data);
final rustDelta = Delta.fromJson(jsonDecode(rustDoc.data));
if (documentDelta != rustDelta) {
Log.error("Receive : $rustDelta");
Log.error("Expected : $documentDelta");
}
}, (r) => null);
}
Document _decodeJsonToDocument(String data) {
final json = jsonDecode(data);
final document = Document.fromJson(json);
return document;
}
2021-07-24 18:55:13 +08:00
}
@freezed
2021-09-11 21:30:58 +08:00
class DocEvent with _$DocEvent {
2021-10-19 13:56:11 +08:00
const factory DocEvent.initial() = Initial;
2021-07-24 18:55:13 +08:00
}
@freezed
2021-09-11 21:30:58 +08:00
class DocState with _$DocState {
const factory DocState({
required DocLoadState loadState,
}) = _DocState;
2021-10-19 13:56:11 +08:00
factory DocState.initial() => const DocState(loadState: _Loading());
2021-10-19 13:56:11 +08:00
}
@freezed
class DocLoadState with _$DocLoadState {
const factory DocLoadState.loading() = _Loading;
const factory DocLoadState.finish(Either<Unit, WorkspaceError> successOrFail) = _Finish;
2021-07-24 18:55:13 +08:00
}