Skip to content

Commit ee40436

Browse files
richardshiueLucasXu0
authored andcommitted
fix: row document images (#7322)
* fix: row document images * fix: calendar * chore: fallback to documentbloc
1 parent 58ea654 commit ee40436

File tree

9 files changed

+54
-32
lines changed

9 files changed

+54
-32
lines changed

frontend/appflowy_flutter/lib/plugins/database/board/presentation/board_page.dart

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import 'dart:io';
22

33
import 'package:appflowy/util/field_type_extension.dart';
4+
import 'package:appflowy/workspace/application/user/user_workspace_bloc.dart';
45
import 'package:flutter/material.dart' hide Card;
56
import 'package:flutter/services.dart';
67

@@ -856,10 +857,13 @@ void _openCard({
856857

857858
FlowyOverlay.show(
858859
context: context,
859-
builder: (_) => RowDetailPage(
860-
databaseController: databaseController,
861-
rowController: rowController,
862-
userProfile: context.read<BoardBloc>().userProfile,
860+
builder: (_) => BlocProvider.value(
861+
value: context.read<UserWorkspaceBloc>(),
862+
child: RowDetailPage(
863+
databaseController: databaseController,
864+
rowController: rowController,
865+
userProfile: context.read<BoardBloc>().userProfile,
866+
),
863867
),
864868
);
865869
}

frontend/appflowy_flutter/lib/plugins/database/board/presentation/widgets/board_hidden_groups.dart

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import 'dart:io';
22

3+
import 'package:appflowy/workspace/application/user/user_workspace_bloc.dart';
34
import 'package:flutter/material.dart';
45

56
import 'package:appflowy/generated/flowy_svgs.g.dart';
@@ -426,10 +427,13 @@ class HiddenGroupPopupItemList extends StatelessWidget {
426427
onPressed: () {
427428
FlowyOverlay.show(
428429
context: context,
429-
builder: (_) => RowDetailPage(
430-
databaseController: databaseController,
431-
rowController: rowController,
432-
userProfile: context.read<BoardBloc>().userProfile,
430+
builder: (_) => BlocProvider.value(
431+
value: context.read<UserWorkspaceBloc>(),
432+
child: RowDetailPage(
433+
databaseController: databaseController,
434+
rowController: rowController,
435+
userProfile: context.read<BoardBloc>().userProfile,
436+
),
433437
),
434438
);
435439
PopoverContainer.of(context).close();

frontend/appflowy_flutter/lib/plugins/database/calendar/presentation/calendar_event_card.dart

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import 'package:appflowy/plugins/database/application/row/row_controller.dart';
22
import 'package:appflowy/plugins/database/widgets/row/row_detail.dart';
3+
import 'package:appflowy/workspace/application/user/user_workspace_bloc.dart';
34
import 'package:flutter/material.dart';
45

56
import 'package:appflowy/mobile/presentation/database/card/card_detail/mobile_card_detail_screen.dart';
@@ -178,10 +179,13 @@ class _EventCardState extends State<EventCard> {
178179

179180
FlowyOverlay.show(
180181
context: context,
181-
builder: (_) => RowDetailPage(
182-
databaseController: widget.databaseController,
183-
rowController: rowController,
184-
userProfile: context.read<CalendarBloc>().userProfile,
182+
builder: (_) => BlocProvider.value(
183+
value: context.read<UserWorkspaceBloc>(),
184+
child: RowDetailPage(
185+
databaseController: widget.databaseController,
186+
rowController: rowController,
187+
userProfile: context.read<CalendarBloc>().userProfile,
188+
),
185189
),
186190
);
187191
},

frontend/appflowy_flutter/lib/plugins/database/calendar/presentation/calendar_page.dart

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import 'package:appflowy/plugins/database/grid/presentation/grid_page.dart';
22
import 'package:appflowy/plugins/database/tab_bar/desktop/setting_menu.dart';
3+
import 'package:appflowy/workspace/application/user/user_workspace_bloc.dart';
34
import 'package:appflowy_backend/protobuf/flowy-database2/protobuf.dart';
45
import 'package:flutter/material.dart';
56

@@ -13,7 +14,6 @@ import 'package:appflowy/plugins/database/calendar/application/calendar_bloc.dar
1314
import 'package:appflowy/plugins/database/calendar/application/unschedule_event_bloc.dart';
1415
import 'package:appflowy/plugins/database/grid/presentation/layout/sizes.dart';
1516
import 'package:appflowy/plugins/database/tab_bar/tab_bar_view.dart';
16-
import 'package:appflowy/workspace/application/view/view_bloc.dart';
1717
import 'package:appflowy_backend/protobuf/flowy-folder/view.pb.dart';
1818
import 'package:calendar_view/calendar_view.dart';
1919
import 'package:easy_localization/easy_localization.dart';
@@ -390,7 +390,7 @@ void showEventDetails({
390390
context: context,
391391
builder: (BuildContext overlayContext) {
392392
return BlocProvider.value(
393-
value: context.read<ViewBloc>(),
393+
value: context.read<UserWorkspaceBloc>(),
394394
child: RowDetailPage(
395395
rowController: rowController,
396396
databaseController: databaseController,
@@ -457,14 +457,18 @@ class _UnscheduledEventsButtonState extends State<UnscheduledEventsButton> {
457457
),
458458
),
459459
),
460-
popupBuilder: (_) => BlocProvider.value(
461-
value: context.read<CalendarBloc>(),
462-
child: BlocProvider.value(
463-
value: context.read<ViewBloc>(),
464-
child: UnscheduleEventsList(
465-
databaseController: widget.databaseController,
466-
unscheduleEvents: state.unscheduleEvents,
460+
popupBuilder: (_) => MultiBlocProvider(
461+
providers: [
462+
BlocProvider.value(
463+
value: context.read<CalendarBloc>(),
467464
),
465+
BlocProvider.value(
466+
value: context.read<UserWorkspaceBloc>(),
467+
),
468+
],
469+
child: UnscheduleEventsList(
470+
databaseController: widget.databaseController,
471+
unscheduleEvents: state.unscheduleEvents,
468472
),
469473
),
470474
);

frontend/appflowy_flutter/lib/plugins/database/grid/presentation/grid_page.dart

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import 'dart:async';
22

33
import 'package:appflowy/plugins/database/grid/presentation/widgets/toolbar/grid_setting_bar.dart';
44
import 'package:appflowy/plugins/database/tab_bar/desktop/setting_menu.dart';
5+
import 'package:appflowy/workspace/application/user/user_workspace_bloc.dart';
56
import 'package:flutter/material.dart';
67

78
import 'package:appflowy/generated/locale_keys.g.dart';
@@ -13,7 +14,6 @@ import 'package:appflowy/plugins/database/widgets/cell/editable_cell_builder.dar
1314
import 'package:appflowy/shared/flowy_error_page.dart';
1415
import 'package:appflowy/workspace/application/action_navigation/action_navigation_bloc.dart';
1516
import 'package:appflowy/workspace/application/action_navigation/navigation_action.dart';
16-
import 'package:appflowy/workspace/application/view/view_bloc.dart';
1717
import 'package:appflowy/workspace/presentation/widgets/dialogs.dart';
1818
import 'package:appflowy_backend/log.dart';
1919
import 'package:appflowy_backend/protobuf/flowy-folder/view.pb.dart';
@@ -196,7 +196,7 @@ class _GridPageState extends State<GridPage> {
196196
FlowyOverlay.show(
197197
context: context,
198198
builder: (_) => BlocProvider.value(
199-
value: context.read<ViewBloc>(),
199+
value: context.read<UserWorkspaceBloc>(),
200200
child: RowDetailPage(
201201
databaseController: context.read<GridBloc>().databaseController,
202202
rowController: rowController,
@@ -233,7 +233,7 @@ class _GridPageState extends State<GridPage> {
233233
FlowyOverlay.show(
234234
context: context,
235235
builder: (_) => BlocProvider.value(
236-
value: context.read<ViewBloc>(),
236+
value: context.read<UserWorkspaceBloc>(),
237237
child: RowDetailPage(
238238
databaseController:
239239
context.read<GridBloc>().databaseController,
@@ -559,7 +559,7 @@ class _GridRowsState extends State<_GridRows> {
559559
}
560560

561561
return BlocProvider.value(
562-
value: context.read<ViewBloc>(),
562+
value: context.read<UserWorkspaceBloc>(),
563563
child: RowDetailPage(
564564
rowController: RowController(
565565
viewId: viewId,

frontend/appflowy_flutter/lib/plugins/database/widgets/row/relation_row_detail.dart

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import 'package:appflowy/plugins/database/application/row/related_row_detail_bloc.dart';
2+
import 'package:appflowy/workspace/application/user/user_workspace_bloc.dart';
23
import 'package:flutter/widgets.dart';
34
import 'package:flutter_bloc/flutter_bloc.dart';
45

@@ -26,10 +27,13 @@ class RelatedRowDetailPage extends StatelessWidget {
2627
return state.when(
2728
loading: () => const SizedBox.shrink(),
2829
ready: (databaseController, rowController) {
29-
return RowDetailPage(
30-
databaseController: databaseController,
31-
rowController: rowController,
32-
allowOpenAsFullPage: false,
30+
return BlocProvider.value(
31+
value: context.read<UserWorkspaceBloc>(),
32+
child: RowDetailPage(
33+
databaseController: databaseController,
34+
rowController: rowController,
35+
allowOpenAsFullPage: false,
36+
),
3337
);
3438
},
3539
);

frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/image/custom_image_block_component/image_menu.dart

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import 'dart:ui';
22

33
import 'package:appflowy/generated/flowy_svgs.g.dart';
44
import 'package:appflowy/generated/locale_keys.g.dart';
5+
import 'package:appflowy/plugins/document/application/document_bloc.dart';
56
import 'package:appflowy/plugins/document/presentation/editor_plugins/block_menu/block_menu_button.dart';
67
import 'package:appflowy/plugins/document/presentation/editor_plugins/copy_and_paste/clipboard_service.dart';
78
import 'package:appflowy/plugins/document/presentation/editor_plugins/image/common.dart';
@@ -145,7 +146,8 @@ class _ImageMenuState extends State<ImageMenu> {
145146
showDialog(
146147
context: context,
147148
builder: (_) => InteractiveImageViewer(
148-
userProfile: context.read<UserWorkspaceBloc>().userProfile,
149+
userProfile: context.read<UserWorkspaceBloc?>()?.userProfile ??
150+
context.read<DocumentBloc>().state.userProfilePB,
149151
imageProvider: AFBlockImageProvider(
150152
images: [
151153
ImageBlockData(

frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/image/multi_image_block_component/layouts/image_browser_layout.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ class _ImageBrowserLayoutState extends State<ImageBrowserLayout> {
5454
@override
5555
void initState() {
5656
super.initState();
57-
_userProfile = context.read<UserWorkspaceBloc?>()?.userProfile;
57+
_userProfile = context.read<UserWorkspaceBloc?>()?.userProfile ??
58+
context.read<DocumentBloc>().state.userProfilePB;
5859
}
5960

6061
@override

frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/image/resizeable_image.dart

-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ class _ResizableImageState extends State<ResizableImage> {
7373

7474
imageWidth = widget.width;
7575

76-
// read the user profile from the user workspace bloc or the document bloc
7776
_userProfilePB = context.read<UserWorkspaceBloc?>()?.userProfile ??
7877
context.read<DocumentBloc>().state.userProfilePB;
7978
}

0 commit comments

Comments
 (0)