Laravel回声和耳语

时间:2018-07-25 17:23:49

标签: laravel echo whisper

我正在运行echo服务器和Redis。私人频道可完美运作,而我为此建立的讯息则可正常运作。现在,我正在尝试使耳语也可以用于打字状态,但是没有运气。耳语需要推杆才能起作用吗?

我在keyup(jquery)上尝试过的内容

Echo.private(chat- + userid)
.whisper('typing',{e: 'i am is typing...'});
console.log('key up'); // this one works so the keyup is triggered

那我当然是在听频道,我在窃窃私语:

Echo.private(chat- + userid).listenForWhisper('typing', (e) => {
console.log(e + ' this is typing');
});

但是我什么都没得到。 (在回显服务器上调试,在控制台上什么也没有,等等)如何使它工作的任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:3)

您的输入事件:

$('input').on('keydown', function(){
  let channel = Echo.private('chat')

  setTimeout( () => {
    channel.whisper('typing', {
      user: userid,
      typing: true
    })
  }, 300)
})

您的收听事件:

Echo.private('chat')
  .listenForWhisper('typing', (e) => {
    e.typing ? $('.typing').show() : $('.typing').hide()
  })

setTimeout( () => {
  $('.typing').hide()
}, 1000)

当然,您必须提前为此频道设置身份验证,以确保受信任的方可以访问:

Broadcast::channel('chat', function ($user) {
    return Auth::check();
});

$user将是我们传递给前端对象中userid参数的user的地方。

答案 1 :(得分:1)

这就是我的ReactJS componentDidMount的样子。 您的收听事件。

componentDidMount() {
let timer; // timer variable to be cleared every time the user whispers

Echo.join('chatroom')
  .here(...)
  .joining(...)
  .leaving(...)
  .listen(...)
}).listenForWhisper('typing', (e) => {

  this.setState({
    typing: e.name
  });

  clearTimeout(timer); // <-- clear
  // Take note of the 'clearTimeout' before setting another 'setTimeout' timer.
  // This will clear previous timer that will make your typing status
  // 'blink' if not cleared.
  timer = setTimeout(() => {
    this.setState({
      typing: null
    });
  }, 500);

});
}