forked from EVOgeek/Vmeda.Online
80 lines
2.4 KiB
TypeScript
80 lines
2.4 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 { Injectable } from '@angular/core';
|
|
import { CoreCourseUserAdminOrNavOptionIndexed } from '@features/courses/services/courses';
|
|
import {
|
|
CoreUserDelegateContext,
|
|
CoreUserDelegateService,
|
|
CoreUserProfileHandler,
|
|
CoreUserProfileHandlerData,
|
|
} from '@features/user/services/user-delegate';
|
|
import { CoreNavigator } from '@services/navigator';
|
|
import { makeSingleton } from '@singletons';
|
|
import { AddonBadges } from '../badges';
|
|
|
|
/**
|
|
* Profile badges handler.
|
|
*/
|
|
@Injectable({ providedIn: 'root' })
|
|
export class AddonBadgesUserHandlerService implements CoreUserProfileHandler {
|
|
|
|
name = 'AddonBadges';
|
|
priority = 50;
|
|
type = CoreUserDelegateService.TYPE_NEW_PAGE;
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
isEnabled(): Promise<boolean> {
|
|
return AddonBadges.isPluginEnabled();
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async isEnabledForContext(
|
|
context: CoreUserDelegateContext,
|
|
courseId: number,
|
|
navOptions?: CoreCourseUserAdminOrNavOptionIndexed,
|
|
): Promise<boolean> {
|
|
if (navOptions && navOptions.badges !== undefined) {
|
|
return navOptions.badges;
|
|
}
|
|
|
|
// If we reach here, it means we are opening the user site profile.
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
getDisplayData(): CoreUserProfileHandlerData {
|
|
return {
|
|
icon: 'fas-trophy',
|
|
title: 'addon.badges.badges',
|
|
action: (event, user, context, contextId): void => {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
CoreNavigator.navigateToSitePath('/badges', {
|
|
params: { courseId: contextId, userId: user.id },
|
|
});
|
|
},
|
|
};
|
|
}
|
|
|
|
}
|
|
|
|
export const AddonBadgesUserHandler = makeSingleton(AddonBadgesUserHandlerService);
|