-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[ODM] Add a way to store the document ID in the model #7613
Comments
Same goes for the documentPath, which would make an update self-contained. When deserialising using json_serializable I augment all objects with id, path and parent. Since this is not handled by json_serializable I have an abstract BaseModel with only these properties (which are set to @jsonkey(ignore: true), all other Firestore based classes extend BaseModel. This means changing the withConverter to: fromFirestore: (doc, _) => fromFirestore(doc)..augment(doc),
toFirestore: (model, _) => toFirestore(model),
void augment(DocumentSnapshot<Map<String, dynamic>> doc) {
id = doc.id;
path = doc.reference.path;
parent = doc.reference.parent;
} |
Would something like that be acceptable for a PR : https://github.com/Lyokone/flutterfire/pull/1/files ? I would add the ability to configure how the mapping is done. |
@Lyokone no, there's a lot more to it than this There's some disambiguation to do. For example what if the model contains a property called Mutating the map passed to We also don't want to generate And there's testing needed |
I propose to add an annotation, something like: @JsonSerializable('galaxies')
class Galaxy {
Galaxy({this.documentId, required this.name});
@JsonDocumentId()
final String? documentId;
final String name;
} Type would be nullable:
If possible, annotation could assert Type is nullable. I think it would prevent ambiguation as mentionned above. Would it also have side-effects to mutate the map passed to Finally I guess this might be done along with json_serializable package. |
I would like to propose making the I am new to dart, so not sure on the feasibility, but what about something like below, where the new annotation excludes the field from json serializable as well as identifies it for the odm generator.
|
Attaching the snapshot is counter-productive IMO. If that solution is fine with you, then you could directly pass the Firestore snapshot instead of passing only the document content. The purpose of this issue I believe is for code that is not firebase aware |
@rrousselGit Could my proposal be acceptable ? |
I implemented this for my project using an annotation: // user.dart
@JsonSerializable()
class User {
User({
required this.name,
});
factory User.fromJson(Map<String, dynamic> json) => _$UserFromJson(json);
@Inject(FirestoreValue.id)
String? _id;
String? get id => _id;
final String name;
}
// user.g.dart
static User fromFirestore(
DocumentSnapshot<Map<String, Object?>> snapshot,
SnapshotOptions? options,
) {
final data = User.fromJson(snapshot.data()!);
data._id = snapshot.id;
return data;
} Injected fields are filtered out of queryable fields, so users can use public mutable fields if they prefer. My branch is here: https://github.com/Jjagg/flutterfire/tree/odm-inject I added logic to inject:
With some experimentation this is the way I thought worked best for injecting stuff. |
I suggest not deviating the API from the official one. Otherwise we could find ourselves in a future scenario where the official API (iOS/Android) is changed in a way that makes it incompatible with this version. IMHO this plugin should mainly exist as a wrapper around the official API. |
Any feedback on my comment? |
Users want a way to store the ID of a document within the deserialized class
Some things to consider:
ref.set(...)
orref.update(...)
should not allow changing the "id", since it isn't part of the document but instead some metadataThe text was updated successfully, but these errors were encountered: