Skip to content

Commit 82b469f

Browse files
feat(admin): add CGU template and component
1 parent faa10a4 commit 82b469f

File tree

3 files changed

+135
-0
lines changed

3 files changed

+135
-0
lines changed

admin/app/components/users/cgu.gjs

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
import { service } from '@ember/service';
2+
import Component from '@glimmer/component';
3+
import dayjs from 'dayjs';
4+
import { t } from 'ember-intl';
5+
6+
export default class Cgu extends Component {
7+
@service accessControl;
8+
@service intl;
9+
10+
get userHasValidatePixAppTermsOfService() {
11+
return this._formatValidatedTermsOfServiceText(this.args.lastTermsOfServiceValidatedAt, this.args.cgu);
12+
}
13+
14+
get userHasValidatePixOrgaTermsOfService() {
15+
return this._formatValidatedTermsOfServiceText(
16+
this.args.lastPixOrgaTermsOfServiceValidatedAt,
17+
this.args.pixOrgaTermsOfServiceAccepted,
18+
);
19+
}
20+
21+
get userHasValidatePixCertifTermsOfService() {
22+
return this._formatValidatedTermsOfServiceText(
23+
this.args.lastPixCertifTermsOfServiceValidatedAt,
24+
this.args.pixCertifTermsOfServiceAccepted,
25+
);
26+
}
27+
_formatValidatedTermsOfServiceText(date, hasValidatedTermsOfService) {
28+
if (!hasValidatedTermsOfService) {
29+
return this.intl.t('components.users.user-detail-personal-information.cgu.validation.status.non-validated');
30+
}
31+
32+
return date
33+
? this.intl.t('components.users.user-detail-personal-information.cgu.validation.status.validated-with-date', {
34+
formattedDate: dayjs(date).format('DD/MM/YYYY'),
35+
})
36+
: this.intl.t('components.users.user-detail-personal-information.cgu.validation.status.validated');
37+
}
38+
39+
<template>
40+
<header class="page-section__header">
41+
<h2 class="page-section__title">CGU</h2>
42+
</header>
43+
44+
<ul class="cgu__cgu-list">
45+
<li class="cgu__cgu-information">
46+
{{t "components.users.user-detail-personal-information.cgu.validation.domain.pix-app"}}
47+
{{this.userHasValidatePixAppTermsOfService}}</li>
48+
49+
<li class="cgu__cgu-information">
50+
{{t "components.users.user-detail-personal-information.cgu.validation.domain.pix-orga"}}
51+
{{this.userHasValidatePixOrgaTermsOfService}}</li>
52+
53+
<li class="cgu__cgu-information">
54+
{{t "components.users.user-detail-personal-information.cgu.validation.domain.pix-certif"}}
55+
{{this.userHasValidatePixCertifTermsOfService}}</li>
56+
</ul>
57+
</template>
58+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<section class="page-section">
2+
<Users::Cgu
3+
@cgu={{@model.cgu}}
4+
@pixOrgaTermsOfServiceAccepted={{@model.pixOrgaTermsOfServiceAccepted}}
5+
@pixCertifTermsOfServiceAccepted={{@model.pixCertifTermsOfServiceAccepted}}
6+
@lastTermsOfServiceValidatedAt={{@model.lastTermsOfServiceValidatedAt}}
7+
@lastPixOrgaTermsOfServiceValidatedAt={{@model.lastPixOrgaTermsOfServiceValidatedAt}}
8+
@lastPixCertifTermsOfServiceValidatedAt={{@model.lastPixCertifTermsOfServiceValidatedAt}}
9+
/>
10+
</section>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
import { render } from '@1024pix/ember-testing-library';
2+
import Service from '@ember/service';
3+
import { setupRenderingTest } from 'ember-qunit';
4+
import Cgu from 'pix-admin/components/users/cgu';
5+
import { module, test } from 'qunit';
6+
7+
import setupIntl from '../../../helpers/setup-intl';
8+
9+
module('Integration | Component | cgu', function (hooks) {
10+
setupRenderingTest(hooks);
11+
setupIntl(hooks);
12+
13+
class AccessControlStub extends Service {
14+
hasAccessToUsersActionsScope = true;
15+
}
16+
17+
hooks.beforeEach(function () {
18+
this.intl = this.owner.lookup('service:intl');
19+
this.owner.register('service:access-control', AccessControlStub);
20+
});
21+
22+
test('displays correct Terms of Service status for Pix App, Pix Orga and Pix Certif', async function (assert) {
23+
//Given
24+
25+
const cgu = true;
26+
const lastTermsOfServiceValidatedAt = new Date('2021-12-10');
27+
const pixOrgaTermsOfServiceAccepted = true;
28+
const lastPixOrgaTermsOfServiceValidatedAt = null;
29+
const pixCertifTermsOfServiceAccepted = false;
30+
const lastPixCertifTermsOfServiceValidatedAt = null;
31+
32+
const appDomain = this.intl.t('components.users.user-detail-personal-information.cgu.validation.domain.pix-app');
33+
const validatedWithDate = this.intl.t(
34+
'components.users.user-detail-personal-information.cgu.validation.status.validated-with-date',
35+
{ formattedDate: '10/12/2021' },
36+
);
37+
38+
const orgaDomain = this.intl.t('components.users.user-detail-personal-information.cgu.validation.domain.pix-orga');
39+
const validated = this.intl.t('components.users.user-detail-personal-information.cgu.validation.status.validated');
40+
41+
const certifDomain = this.intl.t(
42+
'components.users.user-detail-personal-information.cgu.validation.domain.pix-certif',
43+
);
44+
const nonValidated = this.intl.t(
45+
'components.users.user-detail-personal-information.cgu.validation.status.non-validated',
46+
);
47+
48+
//When
49+
const screen = await render(
50+
<template>
51+
<Cgu
52+
@lastTermsOfServiceValidatedAt={{lastTermsOfServiceValidatedAt}}
53+
@cgu={{cgu}}
54+
@lastPixOrgaTermsOfServiceValidatedAt={{lastPixOrgaTermsOfServiceValidatedAt}}
55+
@pixOrgaTermsOfServiceAccepted={{pixOrgaTermsOfServiceAccepted}}
56+
@lastPixCertifTermsOfServiceValidatedAt={{lastPixCertifTermsOfServiceValidatedAt}}
57+
@pixCertifTermsOfServiceAccepted={{pixCertifTermsOfServiceAccepted}}
58+
/>
59+
</template>,
60+
);
61+
62+
//Then
63+
assert.dom(screen.queryByText(`${appDomain} ${validatedWithDate}`)).exists();
64+
assert.dom(screen.queryByText(`${orgaDomain} ${validated}`)).exists();
65+
assert.dom(screen.queryByText(`${certifDomain} ${nonValidated}`)).exists();
66+
});
67+
});

0 commit comments

Comments
 (0)