forked from Ivasoft/mattermost-mobile
* Adds actions, queries, db models and rest client * move fetching categories inside fetchMyChannelsForTeam * code cleanup * deconstruct categoriesWithOrder * DMs fetching for changing teams * Fix bad merge and address feedback Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
56 lines
2.2 KiB
TypeScript
56 lines
2.2 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {Relation} from '@nozbe/watermelondb';
|
|
import {field, immutableRelation, relation} from '@nozbe/watermelondb/decorators';
|
|
import Model, {Associations} from '@nozbe/watermelondb/Model';
|
|
|
|
import {MM_TABLES} from '@constants/database';
|
|
|
|
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>;
|
|
}
|