ev => data

This commit is contained in:
tamaina 2021-09-12 01:22:59 +09:00
parent 1cc72fdd73
commit 8cafc4ee55
1 changed files with 9 additions and 9 deletions

View File

@ -65,36 +65,36 @@ export default class Connection {
}
@autobind
private onUserEvent(ev: StreamMessages['user']['spec']) { // { type, body }と展開すると型も展開されてしまう
switch (ev.type) {
private onUserEvent(data: StreamMessages['user']['spec']) { // { type, body }と展開すると型も展開されてしまう
switch (data.type) {
case 'follow':
this.following.add(ev.body.id);
this.following.add(data.body.id);
break;
case 'unfollow':
this.following.delete(ev.body.id);
this.following.delete(data.body.id);
break;
case 'mute':
this.muting.add(ev.body.id);
this.muting.add(data.body.id);
break;
case 'unmute':
this.muting.delete(ev.body.id);
this.muting.delete(data.body.id);
break;
// TODO: block events
case 'followChannel':
this.followingChannels.add(ev.body.id);
this.followingChannels.add(data.body.id);
break;
case 'unfollowChannel':
this.followingChannels.delete(ev.body.id);
this.followingChannels.delete(data.body.id);
break;
case 'updateUserProfile':
this.userProfile = ev.body;
this.userProfile = data.body;
break;
case 'terminate':