forked from Ivasoft/mattermost-mobile
* Extract common observers to queries * Separate also queries and more agressive refactoring * Use query to avoid throws from findAndObserve * Fix minor error * Address feedback * Address feedback * Address feedback * Fix model types * Address feedback
46 lines
1.5 KiB
TypeScript
46 lines
1.5 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {withDatabase} from '@nozbe/watermelondb/DatabaseProvider';
|
|
import withObservables from '@nozbe/with-observables';
|
|
import {combineLatest, of as of$} from 'rxjs';
|
|
import {switchMap} from 'rxjs/operators';
|
|
|
|
import {DEFAULT_SERVER_MAX_FILE_SIZE} from '@constants/post_draft';
|
|
import {observeConfig, observeLicense} from '@queries/servers/system';
|
|
import {isMinimumServerVersion} from '@utils/helpers';
|
|
|
|
import DraftHandler from './draft_handler';
|
|
|
|
import type {WithDatabaseArgs} from '@typings/database/database';
|
|
|
|
const enhanced = withObservables([], ({database}: WithDatabaseArgs) => {
|
|
const config = observeConfig(database);
|
|
|
|
const license = observeLicense(database);
|
|
|
|
const canUploadFiles = combineLatest([config, license]).pipe(
|
|
switchMap(([c, l]) => of$(
|
|
c?.EnableFileAttachments === 'true' ||
|
|
(l?.IsLicensed !== 'true' && l?.Compliance !== 'true' && c?.EnableMobileFileUpload === 'true'),
|
|
),
|
|
),
|
|
);
|
|
|
|
const maxFileSize = config.pipe(
|
|
switchMap((cfg) => of$(parseInt(cfg?.MaxFileSize || '0', 10) || DEFAULT_SERVER_MAX_FILE_SIZE)),
|
|
);
|
|
|
|
const maxFileCount = config.pipe(
|
|
switchMap((cfg) => of$(isMinimumServerVersion(cfg?.Version || '', 6, 0) ? 10 : 5)),
|
|
);
|
|
|
|
return {
|
|
maxFileSize,
|
|
maxFileCount,
|
|
canUploadFiles,
|
|
};
|
|
});
|
|
|
|
export default withDatabase(enhanced(DraftHandler));
|