Skip to content

Commit aec03ce

Browse files
feat(admin): add CGU template and component
1 parent 5b8a70a commit aec03ce

File tree

3 files changed

+129
-0
lines changed

3 files changed

+129
-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,61 @@
1+
import { render } from '@1024pix/ember-testing-library';
2+
import { setupRenderingTest } from 'ember-qunit';
3+
import Cgu from 'pix-admin/components/users/cgu';
4+
import { module, test } from 'qunit';
5+
6+
import setupIntl from '../../../helpers/setup-intl';
7+
8+
module('Integration | Component | cgu', function (hooks) {
9+
setupRenderingTest(hooks);
10+
setupIntl(hooks);
11+
12+
hooks.beforeEach(function () {
13+
this.intl = this.owner.lookup('service:intl');
14+
});
15+
16+
test('displays correct Terms of Service status for Pix App, Pix Orga and Pix Certif', async function (assert) {
17+
//Given
18+
19+
const cgu = true;
20+
const lastTermsOfServiceValidatedAt = new Date('2021-12-10');
21+
const pixOrgaTermsOfServiceAccepted = true;
22+
const lastPixOrgaTermsOfServiceValidatedAt = null;
23+
const pixCertifTermsOfServiceAccepted = false;
24+
const lastPixCertifTermsOfServiceValidatedAt = null;
25+
26+
const appDomain = this.intl.t('components.users.user-detail-personal-information.cgu.validation.domain.pix-app');
27+
const validatedWithDate = this.intl.t(
28+
'components.users.user-detail-personal-information.cgu.validation.status.validated-with-date',
29+
{ formattedDate: '10/12/2021' },
30+
);
31+
32+
const orgaDomain = this.intl.t('components.users.user-detail-personal-information.cgu.validation.domain.pix-orga');
33+
const validated = this.intl.t('components.users.user-detail-personal-information.cgu.validation.status.validated');
34+
35+
const certifDomain = this.intl.t(
36+
'components.users.user-detail-personal-information.cgu.validation.domain.pix-certif',
37+
);
38+
const nonValidated = this.intl.t(
39+
'components.users.user-detail-personal-information.cgu.validation.status.non-validated',
40+
);
41+
42+
//When
43+
const screen = await render(
44+
<template>
45+
<Cgu
46+
@lastTermsOfServiceValidatedAt={{lastTermsOfServiceValidatedAt}}
47+
@cgu={{cgu}}
48+
@lastPixOrgaTermsOfServiceValidatedAt={{lastPixOrgaTermsOfServiceValidatedAt}}
49+
@pixOrgaTermsOfServiceAccepted={{pixOrgaTermsOfServiceAccepted}}
50+
@lastPixCertifTermsOfServiceValidatedAt={{lastPixCertifTermsOfServiceValidatedAt}}
51+
@pixCertifTermsOfServiceAccepted={{pixCertifTermsOfServiceAccepted}}
52+
/>
53+
</template>,
54+
);
55+
56+
//Then
57+
assert.dom(screen.queryByText(`${appDomain} ${validatedWithDate}`)).exists();
58+
assert.dom(screen.queryByText(`${orgaDomain} ${validated}`)).exists();
59+
assert.dom(screen.queryByText(`${certifDomain} ${nonValidated}`)).exists();
60+
});
61+
});

0 commit comments

Comments
 (0)