mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Fix various scrolling issues * Move reaction scrolling to reaction list * Handle scrolling when RHS opens * Only run scroll update code when posts change
28 lines
817 B
JavaScript
28 lines
817 B
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import AppDispatcher from 'dispatcher/app_dispatcher.jsx';
|
|
import EventEmitter from 'events';
|
|
|
|
import EventTypes from 'utils/event_types.jsx';
|
|
|
|
class GlobalEventEmitterClass extends EventEmitter {
|
|
constructor() {
|
|
super();
|
|
this.dispatchToken = AppDispatcher.register(this.handleEventPayload);
|
|
}
|
|
|
|
handleEventPayload = (payload) => {
|
|
const {type, value, ...args} = payload.action; //eslint-disable-line no-use-before-define
|
|
|
|
switch (type) {
|
|
case EventTypes.POST_LIST_SCROLL_CHANGE:
|
|
this.emit(type, value, args);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
const GlobalEventEmitter = new GlobalEventEmitterClass();
|
|
export default GlobalEventEmitter;
|