K5 Playgroundで、Firebase Realtime Databaseを使ったチャットアプリを作る方法を説明します。
概要
材料
- テンプレート: Chat
- APIロジック: Firebase Realtime Database
機能
- チャットUI
- Firebase Realtime Databaseでのチャットメッセージ管理
アプリの開発
K5 Playgroundにアクセスします。
Frontend
Chat
テンプレートを選択します。
Backend
POST /sample_streams
エンドポイントを編集します。MongoDB Stream Channel
APIロジックを削除します。右側のDatabaseメニューからFirebaseの
Update JSON
を追加して、次のように修正します。1
2
3
4var dataPath = 'users/[auth user id]/streams';
var newPostKey = firebase.database().ref(dataPath).push().key;
var newData = {};
newData[newPostKey] = req.body.name;1
2
3
4next({
_id: newPostKey,
name: req.body.name,
});
GET /sample_streams
エンドポイントを編集します。MongoDB Stream Channel
APIロジックを削除します。右側のDatabaseメニューからFirebaseの
Fetch JSON
を追加して、次のように修正します。1
var dataPath = 'users/[auth user id]/streams';
1
2
3
4
5
6
7
8
9
10
11
12
13firebase.database().ref(dataPath).once('value').then(function(snapshot){
var streamList = snapshot.val();
var result = Object.keys(streamList).reduce(function(prev, key){
prev.push({
_id: key,
name: streamList[key]
});
return prev;
}, []);
next(result);
}).catch(function(error){
next({});
});
POST /sample_messages
エンドポイントを編集します。MongoDB Stream
APIロジックを削除します。右側のDatabaseメニューからFirebaseの
Update JSON
を追加して次のように修正します。1
2
3
4var dataPath = 'users/[auth user id]/messages';
var newData = {}
var newPostKey = firebase.database().ref(messagePath).push().key;
newData[newPostKey] = req.body;1
next(Object.assign({_id: newPostKey}, req.body));
GET /sample_messages
エンドポイントを編集します。MongoDB Stream
ロジックを削除します。右側のDatabaseメニューから
Fetch JSON
APIロジックを追加して次のように修正します。1
2
3
4
5
6
7
8
9
10
11firebase.database().ref(dataPath).once('value').then(function(snapshot) {
var messageList = snapshot.val();
var where = JSON.parse(req.query.filter).where;
var result = Object.keys(messageList).reduce(function(prev, key) {
if (messageList[key].stream_id === where.stream_id) {
prev.push(Object.assign({ _id: key }, messageList[key]));
}
return prev;
}, [])
next(result);
}).catch(function(error){});
アプリをダウンロードします。
アプリのデプロイ
Backend
1 | cd backend |
Frontend
1 | cd frontend |
ダウンロード
Version
- Chat Template: v1.0.0