mattermost-mobile/app/screens/settings/notification_push/index.tsx
2022-06-24 06:52:05 -04:00

23 lines
895 B
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 {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));