I want to set my document ids on the front end, at the same time I set
the doc, so I was wondering if there is a way to generate Firestore IDs, which could look like this:
const theID = firebase.firestore().generateID() // something like this
firebase.firestore().collection('posts').doc(theID).set({
id: theID,
...otherData
})
I could use uuid
or some other id generator package, but I'm looking for a Firestore id generator. This SO answer points to some newId method, but I can't find it in the JS SDK... (https://www.npmjs.com/package/firebase)
EDIT: Chris Fischer's answer is more up to date, and using crypto
to generate random bytes is probably more secure (although you might have trouble trying to use crypto
in non node environments, like React Native for example).
Original Answer:
After asking in the RN Firebase discord chat, I was pointed to this util function deep in the react-native-firebase lib. It's essentially the same function as that the SO answer I mentioned in my question refers too (see the code in firebase-js-sdk here).
Depending on which wrapper you use around Firebase, the ID generation util is not necessarily exported/accessible. So I just copied it in my project as a util function:
export const firestoreAutoId = (): string => {
const CHARS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'
let autoId = ''
for (let i = 0; i < 20; i++) {
autoId += CHARS.charAt(
Math.floor(Math.random() * CHARS.length)
)
}
return autoId
}
Sorry, for the late reply :/ Hope this helps!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With