153 lines
4.5 KiB
TypeScript
153 lines
4.5 KiB
TypeScript
// (C) Copyright 2015 Moodle Pty Ltd.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
import { AfterViewInit, Component, OnDestroy, ViewChild } from '@angular/core';
|
|
import { CoreListItemsManager } from '@classes/items-management/list-items-manager';
|
|
import { CoreRoutedItemsManagerSourcesTracker } from '@classes/items-management/routed-items-manager-sources-tracker';
|
|
import { CoreSplitViewComponent } from '@components/split-view/split-view';
|
|
import { IonRefresher } from '@ionic/angular';
|
|
import { CoreGroupInfo } from '@services/groups';
|
|
import { CoreNavigator } from '@services/navigator';
|
|
import { CoreDomUtils } from '@services/utils/dom';
|
|
import { AddonModChatSessionFormatted, AddonModChatSessionsSource } from '../../classes/chat-sessions-source';
|
|
|
|
/**
|
|
* Page that displays list of chat sessions.
|
|
*/
|
|
@Component({
|
|
selector: 'page-addon-mod-chat-sessions',
|
|
templateUrl: 'sessions.html',
|
|
})
|
|
export class AddonModChatSessionsPage implements AfterViewInit, OnDestroy {
|
|
|
|
@ViewChild(CoreSplitViewComponent) splitView!: CoreSplitViewComponent;
|
|
|
|
sessions!: CoreListItemsManager<AddonModChatSessionFormatted, AddonModChatSessionsSource>;
|
|
|
|
constructor() {
|
|
try {
|
|
const courseId = CoreNavigator.getRequiredRouteNumberParam('courseId');
|
|
const chatId = CoreNavigator.getRequiredRouteNumberParam('chatId');
|
|
const cmId = CoreNavigator.getRequiredRouteNumberParam('cmId');
|
|
const source = CoreRoutedItemsManagerSourcesTracker.getOrCreateSource(
|
|
AddonModChatSessionsSource,
|
|
[courseId, chatId, cmId],
|
|
);
|
|
|
|
this.sessions = new CoreListItemsManager(source, AddonModChatSessionsPage);
|
|
} catch (error) {
|
|
CoreDomUtils.showErrorModal(error);
|
|
|
|
CoreNavigator.back();
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
get groupId(): number {
|
|
return this.sessions.getSource().groupId;
|
|
}
|
|
|
|
set groupId(value: number) {
|
|
this.sessions.getSource().groupId = value;
|
|
}
|
|
|
|
get showAll(): boolean {
|
|
return this.sessions.getSource().showAll;
|
|
}
|
|
|
|
set showAll(value: boolean) {
|
|
this.sessions.getSource().showAll = value;
|
|
}
|
|
|
|
get groupInfo(): CoreGroupInfo | undefined {
|
|
return this.sessions.getSource().groupInfo;
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async ngAfterViewInit(): Promise<void> {
|
|
await this.fetchSessions();
|
|
|
|
this.sessions.start(this.splitView);
|
|
}
|
|
|
|
/**
|
|
* Fetch chat sessions.
|
|
*
|
|
* @param showLoading Display a loading modal.
|
|
*/
|
|
async fetchSessions(): Promise<void> {
|
|
try {
|
|
await this.sessions.load();
|
|
} catch (error) {
|
|
CoreDomUtils.showErrorModalDefault(error, 'core.errorloadingcontent', true);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reload chat sessions.
|
|
*/
|
|
async reloadSessions(): Promise<void> {
|
|
const modal = await CoreDomUtils.showModalLoading();
|
|
|
|
try {
|
|
await this.sessions.reload();
|
|
} catch (error) {
|
|
CoreDomUtils.showErrorModalDefault(error, 'core.errorloadingcontent', true);
|
|
} finally {
|
|
modal.dismiss();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Refresh chat sessions.
|
|
*
|
|
* @param refresher Refresher.
|
|
*/
|
|
async refreshSessions(refresher: IonRefresher): Promise<void> {
|
|
try {
|
|
this.sessions.getSource().setDirty(true);
|
|
|
|
await this.sessions.getSource().invalidateCache();
|
|
await this.fetchSessions();
|
|
} finally {
|
|
refresher.complete();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Show more session users.
|
|
*
|
|
* @param session Chat session.
|
|
* @param event The event.
|
|
*/
|
|
showMoreUsers(session: AddonModChatSessionFormatted, event: Event): void {
|
|
if (session.allsessionusers) {
|
|
session.sessionusers = session.allsessionusers;
|
|
}
|
|
|
|
event.stopPropagation();
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ngOnDestroy(): void {
|
|
this.sessions.destroy();
|
|
}
|
|
|
|
}
|