mattermost-mobile/app/selectors/post_list.js
Miguel Alatzar 2d81b497cf [MM-23520] Port mattermost-redux (#4088)
* Remove mattermost-redux

* Move mm-redux files into app/redux

* Add @redux path to tsconfig.json

* Fix imports

* Install missing dependencies

* Fix tsc errors

* Fix i18n_utils test

* Fix more imports

* Remove redux websocket

* Fix tests

* Rename @redux

* Apply changes from mattermost-redux PR 1103

* Remove mattermost-redux mention in template

* Add missing imports

* Rename app/redux/ to app/mm-redux/

* Remove test file

* Fix fetching Sidebar GM profiles

Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
2020-04-17 21:12:09 -07:00

51 lines
1.8 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {Posts} from '@mm-redux/constants';
import {makeGetPostsForIds} from '@mm-redux/selectors/entities/posts';
import {getCurrentUser} from '@mm-redux/selectors/entities/users';
import {createIdsSelector} from '@mm-redux/utils/helpers';
import {DATE_LINE} from '@mm-redux/utils/post_list';
export {DATE_LINE};
export const DATE_LINE_SUFFIX = '-index-';
export function makePreparePostIdsForSearchPosts() {
const getMyPosts = makeGetPostsForIds();
return createIdsSelector(
(state, postIds) => getMyPosts(state, postIds),
getCurrentUser,
(posts, currentUser) => {
if (posts.length === 0 || !currentUser) {
return [];
}
const out = [];
for (let i = 0; i < posts.length; i++) {
const post = posts[i];
// give chance for the post to be loaded
if (!post) {
continue;
}
if (post.state === Posts.POST_DELETED && post.user_id === currentUser.id) {
continue;
}
// Render a date line for each post, even if displayed on the same date as the
// previous post. Since we don't deduplicate here like in other views, we need to
// ensure the resulting key is unique, even if the post timestamps (down to the
// second) are identical. The screens know to parse out the index before trying
// to consume the date value.
out.push(DATE_LINE + post.create_at + DATE_LINE_SUFFIX + i);
out.push(post.id);
}
return out;
},
);
}