forked from Ivasoft/mattermost-mobile
25 lines
871 B
TypeScript
25 lines
871 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {withDatabase} from '@nozbe/watermelondb/DatabaseProvider';
|
|
import enhance from '@nozbe/with-observables';
|
|
|
|
import {observePostAuthor} from '@queries/servers/post';
|
|
import {observeConfigBooleanValue} from '@queries/servers/system';
|
|
|
|
import Avatar from './avatar';
|
|
|
|
import type {WithDatabaseArgs} from '@typings/database/database';
|
|
import type PostModel from '@typings/database/models/servers/post';
|
|
|
|
const withPost = enhance(['post'], ({database, post}: {post: PostModel} & WithDatabaseArgs) => {
|
|
const enablePostIconOverride = observeConfigBooleanValue(database, 'EnablePostIconOverride');
|
|
|
|
return {
|
|
author: observePostAuthor(database, post),
|
|
enablePostIconOverride,
|
|
};
|
|
});
|
|
|
|
export default withDatabase(withPost(Avatar));
|