// 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 {observeConfigBooleanValue} from '@queries/servers/system'; import {observeIsCRTEnabled} from '@queries/servers/thread'; import {observeCurrentUser} from '@queries/servers/user'; import NotificationPush from './notification_push'; import type {WithDatabaseArgs} from '@typings/database/database'; const enhanced = withObservables([], ({database}: WithDatabaseArgs) => { return { currentUser: observeCurrentUser(database), isCRTEnabled: observeIsCRTEnabled(database), sendPushNotifications: observeConfigBooleanValue(database, 'SendPushNotifications'), }; }); export default withDatabase(enhanced(NotificationPush));