前提・実現したいこと
いつもお世話になり、ありがとうございます。firebase Functionsとtypescriptの独学初心者で、解決できないことがありますのでご質問させていただきます。
Functionsのトリガー関数(onCreate)でsetTimeout内に指定時間後にupdateメソッドでfirestoreのフィールドのデータをアップデートしたいと思っています。
発生している問題・エラーメッセージ
deploy後にターミナルに以下の文章がupdateメソッドの2箇所でエラーメッセージが発生しています。
↓発生しているエラーメッセージ
Promises must be handled appropriately
Typescript(Node.js)
1export const setTimeouter = functions 2.runWith({ memory: "1GB", timeoutSeconds: 240 }) 3.region('asia-northeast1') 4.firestore.document('setTimeouter/{userId}').onCreate(async(snapshot, context) => { 5 if (!context.auth || !context.auth.uid) { 6 console.log("ファイアベースに認証されていません。"); 7 throw new functions.https.HttpsError('unauthenticated', 'User is notauthenticated.'); 8 }; 9 const newValue = snapshot.data() as Model.SetTimeouter; 10 const myId = context.auth.uid; 11 const friendId = newValue.friendId; 12 13 setTimeout(() => { 14 //自分の友達リストにある友達インフォのアップデートを行う。 15 const friendFriendListRef = db.doc(`friends/${myId}/{friendList}/${friendId}`); 16 friendFriendListRef.update({ 17 isTimeout: true 18 }) 19 .then(resolve => { 20 console.log(`Update data of isTimeout to Ture succeeded! ${resolve}`); 21 }); 22 //友達の友達リストにある自分のインフォのアップデートを行う。 23 const myFriendListRef = db.doc(`friends/${friendId}/{friendList}/${myId}`); 24 25 myFriendListRef.update({ 26 isTimeout: true 27 }) 28 .then(resolve => { 29 console.log(`Update data of isTimeout to Ture succeeded! ${resolve}`); 30 }); 31 console.log('10分が過ぎたので非表示になりました。'); 32 }, 600000); 33});
補足情報
firebaseのfirestoreのデータにアクセスや変更を加えるメソッド(ここだとupdate)が非同期処理で、返り値が必要になるのはわかったので、setTimeout()メソッド内だと上手くdeployがされません。
お忙しいところ、恐縮ですがお知恵をお借りできますと幸いです。よろしくお願いします。
あなたの回答
tips
プレビュー