* update js dependencies * update react-native libraries * update watermelonDB * update RN to 0.72.7 * update fastlane * fix remove_markdown/at_mention import * update mattermost libraries * update fastlane deps * remove haptic-feedback patch * update okhttp to 4.12.0 and patch netinfo to accurately identify VPN connections * create ImaegStyles intersection type
38 lines
1.6 KiB
TypeScript
38 lines
1.6 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {withDatabase, withObservables} from '@nozbe/watermelondb/react';
|
|
import {of as of$, combineLatest} from 'rxjs';
|
|
import {switchMap} from 'rxjs/operators';
|
|
|
|
import {observeConfigBooleanValue, observeConfigValue, observeLastDismissedAnnouncement, observeLicense} from '@queries/servers/system';
|
|
|
|
import AnnouncementBanner from './announcement_banner';
|
|
|
|
import type {WithDatabaseArgs} from '@typings/database/database';
|
|
|
|
const enhanced = withObservables([], ({database}: WithDatabaseArgs) => {
|
|
const lastDismissed = observeLastDismissedAnnouncement(database);
|
|
const bannerText = observeConfigValue(database, 'BannerText');
|
|
const allowDismissal = observeConfigBooleanValue(database, 'AllowBannerDismissal');
|
|
|
|
const bannerDismissed = combineLatest([lastDismissed, bannerText, allowDismissal]).pipe(
|
|
switchMap(([ld, bt, abd]) => of$(abd && (ld === bt))),
|
|
);
|
|
|
|
const license = observeLicense(database);
|
|
const enableBannerConfig = observeConfigBooleanValue(database, 'EnableBanner');
|
|
const bannerEnabled = combineLatest([license, enableBannerConfig]).pipe(
|
|
switchMap(([lcs, cfg]) => of$(cfg && lcs?.IsLicensed === 'true')),
|
|
);
|
|
return {
|
|
bannerColor: observeConfigValue(database, 'BannerColor'),
|
|
bannerEnabled,
|
|
bannerText,
|
|
bannerTextColor: observeConfigValue(database, 'BannerTextColor'),
|
|
bannerDismissed,
|
|
allowDismissal,
|
|
};
|
|
});
|
|
|
|
export default withDatabase(enhanced(AnnouncementBanner));
|