Merge pull request #73 from SyncrowIOT/bugfix/edit-space

Bugfix/edit space
This commit is contained in:
hannathkadher
2025-01-29 12:46:19 +04:00
committed by GitHub
20 changed files with 545 additions and 310 deletions

View File

@ -4,7 +4,9 @@ import 'package:syncrow_web/pages/spaces_management/all_spaces/model/create_subs
import 'package:syncrow_web/pages/spaces_management/all_spaces/model/space_model.dart';
import 'package:syncrow_web/pages/spaces_management/all_spaces/model/space_response_model.dart';
import 'package:syncrow_web/pages/spaces_management/space_model/models/create_space_template_body_model.dart';
import 'package:syncrow_web/pages/spaces_management/space_model/models/space_template_model.dart';
import 'package:syncrow_web/pages/spaces_management/space_model/models/tag_body_model.dart';
import 'package:syncrow_web/pages/spaces_management/space_model/models/tag_update_model.dart';
import 'package:syncrow_web/services/api/http_service.dart';
import 'package:syncrow_web/utils/constants/api_const.dart';
import 'package:syncrow_web/utils/constants/temp_const.dart';
@ -154,7 +156,7 @@ class CommunitySpaceManagementApi {
.replaceAll('{spaceId}', spaceId)
.replaceAll('{projectId}', TempConst.projectId),
expectedResponseModel: (json) {
return SpaceModel.fromJson(json);
return SpaceModel.fromJson(json['data']);
},
);
return response;
@ -210,7 +212,7 @@ class CommunitySpaceManagementApi {
}
}
Future<SpaceModel?> updateSpace({
Future<bool> updateSpace({
required String communityId,
required spaceId,
required String name,
@ -219,6 +221,8 @@ class CommunitySpaceManagementApi {
String? direction,
bool isPrivate = false,
required Offset position,
List<TagModelUpdate>? tags,
List<UpdateSubspaceTemplateModel>? subspaces,
}) async {
try {
final body = {
@ -228,6 +232,8 @@ class CommunitySpaceManagementApi {
'y': position.dy,
'direction': direction,
'icon': icon,
'subspace': subspaces,
'tags': tags,
};
if (parentId != null) {
body['parentUuid'] = parentId;
@ -240,13 +246,13 @@ class CommunitySpaceManagementApi {
.replaceAll('{projectId}', TempConst.projectId),
body: body,
expectedResponseModel: (json) {
return SpaceModel.fromJson(json['data']);
return json['success'] ?? false;
},
);
return response;
} catch (e) {
debugPrint('Error creating space: $e');
return null;
debugPrint('Error updating space: $e');
return false;
}
}