-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathbadge-form.gjs
193 lines (175 loc) · 6.39 KB
/
badge-form.gjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
import PixButton from '@1024pix/pix-ui/components/pix-button';
import PixButtonLink from '@1024pix/pix-ui/components/pix-button-link';
import PixCheckbox from '@1024pix/pix-ui/components/pix-checkbox';
import PixInput from '@1024pix/pix-ui/components/pix-input';
import PixTextarea from '@1024pix/pix-ui/components/pix-textarea';
import { fn } from '@ember/helper';
import { on } from '@ember/modifier';
import { action } from '@ember/object';
import { service } from '@ember/service';
import Component from '@glimmer/component';
import { t } from 'ember-intl';
import Card from '../card';
import Criteria from './badge-form/criteria';
export default class BadgeForm extends Component {
@service pixToast;
@service store;
@service router;
BASE_URL = 'https://images.pix.fr/badges/';
badge = {
key: '',
altMessage: '',
message: '',
title: '',
isCertifiable: false,
isAlwaysVisible: false,
campaignThreshold: null,
cappedTubesCriteria: [],
};
imageName = '';
@action
updateFormValue(key, event) {
if (key === 'imageName') {
this.imageName = event.target.value;
} else {
this.badge[key] = event.target.value;
}
}
@action
updateFormCheckBoxValue(key) {
this.badge[key] = !this.badge[key];
}
@action
async submitBadgeCreation(event) {
event.preventDefault();
const hasCampaignCriteria = this.badge.campaignThreshold;
const hasCappedTubesCriteria = this.badge.cappedTubesCriteria.length;
if (!hasCampaignCriteria && !hasCappedTubesCriteria) {
return this.pixToast.sendErrorNotification({
message: "Vous devez sélectionner au moins un critère d'obtention de badge",
});
}
const hasSelectedCappedTubes = this.badge.cappedTubesCriteria[0]?.cappedTubes?.length;
if (hasCappedTubesCriteria && !hasSelectedCappedTubes) {
return this.pixToast.sendErrorNotification({
message: 'Vous devez sélectionner au moins un sujet du profil cible',
});
}
await this._createBadge();
}
async _createBadge() {
try {
const badgeWithFormattedImageUrl = {
...this.badge,
imageUrl: this.BASE_URL + this.imageName,
};
const badge = this.store.createRecord('badge', badgeWithFormattedImageUrl);
await badge.save({
adapterOptions: { targetProfileId: this.args.targetProfile.id },
});
await this.args.targetProfile.reload();
this.pixToast.sendSuccessNotification({ message: 'Le badge a été créé.' });
this.router.transitionTo('authenticated.target-profiles.target-profile.insights');
return badge;
} catch (error) {
console.error(error);
this.pixToast.sendErrorNotification({ message: `${error.errors[0].detail}` });
}
}
<template>
<form class="admin-form admin-form--badge-form" {{on "submit" this.submitBadgeCreation}}>
<h2 class="badge-form__title">Création d'un badge</h2>
<section class="admin-form__content admin-form__content--with-counters">
<Card class="create-target-profile__card" @title="Remplir des informations sur le badge">
<div class="badge-form__text-field">
<PixInput
@id="title"
@value={{this.badge.title}}
@requiredLabel={{t "common.forms.mandatory"}}
{{on "change" (fn this.updateFormValue "title")}}
>
<:label>Nom du badge :</:label>
</PixInput>
</div>
<div class="badge-form__text-field">
<p class="badge-form__information">
<a
class="badge-form__information--link"
href="https://1024pix.github.io/pix-images-list/viewer.html?directory=badges"
target="_blank"
rel="noopener noreferrer"
>
Voir la liste des badges
</a>
</p>
<PixInput
@id="image-name"
@value={{this.imageName}}
@requiredLabel={{t "common.forms.mandatory"}}
placeholder="exemple: clea_num.svg"
{{on "change" (fn this.updateFormValue "imageName")}}
>
<:label>Nom de l'image (svg)</:label>
</PixInput>
</div>
<div class="badge-form__text-field">
<PixInput
@id="alt-message"
@value={{this.badge.altMessage}}
@requiredLabel={{t "common.forms.mandatory"}}
{{on "change" (fn this.updateFormValue "altMessage")}}
>
<:label>Texte alternatif pour l'image :</:label>
</PixInput>
</div>
<div class="badge-form__text-field">
<PixTextarea
@id="message"
@value={{this.badge.message}}
rows="4"
{{on "change" (fn this.updateFormValue "message")}}
>
<:label>Message :</:label>
</PixTextarea>
</div>
<div class="badge-form__text-field">
<PixInput
@id="badge-key"
maxlength="255"
@value={{this.badge.key}}
@requiredLabel={{t "common.forms.mandatory"}}
{{on "change" (fn this.updateFormValue "key")}}
>
<:label>Clé (texte unique , vérifier qu'il n'existe pas) :</:label>
</PixInput>
</div>
<div class="badge-form__check-field">
<PixCheckbox
@checked={{this.badge.isCertifiable}}
{{on "change" (fn this.updateFormCheckBoxValue "isCertifiable")}}
>
<:label>Certifiable</:label>
</PixCheckbox>
</div>
<div class="badge-form__check-field">
<PixCheckbox
@checked={{this.badge.isAlwaysVisible}}
{{on "change" (fn this.updateFormCheckBoxValue "isAlwaysVisible")}}
>
<:label>Lacunes</:label>
</PixCheckbox>
</div>
</Card>
<Criteria @badge={{this.badge}} @areas={{@targetProfile.areas}} />
</section>
<section class="admin-form__actions">
<PixButtonLink @variant="secondary" @route="authenticated.target-profiles.target-profile.insights">
{{t "common.actions.cancel"}}
</PixButtonLink>
<PixButton @variant="success" @type="submit">
Enregistrer le badge
</PixButton>
</section>
</form>
</template>
}