Files
mattermost-mobile/app/database/models/server/category_channel.ts
Elias Nahum 7aa5bd0611 Update Dependencies and bug fixes (#7000)
* update dependencies

* update dependencies

* feedback review

* update @mattermost/react-native-turbo-mailer
2023-01-24 09:14:23 +02:00

56 lines
2.2 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {field, immutableRelation, relation} from '@nozbe/watermelondb/decorators';
import Model, {Associations} from '@nozbe/watermelondb/Model';
import {MM_TABLES} from '@constants/database';
import type {Relation} from '@nozbe/watermelondb';
import type CategoryModel from '@typings/database/models/servers/category';
import type CategoryChannelInterface from '@typings/database/models/servers/category_channel';
import type ChannelModel from '@typings/database/models/servers/channel';
import type MyChannelModel from '@typings/database/models/servers/my_channel';
const {CATEGORY_CHANNEL, CATEGORY, MY_CHANNEL, CHANNEL} = MM_TABLES.SERVER;
/**
* The CategoryChannel model represents the 'association table' where many categories have channels and many channels are in
* categories (relationship type N:N)
*/
export default class CategoryChannelModel extends Model implements CategoryChannelInterface {
/** table (name) : CategoryChannel */
static table = CATEGORY_CHANNEL;
/** associations : Describes every relationship to this table. */
static associations: Associations = {
/** A CategoryChannel belongs to a CATEGORY */
[CATEGORY]: {type: 'belongs_to', key: 'category_id'},
/** A CategoryChannel has a Channel */
[CHANNEL]: {type: 'belongs_to', key: 'channel_id'},
/** A CategoryChannel has a MyChannel */
[MY_CHANNEL]: {type: 'belongs_to', key: 'channel_id'},
};
/** category_id : The foreign key to the related Category record */
@field('category_id') categoryId!: string;
/** channel_id : The foreign key to the related Channel record */
@field('channel_id') channelId!: string;
/* sort_order: The sort order for the channel in category */
@field('sort_order') sortOrder!: number;
/** category : The related category */
@relation(CATEGORY, 'category_id') category!: Relation<CategoryModel>;
/** channel : The related channel */
@immutableRelation(CHANNEL, 'channel_id') channel!: Relation<ChannelModel>;
/** myChannel : The related myChannel */
@immutableRelation(MY_CHANNEL, 'channel_id') myChannel!: Relation<MyChannelModel>;
}