Skip to content

Commit

Permalink
Merge pull request #3952 from crazyserver/MOBILE-4497
Browse files Browse the repository at this point in the history
Mobile 4497
  • Loading branch information
dpalou authored Mar 5, 2024
2 parents e79c549 + 64d692a commit 0cff22c
Show file tree
Hide file tree
Showing 13 changed files with 68 additions and 33 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ on:
pull_request:
branches: [ main, v*.x ]

concurrency:
group: acceptance-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}


jobs:

build:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Testing

on: [push, pull_request]

concurrency:
group: testing-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
test:

Expand Down
21 changes: 14 additions & 7 deletions src/addons/competency/competency.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ import { CoreContentLinksDelegate } from '@features/contentlinks/services/conten
import { CoreCourseOptionsDelegate } from '@features/course/services/course-options-delegate';
import { CorePushNotificationsDelegate } from '@features/pushnotifications/services/push-delegate';
import { CoreUserDelegate } from '@features/user/services/user-delegate';
import { AddonCompetencyProvider } from './services/competency';
import { AddonCompetencyHelperProvider } from './services/competency-helper';
import { AddonCompetencyCompetencyLinkHandler } from './services/handlers/competency-link';
import { AddonCompetencyCourseOptionHandler } from './services/handlers/course-option';
import { AddonCompetencyPlanLinkHandler } from './services/handlers/plan-link';
Expand All @@ -33,11 +31,20 @@ import { CoreCourseIndexRoutingModule } from '@features/course/course-routing.mo
import { COURSE_PAGE_NAME } from '@features/course/course.module';
import { PARTICIPANTS_PAGE_NAME } from '@features/user/user.module';

// List of providers (without handlers).
export const ADDON_COMPETENCY_SERVICES: Type<unknown>[] = [
AddonCompetencyProvider,
AddonCompetencyHelperProvider,
];
/**
* Get competency services.
*
* @returns Competency services.
*/
export async function getCompetencyServices(): Promise<Type<unknown>[]> {
const { AddonCompetencyProvider } = await import('@addons/competency/services/competency');
const { AddonCompetencyHelperProvider } = await import('@addons/competency/services/competency-helper');

return [
AddonCompetencyProvider,
AddonCompetencyHelperProvider,
];
}

export const ADDON_COMPETENCY_LEARNING_PLANS_PAGE = 'learning-plans';
export const ADDON_COMPETENCY_COMPETENCIES_PAGE = 'competencies';
Expand Down
31 changes: 26 additions & 5 deletions src/addons/competency/services/competency.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,34 @@ export class AddonCompetencyProvider {
static readonly REVIEW_STATUS_WAITING_FOR_REVIEW = 1;
static readonly REVIEW_STATUS_IN_REVIEW = 2;

/**
* Check if competencies are enabled in a certain site.
*
* @param options Site ID or site object.
* @returns Whether competencies are enabled.
*/
async areCompetenciesEnabled(options?: {siteId?: string; site?: CoreSite}): Promise<boolean> {
const site = options?.site ? options.site : await CoreSites.getSite(options?.siteId);

if (!site) {
return false;
}

return site.canUseAdvancedFeature('enablecompetencies') &&
!(site.isFeatureDisabled('CoreMainMenuDelegate_AddonCompetency') &&
site.isFeatureDisabled('CoreCourseOptionsDelegate_AddonCompetency') &&
site.isFeatureDisabled('CoreUserDelegate_AddonCompetency'));
}

/**
* Check if all competencies features are disabled.
*
* @param siteId Site ID. If not defined, current site.
* @returns Promise resolved with boolean: whether all competency features are disabled.
* @deprecated since 4.4. Use areCompetenciesEnabled instead.
*/
async allCompetenciesDisabled(siteId?: string): Promise<boolean> {
const site = await CoreSites.getSite(siteId);

return site.isFeatureDisabled('CoreMainMenuDelegate_AddonCompetency') &&
site.isFeatureDisabled('CoreCourseOptionsDelegate_AddonCompetency') &&
site.isFeatureDisabled('CoreUserDelegate_AddonCompetency');
return !(await this.areCompetenciesEnabled({ siteId }));
}

/**
Expand All @@ -69,6 +85,11 @@ export class AddonCompetencyProvider {
return false;
}

const enabled = await this.areCompetenciesEnabled({ siteId });
if (!enabled) {
return false;
}

try {
const response = await this.getCourseCompetenciesPage(courseId, siteId);

Expand Down
5 changes: 1 addition & 4 deletions src/addons/competency/services/handlers/competency-link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,7 @@ export class AddonCompetencyCompetencyLinkHandlerService extends CoreContentLink
* @inheritdoc
*/
async isEnabled(siteId: string): Promise<boolean> {
// Handler is disabled if all competency features are disabled.
const disabled = await AddonCompetency.allCompetenciesDisabled(siteId);

return !disabled;
return AddonCompetency.areCompetenciesEnabled({ siteId });
}

}
Expand Down
2 changes: 1 addition & 1 deletion src/addons/competency/services/handlers/course-option.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class AddonCompetencyCourseOptionHandlerService implements CoreCourseOpti
* @inheritdoc
*/
async isEnabled(): Promise<boolean> {
return true;
return AddonCompetency.areCompetenciesEnabled();
}

/**
Expand Down
5 changes: 1 addition & 4 deletions src/addons/competency/services/handlers/plan-link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,7 @@ export class AddonCompetencyPlanLinkHandlerService extends CoreContentLinksHandl
* @inheritdoc
*/
async isEnabled(siteId: string): Promise<boolean> {
// Handler is disabled if all competency features are disabled.
const disabled = await AddonCompetency.allCompetenciesDisabled(siteId);

return !disabled;
return AddonCompetency.areCompetenciesEnabled({ siteId });
}

}
Expand Down
5 changes: 1 addition & 4 deletions src/addons/competency/services/handlers/plans-link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,7 @@ export class AddonCompetencyPlansLinkHandlerService extends CoreContentLinksHand
* @inheritdoc
*/
async isEnabled(siteId: string): Promise<boolean> {
// Handler is disabled if all competency features are disabled.
const disabled = await AddonCompetency.allCompetenciesDisabled(siteId);

return !disabled;
return AddonCompetency.areCompetenciesEnabled({ siteId });
}

}
Expand Down
2 changes: 1 addition & 1 deletion src/addons/competency/services/handlers/push-click.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class AddonCompetencyPushClickHandlerService implements CorePushNotificat
if (CoreUtils.isTrueOrOne(notification.notif) && notification.moodlecomponent == 'moodle' &&
(notification.name == 'competencyplancomment' || notification.name == 'competencyusercompcomment')) {
// If all competency features are disabled, don't handle the click.
return AddonCompetency.allCompetenciesDisabled(notification.site).then((disabled) => !disabled);
return AddonCompetency.areCompetenciesEnabled({ siteId: notification.site });
}

return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,7 @@ export class AddonCompetencyUserCompetencyLinkHandlerService extends CoreContent
* @inheritdoc
*/
async isEnabled(siteId: string): Promise<boolean> {
// Handler is disabled if all competency features are disabled.
const disabled = await AddonCompetency.allCompetenciesDisabled(siteId);

return !disabled;
return AddonCompetency.areCompetenciesEnabled({ siteId });
}

}
Expand Down
2 changes: 1 addition & 1 deletion src/addons/competency/services/handlers/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class AddonCompetencyUserHandlerService implements CoreUserProfileHandler
* @inheritdoc
*/
async isEnabled(): Promise<boolean> {
return true;
return AddonCompetency.areCompetenciesEnabled();
}

/**
Expand Down
9 changes: 9 additions & 0 deletions src/addons/competency/tests/behat/navigation.feature
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,15 @@ Feature: Test competency navigation
Then I should find "Desserts are important" in the app
But I should not find "Cakes" in the app

Given the following config values are set as admin:
| enabled | 0 | core_competency |
When I entered the course "Course 1" as "student1" in the app
Then I should not find "Competencies" in the app

When I press the back button in the app
And I press the user menu button in the app
And I should not find "Learning plans" in the app

Scenario: Mobile navigation (teacher)
Given I entered the course "Course 1" as "teacher1" in the app

Expand Down
5 changes: 3 additions & 2 deletions src/core/features/compile/services/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ import { CoreSitePluginsAssignSubmissionComponent } from '@features/siteplugins/
import { ADDON_BADGES_SERVICES } from '@addons/badges/badges.module';
import { ADDON_CALENDAR_SERVICES } from '@addons/calendar/calendar.module';
import { getCourseCompletionServices } from '@addons/coursecompletion/coursecompletion.module';
import { ADDON_COMPETENCY_SERVICES } from '@addons/competency/competency.module';
import { getCompetencyServices } from '@addons/competency/competency.module';
import { ADDON_MESSAGEOUTPUT_SERVICES } from '@addons/messageoutput/messageoutput.module';
import { ADDON_MESSAGES_SERVICES } from '@addons/messages/messages.module';
import { ADDON_MOD_ASSIGN_SERVICES } from '@addons/mod/assign/assign.module';
Expand Down Expand Up @@ -307,7 +307,6 @@ export class CoreCompileProvider {
...extraProviders,
...ADDON_BADGES_SERVICES,
...ADDON_CALENDAR_SERVICES,
...ADDON_COMPETENCY_SERVICES,
...ADDON_MESSAGEOUTPUT_SERVICES,
...ADDON_MESSAGES_SERVICES,
...ADDON_MOD_ASSIGN_SERVICES,
Expand Down Expand Up @@ -407,13 +406,15 @@ export class CoreCompileProvider {
*/
async getLazyLibraries(): Promise<Type<unknown>[]> {
const ADDON_MOD_WORKSHOP_SERVICES = await getWorkshopServices();
const ADDON_COMPETENCY_SERVICES = await getCompetencyServices();
const ADDON_COURSECOMPLETION_SERVICES = await getCourseCompletionServices();

const CORE_COMMENTS_SERVICES = await getCommentsServices();
const CORE_TAG_SERVICES = await getTagServices();

return [
...ADDON_MOD_WORKSHOP_SERVICES,
...ADDON_COMPETENCY_SERVICES,
...ADDON_COURSECOMPLETION_SERVICES,
...CORE_COMMENTS_SERVICES,
...CORE_TAG_SERVICES,
Expand Down

0 comments on commit 0cff22c

Please sign in to comment.