richie-education 3.1.3-dev11 → 3.1.3-dev15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/js/api/joanie.ts +8 -8
- package/js/components/ContractFrame/OrganizationContractFrame.spec.tsx +11 -20
- package/js/components/ContractFrame/OrganizationContractFrame.tsx +4 -4
- package/js/components/CourseGlimpse/utils.ts +22 -35
- package/js/components/CourseGlimpseList/utils.ts +2 -2
- package/js/components/PurchaseButton/index.tsx +3 -3
- package/js/components/SaleTunnel/GenericSaleTunnel.tsx +3 -10
- package/js/components/SaleTunnel/SaleTunnelInformation/index.tsx +5 -3
- package/js/components/SaleTunnel/index.full-process.spec.tsx +3 -3
- package/js/components/SaleTunnel/index.spec.tsx +76 -63
- package/js/components/SaleTunnel/index.tsx +2 -2
- package/js/components/TeacherDashboardCourseList/index.spec.tsx +3 -3
- package/js/components/TeacherDashboardCourseList/index.tsx +2 -2
- package/js/hooks/useContractArchive/index.ts +3 -3
- package/js/hooks/useCourseProductUnion/index.spec.tsx +16 -18
- package/js/hooks/useCourseProductUnion/index.ts +7 -7
- package/js/hooks/useCourseProducts.ts +4 -8
- package/js/hooks/useDefaultOrganizationId/index.tsx +4 -7
- package/js/hooks/useOffer/index.ts +32 -0
- package/js/hooks/useTeacherCoursesSearch/index.tsx +4 -4
- package/js/hooks/useTeacherPendingContractsCount/index.ts +4 -4
- package/js/pages/DashboardCourses/index.spec.tsx +14 -17
- package/js/pages/TeacherDashboardContractsLayout/TeacherDashboardContracts/index.spec.tsx +8 -14
- package/js/pages/TeacherDashboardContractsLayout/TeacherDashboardContracts/index.tsx +4 -12
- package/js/pages/TeacherDashboardContractsLayout/components/BulkDownloadContractButton/index.spec.tsx +11 -11
- package/js/pages/TeacherDashboardContractsLayout/components/BulkDownloadContractButton/index.timer.spec.tsx +10 -13
- package/js/pages/TeacherDashboardContractsLayout/components/BulkDownloadContractButton/index.tsx +4 -4
- package/js/pages/TeacherDashboardContractsLayout/components/ContractActionsBar/index.spec.tsx +20 -28
- package/js/pages/TeacherDashboardContractsLayout/components/ContractActionsBar/index.tsx +8 -11
- package/js/pages/TeacherDashboardContractsLayout/components/SignOrganizationContractButton/index.spec.tsx +6 -6
- package/js/pages/TeacherDashboardContractsLayout/components/SignOrganizationContractButton/index.tsx +4 -4
- package/js/pages/TeacherDashboardContractsLayout/hooks/useCheckContractArchiveExists/index.spec.tsx +7 -7
- package/js/pages/TeacherDashboardContractsLayout/hooks/useCheckContractArchiveExists/index.tsx +5 -5
- package/js/pages/TeacherDashboardContractsLayout/hooks/useDownloadContractArchive/contractArchiveLocalStorage.spec.ts +21 -28
- package/js/pages/TeacherDashboardContractsLayout/hooks/useDownloadContractArchive/contractArchiveLocalStorage.ts +13 -23
- package/js/pages/TeacherDashboardContractsLayout/hooks/useDownloadContractArchive/index.spec.tsx +11 -13
- package/js/pages/TeacherDashboardContractsLayout/hooks/useDownloadContractArchive/index.tsx +6 -6
- package/js/pages/TeacherDashboardContractsLayout/hooks/useHasContractToDownload/index.tsx +3 -6
- package/js/pages/TeacherDashboardContractsLayout/hooks/useTeacherContractFilters/index.spec.tsx +16 -16
- package/js/pages/TeacherDashboardContractsLayout/hooks/useTeacherContractFilters/index.tsx +4 -4
- package/js/pages/TeacherDashboardContractsLayout/hooks/useTeacherContractsToSign.tsx +4 -7
- package/js/pages/TeacherDashboardCourseLearnersLayout/hooks/useCourseLearnersFilters/index.spec.tsx +21 -21
- package/js/pages/TeacherDashboardCourseLearnersLayout/hooks/useCourseLearnersFilters/index.ts +5 -10
- package/js/pages/TeacherDashboardCourseLearnersLayout/index.spec.tsx +61 -79
- package/js/pages/TeacherDashboardCourseLearnersLayout/index.tsx +1 -1
- package/js/pages/TeacherDashboardCoursesLoader/index.spec.tsx +11 -11
- package/js/pages/TeacherDashboardOrganizationCourseLoader/index.spec.tsx +11 -11
- package/js/pages/TeacherDashboardTraining/TeacherDashboardTrainingLoader.tsx +7 -7
- package/js/pages/TeacherDashboardTraining/index.spec.tsx +25 -33
- package/js/pages/TeacherDashboardTraining/index.tsx +12 -20
- package/js/types/Joanie.ts +25 -22
- package/js/utils/test/factories/joanie.ts +14 -11
- package/js/utils/test/mockCourseProductWithOrder.ts +4 -4
- package/js/widgets/Dashboard/components/DashboardItem/Enrollment/DashboardItemEnrollment.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/Enrollment/ProductCertificateFooter/index.spec.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrder.tsx +3 -3
- package/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderContract.useUnionResource.cache.spec.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/Order/Installment/index.tsx +4 -4
- package/js/widgets/Dashboard/components/DashboardItem/stories.mock.ts +1 -1
- package/js/widgets/Dashboard/components/DashboardSidebar/components/ContractNavLink/index.spec.tsx +23 -28
- package/js/widgets/Dashboard/components/DashboardSidebar/components/ContractNavLink/index.tsx +4 -8
- package/js/widgets/Dashboard/components/TeacherDashboardCourseSidebar/index.spec.tsx +17 -27
- package/js/widgets/Dashboard/components/TeacherDashboardCourseSidebar/index.tsx +16 -25
- package/js/widgets/Dashboard/components/TeacherDashboardCourseSidebar/utils.ts +4 -4
- package/js/widgets/Dashboard/components/TeacherDashboardOrganizationSidebar/index.tsx +3 -7
- package/js/widgets/Dashboard/utils/teacherDashboardPaths.tsx +4 -4
- package/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/CourseProductItemFooter/index.tsx +10 -18
- package/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/index.spec.tsx +81 -99
- package/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/index.stories.tsx +6 -4
- package/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/index.tsx +20 -31
- package/js/widgets/SyllabusCourseRunsList/index.spec.tsx +8 -8
- package/package.json +1 -1
- package/js/hooks/useCourseProductRelation/index.ts +0 -44
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useJoanieApi } from 'contexts/JoanieApiContext';
|
|
2
|
-
import {
|
|
2
|
+
import { Offer, Organization } from 'types/Joanie';
|
|
3
3
|
import { browserDownloadFromBlob } from 'utils/download';
|
|
4
4
|
import { HttpStatusCode } from 'utils/errors/HttpError';
|
|
5
5
|
import { handle } from 'utils/errors/handle';
|
|
@@ -53,11 +53,11 @@ const useContractArchive = () => {
|
|
|
53
53
|
},
|
|
54
54
|
create: async (
|
|
55
55
|
organizationId?: Organization['id'],
|
|
56
|
-
|
|
56
|
+
offerId?: Offer['id'],
|
|
57
57
|
): Promise<string> => {
|
|
58
58
|
const response = await api.user.contracts.zip_archive.create({
|
|
59
59
|
organization_id: organizationId,
|
|
60
|
-
|
|
60
|
+
offer_id: offerId,
|
|
61
61
|
});
|
|
62
62
|
|
|
63
63
|
return extractArchiveId(response.url);
|
|
@@ -2,13 +2,13 @@ import { renderHook, waitFor } from '@testing-library/react';
|
|
|
2
2
|
import { QueryClient } from '@tanstack/react-query';
|
|
3
3
|
import fetchMock from 'fetch-mock';
|
|
4
4
|
import { PropsWithChildren } from 'react';
|
|
5
|
-
import { CourseListItem,
|
|
5
|
+
import { CourseListItem, Offer } from 'types/Joanie';
|
|
6
6
|
import { RichieContextFactory as mockRichieContextFactory } from 'utils/test/factories/richie';
|
|
7
7
|
import { createTestQueryClient } from 'utils/test/createTestQueryClient';
|
|
8
8
|
import { SessionProvider } from 'contexts/SessionContext';
|
|
9
9
|
import { getRoutes } from 'api/joanie';
|
|
10
10
|
import { mockPaginatedResponse } from 'utils/test/mockPaginatedResponse';
|
|
11
|
-
import { CourseListItemFactory,
|
|
11
|
+
import { CourseListItemFactory, OfferFactory } from 'utils/test/factories/joanie';
|
|
12
12
|
import { BaseJoanieAppWrapper } from 'utils/test/wrappers/BaseJoanieAppWrapper';
|
|
13
13
|
import { useCourseProductUnion } from '.';
|
|
14
14
|
|
|
@@ -41,12 +41,12 @@ const renderUseCourseProductUnion = ({ organizationId }: { organizationId?: stri
|
|
|
41
41
|
|
|
42
42
|
describe('useCourseProductUnion', () => {
|
|
43
43
|
let courseList: CourseListItem[];
|
|
44
|
-
let
|
|
44
|
+
let offerList: Offer[];
|
|
45
45
|
let nbApiCalls: number;
|
|
46
46
|
|
|
47
47
|
beforeEach(() => {
|
|
48
48
|
courseList = CourseListItemFactory().many(6);
|
|
49
|
-
|
|
49
|
+
offerList = OfferFactory().many(6);
|
|
50
50
|
|
|
51
51
|
fetchMock.get('https://joanie.endpoint/api/v1.0/orders/', [], { overwriteRoutes: true });
|
|
52
52
|
fetchMock.get('https://joanie.endpoint/api/v1.0/credit-cards/', [], { overwriteRoutes: true });
|
|
@@ -59,38 +59,38 @@ describe('useCourseProductUnion', () => {
|
|
|
59
59
|
fetchMock.restore();
|
|
60
60
|
});
|
|
61
61
|
|
|
62
|
-
it('should call courses and
|
|
62
|
+
it('should call courses and offer endpoints', async () => {
|
|
63
63
|
const ROUTES = getRoutes();
|
|
64
64
|
const coursesUrl = ROUTES.courses.get.replace(':id/', '');
|
|
65
|
-
const
|
|
65
|
+
const offersUrl = ROUTES.offers.get.replace(':id/', '');
|
|
66
66
|
fetchMock.get(
|
|
67
67
|
`${coursesUrl}?has_listed_course_runs=true&page=1&page_size=${PER_PAGE}`,
|
|
68
68
|
mockPaginatedResponse(courseList.slice(0, PER_PAGE), 0, false),
|
|
69
69
|
);
|
|
70
70
|
fetchMock.get(
|
|
71
|
-
`${
|
|
72
|
-
mockPaginatedResponse(
|
|
71
|
+
`${offersUrl}?page=1&page_size=${PER_PAGE}`,
|
|
72
|
+
mockPaginatedResponse(offerList.slice(0, PER_PAGE), 0, false),
|
|
73
73
|
);
|
|
74
74
|
const { result } = renderUseCourseProductUnion();
|
|
75
75
|
await waitFor(() => expect(result.current.isLoading).toBe(false));
|
|
76
76
|
expect(result.current.data.length).toBe(PER_PAGE);
|
|
77
77
|
nbApiCalls += 1; // courses page 1
|
|
78
|
-
nbApiCalls += 1; //
|
|
78
|
+
nbApiCalls += 1; // offers page 1
|
|
79
79
|
const calledUrls = fetchMock.calls().map((call) => call[0]);
|
|
80
80
|
expect(calledUrls).toHaveLength(nbApiCalls);
|
|
81
81
|
expect(calledUrls).toContain(
|
|
82
82
|
`${coursesUrl}?has_listed_course_runs=true&page=1&page_size=${PER_PAGE}`,
|
|
83
83
|
);
|
|
84
|
-
expect(calledUrls).toContain(`${
|
|
84
|
+
expect(calledUrls).toContain(`${offersUrl}?page=1&page_size=${PER_PAGE}`);
|
|
85
85
|
}, 25000);
|
|
86
86
|
|
|
87
|
-
it('should call organization courses and organization
|
|
87
|
+
it('should call organization courses and organization offer endpoints', async () => {
|
|
88
88
|
const organizationId = 'DUMMY_ORGANIZATION_ID';
|
|
89
89
|
const ROUTES = getRoutes();
|
|
90
90
|
const organizationCoursesUrl = ROUTES.organizations.courses.get
|
|
91
91
|
.replace(':organization_id', organizationId)
|
|
92
92
|
.replace(':id/', '');
|
|
93
|
-
const
|
|
93
|
+
const organizationOffersUrl = ROUTES.organizations.offers.get
|
|
94
94
|
.replace(':organization_id', organizationId)
|
|
95
95
|
.replace(':id/', '');
|
|
96
96
|
fetchMock.get(
|
|
@@ -98,21 +98,19 @@ describe('useCourseProductUnion', () => {
|
|
|
98
98
|
mockPaginatedResponse(courseList.slice(0, PER_PAGE), 0, false),
|
|
99
99
|
);
|
|
100
100
|
fetchMock.get(
|
|
101
|
-
`${
|
|
102
|
-
mockPaginatedResponse(
|
|
101
|
+
`${organizationOffersUrl}?page=1&page_size=${PER_PAGE}`,
|
|
102
|
+
mockPaginatedResponse(offerList.slice(0, PER_PAGE), 0, false),
|
|
103
103
|
);
|
|
104
104
|
const { result } = renderUseCourseProductUnion({ organizationId: 'DUMMY_ORGANIZATION_ID' });
|
|
105
105
|
await waitFor(() => expect(result.current.isLoading).toBe(false));
|
|
106
106
|
expect(result.current.data.length).toBe(PER_PAGE);
|
|
107
107
|
nbApiCalls += 1; // courses page 1
|
|
108
|
-
nbApiCalls += 1; //
|
|
108
|
+
nbApiCalls += 1; // offers page 1
|
|
109
109
|
const calledUrls = fetchMock.calls().map((call) => call[0]);
|
|
110
110
|
expect(calledUrls).toHaveLength(nbApiCalls);
|
|
111
111
|
expect(calledUrls).toContain(
|
|
112
112
|
`${organizationCoursesUrl}?has_listed_course_runs=true&page=1&page_size=${PER_PAGE}`,
|
|
113
113
|
);
|
|
114
|
-
expect(calledUrls).toContain(
|
|
115
|
-
`${organizationCourseProductRelationsUrl}?page=1&page_size=${PER_PAGE}`,
|
|
116
|
-
);
|
|
114
|
+
expect(calledUrls).toContain(`${organizationOffersUrl}?page=1&page_size=${PER_PAGE}`);
|
|
117
115
|
});
|
|
118
116
|
});
|
|
@@ -3,11 +3,11 @@ import { useJoanieApi } from 'contexts/JoanieApiContext';
|
|
|
3
3
|
import {
|
|
4
4
|
CourseListItem,
|
|
5
5
|
Product,
|
|
6
|
-
|
|
6
|
+
Offer,
|
|
7
7
|
CourseQueryFilters,
|
|
8
|
-
|
|
8
|
+
OfferQueryFilters,
|
|
9
9
|
ProductType,
|
|
10
|
-
|
|
10
|
+
OfferLight,
|
|
11
11
|
} from 'types/Joanie';
|
|
12
12
|
import useUnionResource, { ResourceUnionPaginationProps } from 'hooks/useUnionResource';
|
|
13
13
|
|
|
@@ -41,9 +41,9 @@ export const useCourseProductUnion = ({
|
|
|
41
41
|
const api = useJoanieApi();
|
|
42
42
|
return useUnionResource<
|
|
43
43
|
CourseListItem,
|
|
44
|
-
|
|
44
|
+
Offer | OfferLight,
|
|
45
45
|
CourseQueryFilters,
|
|
46
|
-
|
|
46
|
+
OfferQueryFilters
|
|
47
47
|
>({
|
|
48
48
|
queryAConfig: {
|
|
49
49
|
queryKey: ['user', 'courses'],
|
|
@@ -51,8 +51,8 @@ export const useCourseProductUnion = ({
|
|
|
51
51
|
filters: { query, organization_id: organizationId, has_listed_course_runs: true },
|
|
52
52
|
},
|
|
53
53
|
queryBConfig: {
|
|
54
|
-
queryKey: ['user', '
|
|
55
|
-
fn: api.
|
|
54
|
+
queryKey: ['user', 'offers'],
|
|
55
|
+
fn: api.offers.get,
|
|
56
56
|
filters: { query, organization_id: organizationId, product_type: productType },
|
|
57
57
|
},
|
|
58
58
|
perPage,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineMessages } from 'react-intl';
|
|
2
|
-
import { API, CourseProductQueryFilters,
|
|
2
|
+
import { API, CourseProductQueryFilters, Offer, Product } from 'types/Joanie';
|
|
3
3
|
import { QueryOptions, useResourcesCustom, UseResourcesProps } from 'hooks/useResources';
|
|
4
4
|
import { useJoanieApi } from 'contexts/JoanieApiContext';
|
|
5
5
|
|
|
@@ -19,11 +19,7 @@ export const messages = defineMessages({
|
|
|
19
19
|
/**
|
|
20
20
|
* Joanie Api hook to retrieve a product through its id and a course code.
|
|
21
21
|
*/
|
|
22
|
-
const props: UseResourcesProps<
|
|
23
|
-
CourseProductRelation,
|
|
24
|
-
CourseProductQueryFilters,
|
|
25
|
-
API['courses']['products']
|
|
26
|
-
> = {
|
|
22
|
+
const props: UseResourcesProps<Offer, CourseProductQueryFilters, API['courses']['products']> = {
|
|
27
23
|
queryKey: ['courses-products'],
|
|
28
24
|
apiInterface: () => useJoanieApi().courses.products,
|
|
29
25
|
messages,
|
|
@@ -31,11 +27,11 @@ const props: UseResourcesProps<
|
|
|
31
27
|
|
|
32
28
|
export const useCourseProduct = (
|
|
33
29
|
filters: Omit<CourseProductQueryFilters, 'id'> & { product_id: Product['id'] },
|
|
34
|
-
queryOptions?: QueryOptions<
|
|
30
|
+
queryOptions?: QueryOptions<Offer>,
|
|
35
31
|
) => {
|
|
36
32
|
const { product_id: productId, ...queryfilters } = filters;
|
|
37
33
|
const enabled = !!productId && !!queryfilters.course_id;
|
|
38
|
-
const resources = useResourcesCustom<
|
|
34
|
+
const resources = useResourcesCustom<Offer, CourseProductQueryFilters>({
|
|
39
35
|
...props,
|
|
40
36
|
filters: { id: productId, ...queryfilters },
|
|
41
37
|
queryOptions: { ...queryOptions, enabled },
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { useParams, useSearchParams } from 'react-router';
|
|
2
2
|
import { useOrganizations } from 'hooks/useOrganizations';
|
|
3
|
-
import {
|
|
3
|
+
import { Offer, Organization } from 'types/Joanie';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* return organization id with this priority:
|
|
@@ -9,17 +9,14 @@ import { CourseProductRelation, Organization } from 'types/Joanie';
|
|
|
9
9
|
* * first organization of user's organizations
|
|
10
10
|
*/
|
|
11
11
|
const useDefaultOrganizationId = () => {
|
|
12
|
-
const {
|
|
13
|
-
organizationId: routeOrganizationId,
|
|
14
|
-
courseProductRelationId: routeCourseProductRelationId,
|
|
15
|
-
} = useParams<{
|
|
12
|
+
const { organizationId: routeOrganizationId, offerId: routeOfferId } = useParams<{
|
|
16
13
|
organizationId?: Organization['id'];
|
|
17
|
-
|
|
14
|
+
offerId: Offer['id'];
|
|
18
15
|
}>();
|
|
19
16
|
const [searchParams] = useSearchParams();
|
|
20
17
|
const queryOrganizationId = searchParams.get('organization_id') || undefined;
|
|
21
18
|
const { items: organizations } = useOrganizations(
|
|
22
|
-
{
|
|
19
|
+
{ offer_id: routeOfferId },
|
|
23
20
|
{
|
|
24
21
|
enabled: !routeOrganizationId && !queryOrganizationId,
|
|
25
22
|
},
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { defineMessages } from 'react-intl';
|
|
2
|
+
import { useJoanieApi } from 'contexts/JoanieApiContext';
|
|
3
|
+
import { API, Offer, OfferQueryFilters } from 'types/Joanie';
|
|
4
|
+
import { useResource, useResources, UseResourcesProps } from 'hooks/useResources';
|
|
5
|
+
|
|
6
|
+
const messages = defineMessages({
|
|
7
|
+
errorGet: {
|
|
8
|
+
id: 'hooks.useOffers.errorGet',
|
|
9
|
+
description: 'Error message shown to the user when offer fetch request fails.',
|
|
10
|
+
defaultMessage: 'An error occurred while fetching trainings. Please retry later.',
|
|
11
|
+
},
|
|
12
|
+
errorNotFound: {
|
|
13
|
+
id: 'hooks.useOffers.errorNotFound',
|
|
14
|
+
description: 'Error message shown to the user when no offer matches.',
|
|
15
|
+
defaultMessage: 'Cannot find the training.',
|
|
16
|
+
},
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Joanie Api hook to retrieve/create/update/delete course
|
|
21
|
+
* owned by the authenticated user.
|
|
22
|
+
*/
|
|
23
|
+
const props: UseResourcesProps<Offer, OfferQueryFilters, API['offers']> = {
|
|
24
|
+
queryKey: ['offers'],
|
|
25
|
+
apiInterface: () => useJoanieApi().offers,
|
|
26
|
+
session: true,
|
|
27
|
+
messages,
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export const useOffers = useResources<Offer, OfferQueryFilters, API['offers']>(props);
|
|
31
|
+
|
|
32
|
+
export const useOffer = useResource<Offer, OfferQueryFilters>(props);
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { useEffect, useState } from 'react';
|
|
2
2
|
import { useParams, useSearchParams } from 'react-router';
|
|
3
3
|
import { useCourseProductUnion } from 'hooks/useCourseProductUnion';
|
|
4
|
-
import { CourseListItem,
|
|
4
|
+
import { CourseListItem, OfferLight, ProductType } from 'types/Joanie';
|
|
5
5
|
import { Maybe, Nullable } from 'types/utils';
|
|
6
6
|
|
|
7
7
|
const useTeacherCoursesSearch = () => {
|
|
8
8
|
const { organizationId } = useParams<{ organizationId: string }>();
|
|
9
9
|
const [searchParams, setSearchParams] = useSearchParams();
|
|
10
10
|
const [count, setCount] = useState<Maybe<number>>(0);
|
|
11
|
-
const [courseAndProductList, setCourseAndProductList] = useState<
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
const [courseAndProductList, setCourseAndProductList] = useState<(CourseListItem | OfferLight)[]>(
|
|
12
|
+
[],
|
|
13
|
+
);
|
|
14
14
|
const [isNewSearchLoading, setIsNewSearchLoading] = useState(false);
|
|
15
15
|
const query = searchParams.get('query') || undefined;
|
|
16
16
|
const {
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { useOrganizationContracts } from 'hooks/useContracts';
|
|
2
2
|
import { PER_PAGE } from 'settings';
|
|
3
|
-
import { ContractState,
|
|
3
|
+
import { ContractState, Offer, Organization } from 'types/Joanie';
|
|
4
4
|
|
|
5
5
|
interface UseTeacherPendingContractsCountProps {
|
|
6
6
|
organizationId?: Organization['id'];
|
|
7
|
-
|
|
7
|
+
offerId?: Offer['id'];
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
const useTeacherPendingContractsCount = ({
|
|
11
11
|
organizationId,
|
|
12
|
-
|
|
12
|
+
offerId,
|
|
13
13
|
}: UseTeacherPendingContractsCountProps) => {
|
|
14
14
|
const { items: contracts, meta } = useOrganizationContracts({
|
|
15
15
|
organization_id: organizationId,
|
|
16
|
-
|
|
16
|
+
offer_id: offerId,
|
|
17
17
|
signature_state: ContractState.LEARNER_SIGNED,
|
|
18
18
|
page: 1,
|
|
19
19
|
page_size: PER_PAGE.teacherContractList,
|
|
@@ -5,12 +5,12 @@ import userEvent from '@testing-library/user-event';
|
|
|
5
5
|
import { RichieContextFactory as mockRichieContextFactory } from 'utils/test/factories/richie';
|
|
6
6
|
import { DashboardTest } from 'widgets/Dashboard/components/DashboardTest';
|
|
7
7
|
import {
|
|
8
|
-
|
|
8
|
+
OfferFactory,
|
|
9
9
|
EnrollmentFactory,
|
|
10
10
|
CredentialOrderFactory,
|
|
11
11
|
} from 'utils/test/factories/joanie';
|
|
12
12
|
import { createTestQueryClient } from 'utils/test/createTestQueryClient';
|
|
13
|
-
import { CourseLight,
|
|
13
|
+
import { CourseLight, Offer, Enrollment, CredentialOrder } from 'types/Joanie';
|
|
14
14
|
import { expectNoSpinner, expectSpinner } from 'utils/test/expectSpinner';
|
|
15
15
|
import { expectBannerError, expectBannerInfo, expectNoBannerInfo } from 'utils/test/expectBanner';
|
|
16
16
|
import { Deferred } from 'utils/test/deferred';
|
|
@@ -54,15 +54,15 @@ describe('<DashboardCourses/>', () => {
|
|
|
54
54
|
const perPage = PER_PAGE.useOrdersEnrollments;
|
|
55
55
|
|
|
56
56
|
const mockOrders = (orders: CredentialOrder[], client?: QueryClient) => {
|
|
57
|
-
const
|
|
57
|
+
const offers: Record<string, Offer> = {};
|
|
58
58
|
orders.forEach((order) => {
|
|
59
59
|
const productId = order.product_id;
|
|
60
60
|
const courseCode = (order.course as CourseLight).code;
|
|
61
|
-
const
|
|
61
|
+
const offer = OfferFactory().one();
|
|
62
62
|
|
|
63
63
|
fetchMock.get(
|
|
64
64
|
`https://joanie.endpoint/api/v1.0/courses/${courseCode}/products/${productId}/`,
|
|
65
|
-
|
|
65
|
+
offer,
|
|
66
66
|
);
|
|
67
67
|
|
|
68
68
|
// Allowing this option boosts the test performances. Without it, the tests case with 200+
|
|
@@ -70,28 +70,28 @@ describe('<DashboardCourses/>', () => {
|
|
|
70
70
|
if (client) {
|
|
71
71
|
client.setQueryData(
|
|
72
72
|
['courses-products', JSON.stringify({ id: courseCode, productId })],
|
|
73
|
-
|
|
73
|
+
offer,
|
|
74
74
|
);
|
|
75
75
|
}
|
|
76
|
-
|
|
76
|
+
offers[order.id] = offer;
|
|
77
77
|
});
|
|
78
78
|
orders.sort((a, b) => {
|
|
79
79
|
const aDate = new Date(a.created_on);
|
|
80
80
|
const bDate = new Date(b.created_on);
|
|
81
81
|
return bDate.getTime() - aDate.getTime();
|
|
82
82
|
});
|
|
83
|
-
return { orders,
|
|
83
|
+
return { orders, offers };
|
|
84
84
|
};
|
|
85
85
|
|
|
86
86
|
const expectList = (
|
|
87
87
|
entities: (CredentialOrder | Enrollment)[],
|
|
88
|
-
|
|
88
|
+
offers: Record<string, Offer>,
|
|
89
89
|
) => {
|
|
90
90
|
const itemElements = document.querySelectorAll<HTMLElement>('.dashboard__courses__list__item');
|
|
91
91
|
expect(itemElements.length).toBe(entities.length);
|
|
92
92
|
entities.forEach((entity, i) => {
|
|
93
93
|
const title = isOrder(entity)
|
|
94
|
-
?
|
|
94
|
+
? offers[entity.id].product.title
|
|
95
95
|
: entity.course_run.course?.title;
|
|
96
96
|
getByRole(itemElements[i], 'heading', {
|
|
97
97
|
name: title,
|
|
@@ -146,10 +146,7 @@ describe('<DashboardCourses/>', () => {
|
|
|
146
146
|
|
|
147
147
|
it('should render the list of entities', async () => {
|
|
148
148
|
const client = createTestQueryClient({ user: true });
|
|
149
|
-
const { orders,
|
|
150
|
-
CredentialOrderFactory().many(perPage * 2 + 1),
|
|
151
|
-
client,
|
|
152
|
-
);
|
|
149
|
+
const { orders, offers } = mockOrders(CredentialOrderFactory().many(perPage * 2 + 1), client);
|
|
153
150
|
fetchMock.get(
|
|
154
151
|
'https://joanie.endpoint/api/v1.0/orders/' +
|
|
155
152
|
'?product_type=credential' +
|
|
@@ -255,18 +252,18 @@ describe('<DashboardCourses/>', () => {
|
|
|
255
252
|
await expectNoBannerInfo('You have no enrollments nor orders yet');
|
|
256
253
|
let loadMoreButton = await screen.findByRole('button', { name: 'Load more' });
|
|
257
254
|
expect(loadMoreButton).toBeEnabled();
|
|
258
|
-
await waitFor(() => expectList(entities.slice(0, perPage),
|
|
255
|
+
await waitFor(() => expectList(entities.slice(0, perPage), offers), { interval: 200 });
|
|
259
256
|
|
|
260
257
|
// Click on load more button to load slice 2.
|
|
261
258
|
await act(async () => userEvent.click(loadMoreButton));
|
|
262
|
-
await waitFor(() => expectList(entities.slice(0, perPage * 2),
|
|
259
|
+
await waitFor(() => expectList(entities.slice(0, perPage * 2), offers));
|
|
263
260
|
loadMoreButton = await screen.findByRole('button', { name: 'Load more' });
|
|
264
261
|
expect(loadMoreButton).toBeEnabled();
|
|
265
262
|
|
|
266
263
|
// Activate intersection observe to load slice 3.
|
|
267
264
|
const { onIntersect } = (globalThis as any).__intersection_observer_props__;
|
|
268
265
|
await waitFor(async () => onIntersect());
|
|
269
|
-
await waitFor(() => expectList(entities.slice(0, perPage * 3),
|
|
266
|
+
await waitFor(() => expectList(entities.slice(0, perPage * 3), offers), { timeout: 30000 });
|
|
270
267
|
loadMoreButton = await screen.findByRole('button', { name: 'Load more' });
|
|
271
268
|
expect(loadMoreButton).toBeEnabled();
|
|
272
269
|
}, 15000);
|
|
@@ -3,11 +3,7 @@ import { screen } from '@testing-library/react';
|
|
|
3
3
|
import { getAllByRole } from '@testing-library/dom';
|
|
4
4
|
import userEvent from '@testing-library/user-event';
|
|
5
5
|
import { RichieContextFactory as mockRichieContextFactory } from 'utils/test/factories/richie';
|
|
6
|
-
import {
|
|
7
|
-
ContractFactory,
|
|
8
|
-
CourseProductRelationFactory,
|
|
9
|
-
OrganizationFactory,
|
|
10
|
-
} from 'utils/test/factories/joanie';
|
|
6
|
+
import { ContractFactory, OfferFactory, OrganizationFactory } from 'utils/test/factories/joanie';
|
|
11
7
|
import { expectNoSpinner } from 'utils/test/expectSpinner';
|
|
12
8
|
import { expectBannerError } from 'utils/test/expectBanner';
|
|
13
9
|
import { HttpStatusCode } from 'utils/errors/HttpError';
|
|
@@ -37,8 +33,8 @@ jest.mock('components/ContractFrame', () => ({
|
|
|
37
33
|
describe('pages/TeacherDashboardContracts', () => {
|
|
38
34
|
setupJoanieSession();
|
|
39
35
|
|
|
40
|
-
it('should render a list of contracts for a
|
|
41
|
-
const
|
|
36
|
+
it('should render a list of contracts for a offer', async () => {
|
|
37
|
+
const offer = OfferFactory().one();
|
|
42
38
|
const contracts = ContractFactory({
|
|
43
39
|
student_signed_on: Date.toString(),
|
|
44
40
|
organization_signed_on: Date.toString(),
|
|
@@ -48,26 +44,24 @@ describe('pages/TeacherDashboardContracts', () => {
|
|
|
48
44
|
|
|
49
45
|
// OrganizationContractFilter request all organizations forwho the user have access
|
|
50
46
|
fetchMock.get(
|
|
51
|
-
`https://joanie.endpoint/api/v1.0/organizations/?
|
|
47
|
+
`https://joanie.endpoint/api/v1.0/organizations/?offer_id=${offer.id}`,
|
|
52
48
|
organizations,
|
|
53
49
|
);
|
|
54
50
|
// TeacherDashboardContracts request a paginated list of contracts to display
|
|
55
51
|
fetchMock.get(
|
|
56
|
-
`https://joanie.endpoint/api/v1.0/organizations/${defaultOrganization.id}/contracts/?
|
|
52
|
+
`https://joanie.endpoint/api/v1.0/organizations/${defaultOrganization.id}/contracts/?offer_id=${offer.id}&signature_state=signed&page=1&page_size=25`,
|
|
57
53
|
{ results: contracts, count: 0, previous: null, next: null },
|
|
58
54
|
);
|
|
59
55
|
// useTeacherContractsToSign request all contract to sign, without pagination
|
|
60
56
|
fetchMock.get(
|
|
61
|
-
`https://joanie.endpoint/api/v1.0/organizations/${defaultOrganization.id}/contracts/?signature_state=half_signed&
|
|
57
|
+
`https://joanie.endpoint/api/v1.0/organizations/${defaultOrganization.id}/contracts/?signature_state=half_signed&offer_id=${offer.id}`,
|
|
62
58
|
{ results: [], count: 0, previous: null, next: null },
|
|
63
59
|
);
|
|
64
60
|
|
|
65
61
|
render(<TeacherDashboardContracts />, {
|
|
66
62
|
routerOptions: {
|
|
67
|
-
path: '/courses/:courseId/products/:
|
|
68
|
-
initialEntries: [
|
|
69
|
-
`/courses/${courseProductRelation.course.id}/products/${courseProductRelation.id}/contracts`,
|
|
70
|
-
],
|
|
63
|
+
path: '/courses/:courseId/products/:offerId/contracts',
|
|
64
|
+
initialEntries: [`/courses/${offer.course.id}/products/${offer.id}/contracts`],
|
|
71
65
|
},
|
|
72
66
|
});
|
|
73
67
|
|
|
@@ -42,20 +42,15 @@ const TeacherDashboardContracts = () => {
|
|
|
42
42
|
defaultPage: page ? parseInt(page, 10) : 1,
|
|
43
43
|
pageSize: PER_PAGE.teacherContractList,
|
|
44
44
|
});
|
|
45
|
-
const {
|
|
46
|
-
|
|
47
|
-
courseProductRelationId: routeCourseProductRelationId,
|
|
48
|
-
} = useParams<TeacherDashboardContractsParams>();
|
|
45
|
+
const { organizationId: routeOrganizationId, offerId: routeofferId } =
|
|
46
|
+
useParams<TeacherDashboardContractsParams>();
|
|
49
47
|
// organization list is used to show/hide organization filter.
|
|
50
48
|
// when organizationId is in route's params this filter is always hidden.
|
|
51
49
|
// therefore we don't need to enable this query.
|
|
52
50
|
const {
|
|
53
51
|
items: organizationList,
|
|
54
52
|
states: { isFetched: isOrganizationListFetched },
|
|
55
|
-
} = useOrganizations(
|
|
56
|
-
{ course_product_relation_id: routeCourseProductRelationId },
|
|
57
|
-
{ enabled: !routeOrganizationId },
|
|
58
|
-
);
|
|
53
|
+
} = useOrganizations({ offer_id: routeofferId }, { enabled: !routeOrganizationId });
|
|
59
54
|
const hasMultipleOrganizations = isOrganizationListFetched && organizationList.length > 1;
|
|
60
55
|
const { initialFilters, filters, setFilters } = useTeacherContractFilters();
|
|
61
56
|
const {
|
|
@@ -96,10 +91,7 @@ const TeacherDashboardContracts = () => {
|
|
|
96
91
|
return (
|
|
97
92
|
<div className="teacher-contract-page">
|
|
98
93
|
<div className="dashboard__page__actions">
|
|
99
|
-
<ContractActionsBar
|
|
100
|
-
organizationId={filters.organization_id!}
|
|
101
|
-
courseProductRelationId={filters.course_product_relation_id}
|
|
102
|
-
/>
|
|
94
|
+
<ContractActionsBar organizationId={filters.organization_id!} offerId={filters.offer_id} />
|
|
103
95
|
<ContractFiltersBar
|
|
104
96
|
defaultValues={initialFilters}
|
|
105
97
|
onFiltersChange={handleFiltersChange}
|
|
@@ -9,7 +9,7 @@ import JoanieApiProvider from 'contexts/JoanieApiContext';
|
|
|
9
9
|
import { createTestQueryClient } from 'utils/test/createTestQueryClient';
|
|
10
10
|
import { ContractDownloadStatus } from 'pages/TeacherDashboardContractsLayout/hooks/useDownloadContractArchive';
|
|
11
11
|
|
|
12
|
-
import {
|
|
12
|
+
import { OfferFactory, OrganizationFactory } from 'utils/test/factories/joanie';
|
|
13
13
|
import { unstoreContractArchiveId } from 'pages/TeacherDashboardContractsLayout/hooks/useDownloadContractArchive/contractArchiveLocalStorage';
|
|
14
14
|
import BulkDownloadContractButton from '.';
|
|
15
15
|
|
|
@@ -44,26 +44,26 @@ describe.each([
|
|
|
44
44
|
{
|
|
45
45
|
testLabel: 'for all organization and all trainings',
|
|
46
46
|
organization: undefined,
|
|
47
|
-
|
|
47
|
+
offer: undefined,
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
50
|
testLabel: 'for a training in an organization',
|
|
51
51
|
organization: OrganizationFactory().one(),
|
|
52
|
-
|
|
52
|
+
offer: OfferFactory().one(),
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
55
|
testLabel: 'for an organization',
|
|
56
56
|
organization: OrganizationFactory().one(),
|
|
57
|
-
|
|
57
|
+
offer: undefined,
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
testLabel: 'for a training',
|
|
61
61
|
organization: undefined,
|
|
62
|
-
|
|
62
|
+
offer: OfferFactory().one(),
|
|
63
63
|
},
|
|
64
64
|
])(
|
|
65
65
|
'TeacherDashboardContractsLayout/BulkDownloadContractButton $testLabel',
|
|
66
|
-
({ organization,
|
|
66
|
+
({ organization, offer }) => {
|
|
67
67
|
const Wrapper = ({ children }: PropsWithChildren) => {
|
|
68
68
|
return (
|
|
69
69
|
<IntlProvider locale="en">
|
|
@@ -86,7 +86,7 @@ describe.each([
|
|
|
86
86
|
jest.resetAllMocks();
|
|
87
87
|
unstoreContractArchiveId({
|
|
88
88
|
organizationId: organization ? organization.id : undefined,
|
|
89
|
-
|
|
89
|
+
offerId: offer ? offer.id : undefined,
|
|
90
90
|
});
|
|
91
91
|
});
|
|
92
92
|
|
|
@@ -97,7 +97,7 @@ describe.each([
|
|
|
97
97
|
<Wrapper>
|
|
98
98
|
<BulkDownloadContractButton
|
|
99
99
|
organizationId={organization?.id ?? undefined}
|
|
100
|
-
|
|
100
|
+
offerId={offer?.id ?? undefined}
|
|
101
101
|
/>
|
|
102
102
|
</Wrapper>,
|
|
103
103
|
);
|
|
@@ -118,7 +118,7 @@ describe.each([
|
|
|
118
118
|
<Wrapper>
|
|
119
119
|
<BulkDownloadContractButton
|
|
120
120
|
organizationId={organization?.id ?? undefined}
|
|
121
|
-
|
|
121
|
+
offerId={offer?.id ?? undefined}
|
|
122
122
|
/>
|
|
123
123
|
</Wrapper>,
|
|
124
124
|
);
|
|
@@ -139,7 +139,7 @@ describe.each([
|
|
|
139
139
|
<Wrapper>
|
|
140
140
|
<BulkDownloadContractButton
|
|
141
141
|
organizationId={organization?.id ?? undefined}
|
|
142
|
-
|
|
142
|
+
offerId={offer?.id ?? undefined}
|
|
143
143
|
/>
|
|
144
144
|
</Wrapper>,
|
|
145
145
|
);
|
|
@@ -160,7 +160,7 @@ describe.each([
|
|
|
160
160
|
<Wrapper>
|
|
161
161
|
<BulkDownloadContractButton
|
|
162
162
|
organizationId={organization?.id ?? undefined}
|
|
163
|
-
|
|
163
|
+
offerId={offer?.id ?? undefined}
|
|
164
164
|
/>
|
|
165
165
|
</Wrapper>,
|
|
166
166
|
);
|