TF-4233 Implement edit label action

This commit is contained in:
dab246
2026-01-05 16:36:06 +07:00
committed by Dat H. Pham
parent 0302e09981
commit bac101021e
17 changed files with 376 additions and 66 deletions
@@ -1,9 +1,11 @@
import 'package:jmap_dart_client/http/http_client.dart';
import 'package:jmap_dart_client/jmap/account_id.dart';
import 'package:jmap_dart_client/jmap/core/id.dart';
import 'package:jmap_dart_client/jmap/core/patch_object.dart';
import 'package:jmap_dart_client/jmap/jmap_request.dart';
import 'package:labels/labels.dart';
import 'package:tmail_ui_user/features/base/mixin/handle_error_mixin.dart';
import 'package:tmail_ui_user/features/labels/domain/model/edit_label_request.dart';
import 'package:uuid/uuid.dart';
class LabelApi with HandleSetErrorMixin {
@@ -57,4 +59,40 @@ class LabelApi with HandleSetErrorMixin {
throw parseErrorForSetResponse(response, generateCreateId);
}
}
Future<Label> editLabel(
AccountId accountId,
EditLabelRequest labelRequest,
) async {
final labelId = labelRequest.labelId;
final newLabel = labelRequest.newLabel;
final method = SetLabelMethod(accountId)
..addUpdates({
labelId: PatchObject(newLabel.toJson())
});
final builder = JmapRequestBuilder(_httpClient, ProcessingInvocation());
final invocation = builder.invocation(method);
final result =
await (builder..usings(method.requiredCapabilities)).build().execute();
final response = result.parse<SetLabelResponse>(
invocation.methodCallId,
SetLabelResponse.deserialize,
);
final labelUpdated = response?.updated?[labelId];
if (labelUpdated != null) {
final newLabelUpdated = newLabel.copyWith(
id: labelId,
keyword: labelRequest.labelKeyword,
);
return newLabelUpdated;
} else {
throw parseErrorForSetResponse(response, labelId);
}
}
}