80 lines
2.9 KiB
JavaScript
80 lines
2.9 KiB
JavaScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const SWITCH_SERVER = 'switch-server';
|
|
export const SET_SERVER_KEY = 'set-server-key';
|
|
export const MARK_READ = 'mark-read';
|
|
export const FOCUS_BROWSERVIEW = 'focus-browserview';
|
|
export const ZOOM = 'zoom';
|
|
export const UNDO = 'undo';
|
|
export const REDO = 'redo';
|
|
export const HISTORY = 'history';
|
|
|
|
export const QUIT = 'quit';
|
|
|
|
export const GET_CONFIGURATION = 'get-configuration';
|
|
export const UPDATE_CONFIGURATION = 'update-configuration';
|
|
export const GET_LOCAL_CONFIGURATION = 'get-local-configuration';
|
|
export const RELOAD_CONFIGURATION = 'reload-config';
|
|
|
|
export const UPDATE_TEAMS = 'update-teams';
|
|
export const DARK_MODE_CHANGE = 'dark_mode_change';
|
|
export const USER_ACTIVITY_UPDATE = 'user-activity-update';
|
|
|
|
export const LOAD_RETRY = 'load_retry';
|
|
export const LOAD_SUCCESS = 'load_success';
|
|
export const LOAD_FAILED = 'load_fail';
|
|
|
|
export const MAXIMIZE_CHANGE = 'maximized_change';
|
|
|
|
export const OPEN_EXTERNAL = 'open_external';
|
|
|
|
export const DOUBLE_CLICK_ON_WINDOW = 'double_click';
|
|
|
|
export const SHOW_NEW_SERVER_MODAL = 'show_new_server_modal';
|
|
|
|
export const RETRIEVE_MODAL_INFO = 'retrieve-modal-info';
|
|
export const MODAL_INFO = 'modal-info';
|
|
export const MODAL_CANCEL = 'modal-cancel';
|
|
export const MODAL_RESULT = 'modal-result';
|
|
export const MODAL_SEND_IPC_MESSAGE = 'modal-send-ipc-message';
|
|
export const MODAL_OPEN = 'modal-open';
|
|
export const MODAL_CLOSE = 'modal-close';
|
|
export const NOTIFY_MENTION = 'notify_mention';
|
|
export const WINDOW_CLOSE = 'window_close';
|
|
export const WINDOW_MINIMIZE = 'window_minimize';
|
|
export const WINDOW_MAXIMIZE = 'window_maximize';
|
|
export const WINDOW_RESTORE = 'window_restore';
|
|
|
|
export const UPDATE_TARGET_URL = 'update_target_url';
|
|
|
|
export const PLAY_SOUND = 'play_sound';
|
|
|
|
export const GET_DOWNLOAD_LOCATION = 'get_download_location';
|
|
|
|
export const UPDATE_MENTIONS = 'update_mentions';
|
|
export const IS_UNREAD = 'is_unread';
|
|
export const UNREAD_RESULT = 'unread_result';
|
|
export const SESSION_EXPIRED = 'session_expired';
|
|
export const UPDATE_TRAY = 'update_tray';
|
|
export const UPDATE_BADGE = 'update_badge';
|
|
|
|
export const SET_SERVER_NAME = 'set-server-name';
|
|
export const REACT_APP_INITIALIZED = 'react-app-initialized';
|
|
|
|
export const TOGGLE_BACK_BUTTON = 'toggle-back-button';
|
|
|
|
export const SHOW_SETTINGS_WINDOW = 'show-settings-window';
|
|
|
|
export const RECEIVED_LOADING_SCREEN_DATA = 'received-loading-screen-data';
|
|
export const GET_LOADING_SCREEN_DATA = 'get-loading-screen-data';
|
|
export const LOADING_SCREEN_ANIMATION_FINISHED = 'loading-screen-animation-finished';
|
|
export const TOGGLE_LOADING_SCREEN_VISIBILITY = 'toggle-loading-screen-visibility';
|
|
|
|
export const SELECT_NEXT_TAB = 'select-next-tab';
|
|
export const SELECT_PREVIOUS_TAB = 'select-previous-tab';
|
|
export const ADD_SERVER = 'add-server';
|
|
export const FOCUS_THREE_DOT_MENU = 'focus-three-dot-menu';
|
|
|
|
export const LOADSCREEN_END = 'loadscreen-end';
|