* Fix offline indicator UI * Add search screen with recent mentions functionality * Fix make start * Add autocomplete to the search box * Fix search bar in other screens * Get search results and scroll the list * Add reply arrow to search result posts * Search result preview and jump to channel * Feedback review
18 lines
467 B
JavaScript
18 lines
467 B
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {ViewTypes} from 'app/constants';
|
|
import {UserTypes} from 'mattermost-redux/action_types';
|
|
|
|
export default function search(state = '', action) {
|
|
switch (action.type) {
|
|
case ViewTypes.SEARCH_DRAFT_CHANGED: {
|
|
return action.text;
|
|
}
|
|
case UserTypes.LOGOUT_SUCCESS:
|
|
return '';
|
|
|
|
default:
|
|
return state;
|
|
}
|
|
}
|