suggest_a_feature_firestore

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

suggest a feature firestore

Suggest a Feature Firestore #






Crafted with passion by

What the Flutter
🦜














This package is a data source extension for
suggest_a_feature package.
Getting started #
dependencies:
suggest_a_feature: ^latest version
suggest_a_feature_firestore: ^latest version
copied to clipboard
You need to add Firebase to your project following steps described in this link from official firebase website:
https://console.firebase.google.com/
Usage #
You need to place FirestoreDataSource class as a suggestionsDataSource field in SuggestionsPage widget. Don't forget to place FirebaseFirestore.instance as firestoreInstance field in FirestoreDataSource class.
For example:
SuggestionsPage(
userId: '1',
suggestionsDataSource: FirestoreDataSource(
userId: '1',
firestoreInstance: FirebaseFirestore.instance,
),
theme: SuggestionsTheme.initial() ,
onUploadMultiplePhotos: null,
onSaveToGallery: null,
onGetUserById: () {},
);
copied to clipboard
Firestore rules #
You also must add following rules to your Firestore in Firebase Console:
match /suggest_a_feature_suggestions/{suggest_a_feature_suggestion}{
allow read, write: if request.auth != null;
}

match /suggest_a_feature_comments/{suggest_a_feature_comment}{
allow read, write: if request.auth != null;
}
copied to clipboard

only if those rules are not defined for all lists

Pay your attention #
For each delete or update suggestion action we check either user have author rights to fulfil those actions. Author rights is such a concept that only the user who created a suggestion can manipulate it (delete or update it). If somehow happens the situation when user without author rights will try to delete/update a suggestion will be thrown an Exception
We provide batch deleting of all the comments related to deleting suggestion in order save storage place and keep your firestore collections clean.
Cloud Firestore #
Data collections names in firebase firestore will be the following ones:

suggest_a_feature_suggestions for suggestions collection
suggest_a_feature_comments for comments collection

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.