forked from TheKlem/TheKlem.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
304 lines (238 loc) · 16 KB
/
index.html
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="TheKlem">
<title>Convertisseur stupide et amusant pour les journalistes</title>
<link href="styles.css" rel="stylesheet" media="all" type="text/css">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@DrScratch">
<meta name="twitter:creator" content="Clément EGGER">
<meta name="twitter:title" content="Dumb Converter for smart journalists, by @DrScratch">
<meta name="twitter:description" content="Grâce à ce site tu peux enfin convertir n'importe-quoi en véritable #nimportequoi.<p>Bien entendu, ce site s'adresse avant tout aux journalistes en mal d'inspiration.">
<meta name="twitter:image" content="https://theklem.github.io/img/basset.jpg">
<!-- Matomo RGPD Commpliant analytics-->
<script>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="https://mesvolontes.matomo.cloud/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '8']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src='//cdn.matomo.cloud/mesvolontes.matomo.cloud/matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body>
<h1 align="center">CONVERTISSEUR STUPIDE</h1>
<div id="message" align="center">Convertir n'importe-quoi en véritable #nimportequoi. Ce site s'adresse avant tout aux <strong>journalistes</strong> en mal d'inspiration. <p>Une erreur étant toujours possible si vous repérez une erreur de conversion contactez-moi sur Twitter : <a href="https://twitter.com/DrScratch">DrScratch</a>.</div>
<div id="form-container">
<form id="conversion-form">
<select id="conversion-type" name="conversionType" size="1">
</select>
<div id="conversion-details" class="conversion-container" style="display:none;">
<div class="input-container">
<input type="text" id="initial-value" name="initialValue" size="7" value="1"/>
<select id="start-unit" name="startUnit">
<option value="">Sélectionnez une unité</option>
</select>
</div>
<div class="output-container">
<span>EN</span>
<select id="destination-unit" name="destinationUnit">
<option value="">Sélectionnez une unité</option>
</select><br><br>
</div>
</div>
</form>
</div>
<div id="result-container" style="display:none">
</div>
<div id="credits" class="credits"> Tant qu'à faire, un peu d'autopromo, découvrez :
<div class="containerCredits">
<div class="columnCredits"><a href="https://ziplo.fr" target="_new"><img class="logo" src="logo-ziplo.png"></a><br/>Un vrai service joli (pas comme ici), bien fait et très utile. <a href="https://ziplo.fr" target="_new">Ziplo.fr</a> est le seul service de transfert de fichiers 100% souverain (ni AWS, ni Google, ni Azure). Ziplo est aussi et surtout un service de création de preuves numériques (aka preuve d'antériorité) pour défendre, entre autres, ses droits d'auteur. Comme la fameuse enveloppe de l'INPI mais en mieux. </div>
<div> </div>
<div class="columnCredits"><a href="https://www.kayz.fr" target="_new"><img class="logo" src="logo-kayz.png"></a><br/>Je participe également au projet <a href="https://www.kayz.fr" target="_new">Kayz</a> un service pas forcément drôle mais auquel tout le monde devrait s'abonner, parce que c'est encore plus sûr que les impôts.</div>
</div>
</div>
<!-- valeurs, traitements et résultats -->
<script type="text/javascript">
const integerFormatter = new Intl.NumberFormat('fr-FR', {
maximumFractionDigits: 0
});
const smallNumberFormatter = new Intl.NumberFormat('fr-FR', {
maximumFractionDigits: 8,
minimumFractionDigits: 8,
});
const smallNumberInvertedFormatter = new Intl.NumberFormat('fr-FR', {
maximumFractionDigits: 12,
minimumFractionDigits: 12,
});
const numberDisplayFormatter = new Intl.NumberFormat('fr-FR', {
maximumFractionDigits: 3,
minimumFractionDigits: 3
});
const numberInvertedDisplayFormatter = new Intl.NumberFormat('fr-FR', {
maximumFractionDigits: 2,
minimumFractionDigits: 2
});
function NewGroup(title,style){
return {label:title,
style:style,
conversions:[],
pushConversions: function(arrConv){
arrConv.forEach(con => {
this.conversions.push(NewConversion(con[0], con[1], con[2] ? con[2]:''));
})
}
}
}
function NewConversion(title, value, style){
return {label:title, value:value, style:style}
}
const AppConversions = {
Categories : [],
Conversions : {},
CategorySelectElement: document.getElementById('conversion-type'),
FormElement : document.getElementById('conversion-details'),
InputSelectElement : document.getElementById('start-unit'),
OutputSelectElement: document.getElementById('destination-unit'),
ValueElement: document.getElementById('initial-value'),
ResultContainerElement: document.getElementById('result-container'),
Value : parseFloat(1),
InputUnitValue: parseFloat(0),
InputUnitLabel: "",
OutputUnitValue: parseFloat(0),
OutputUnitLabel: "",
Result : parseFloat(0),
InverseResult: parseFloat(0),
AddCategory: function(value, title, style) {
this.Categories.push({value:value, title:title, style:style});
},
AddGroup: function(category, group_label, group_style, conversions){
var group = NewGroup(group_label, group_style);
group.pushConversions([...conversions])
const categoryExists = this.Categories.some(cat => cat.value == category);
if(!categoryExists) {return console.log("La catégorie du groupe de conversion n'existe pas. Catégorie : ", category)}
if(this.Conversions[category]){this.Conversions[category].push(group)}
else {this.Conversions[category]=[group]}
},
init(){
this.displayForm(false);
this.loadSelectCategories();
this.LoadEventsChange();
},
loadSelectCategories: function(){
if(!this.CategorySelectElement){return console.log("No Select Category Html Element");}
var first_line = '<option value="" selected disabled> Convertir quoi</option>';
this.CategorySelectElement.innerHTML = first_line
this.Categories.forEach(element => {
this.CategorySelectElement.innerHTML += `<option style="${element.style ? element.style : '' }" value="${element.value}">${element.title}</option>`
});
},
displayForm : function(display){
if(display){
this.FormElement.style.display = "flex";
}else{
this.FormElement.style.display = "none";
}
},
loadTypesFromCategory: function(category){
this.InputSelectElement.innerHTML = "";
this.OutputSelectElement.innerHTML = "";
if(category == ""){
this.displayForm(false)
return;
}
const categoryExists = this.Categories.some(cat => cat.value == category);
if(!categoryExists) {return console.log("La catégorie demandée pour les types n'existe pas. Catégorie : ", category)}
this.OutputSelectElement.innerHTML += "<option selected disabled>Sélectionnez une unité</option>";
this.Conversions[category].forEach(group => {
this.InputSelectElement.innerHTML += `<optgroup label="${group.label}" style="${group.style ? group.style : ''}">`
this.OutputSelectElement.innerHTML += `<optgroup label="${group.label}" style="${group.style ? group.style : ''}">`
group["conversions"].forEach( conversion => {
var s = `<option value="${conversion.value}" style="${conversion.style ? conversion.style : ''}">${conversion.label}</option>`;
this.InputSelectElement.innerHTML += s;
this.OutputSelectElement.innerHTML += s;
});
this.InputSelectElement.innerHTML += `</optgroup>`;
this.OutputSelectElement.innerHTML += `</optgroup>`;
});
this.displayForm(true)
this.InputSelectElement.selectedIndex = 3;
this.InputSelectElement.dispatchEvent(new Event('change'));
},
LoadEventsChange: function(){
this.CategorySelectElement.addEventListener('change', function(event){
CategorySelectElement = event.target;
var category = CategorySelectElement[CategorySelectElement.selectedIndex].value;
AppConversions.loadTypesFromCategory(category);
});
this.InputSelectElement.addEventListener('change', function(event){
AppConversions.InputUnitValue = parseFloat(AppConversions.InputSelectElement[AppConversions.InputSelectElement.selectedIndex].value);
AppConversions.InputUnitLabel = AppConversions.InputSelectElement[AppConversions.InputSelectElement.selectedIndex].innerText;
AppConversions.calcul();
});
this.OutputSelectElement.addEventListener('change', function(event){
AppConversions.OutputUnitValue = parseFloat(AppConversions.OutputSelectElement[AppConversions.OutputSelectElement.selectedIndex].value);
AppConversions.OutputUnitLabel = AppConversions.OutputSelectElement[AppConversions.OutputSelectElement.selectedIndex].innerText;
AppConversions.calcul();
});
this.ValueElement.addEventListener('input', function(event){
AppConversions.Value = parseFloat(AppConversions.ValueElement.value);
AppConversions.calcul();
})
},
showResult: function(){
this.ResultContainerElement.style.display = "block";
this.ResultContainerElement.innerHTML = `<p><strong>${this.Value}</strong> ${this.InputUnitLabel} est égal à ${this.Result} ${this.OutputUnitLabel}</br>`
//this.ResultContainerElement.innerHTML += `Il faut multiplier [${this.Value} ${this.InputUnitLabel}] par <strong>${this.InverseResult}</strong> pour faire <strong>1</strong> [${this.OutputUnitLabel}]</br>`
this.ResultContainerElement.innerHTML += `Ou encore <strong>1</strong> [${this.OutputUnitLabel}] égal <strong>${this.InverseResult}</strong> fois [${this.Value} ${this.InputUnitLabel}] </p>`
this.ResultContainerElement.innerHTML += `<p><a target="_blank" href="https://twitter.com/intent/tweet?text=Le+Sachiez-tu+%3F%3F%3F+%0D%0A%0D%0A${this.Value}+${this.InputUnitLabel}++est+%C3%A9gal+%C3%A0+${this.Result}+${this.OutputUnitLabel}.%0D%0A%0D%0AJ%27ai+fait+une+conversion+stupide+via+https%3A%2F%2Ftheklem.github.io%2F"><img src="Twitter-Logo-100.png" width="30" height="29" align="middle"> Partager ce résultat sur twitter</a></p>`;
},
hideResult: function(){
this.ResultContainerElement.style.display = "none";
},
calcul: function(){
if(this.CategorySelectElement.selectedIndex == 0 || isNaN(this.Value) || this.InputUnitValue == 0 || this.OutputUnitValue == 0){
this.hideResult();
return;
}
const conversionResult = ((this.Value * this.InputUnitValue) / this.OutputUnitValue);
const invertConversionResult = 1 / conversionResult;
if (Number.isInteger(conversionResult)) {
this.Result = integerFormatter.format(conversionResult);
} else if (conversionResult.toFixed(1).substring(0, 3) === "0.0") {
this.Result = smallNumberFormatter.format(conversionResult);
} else {
this.Result = numberDisplayFormatter.format(conversionResult);
}
if (Number.isInteger(invertConversionResult)) {
this.InverseResult = integerFormatter.format(invertConversionResult);
} else if (invertConversionResult.toFixed(1).substring(0, 3) === "0.0") {
this.InverseResult = smallNumberInvertedFormatter.format(invertConversionResult);
} else {
this.InverseResult = numberInvertedDisplayFormatter.format(invertConversionResult);
}
this.showResult();
}
}
</script>
<script src="./categories/volume.js"></script>
<script src="./categories/weight.js"></script>
<script src="./categories/distance.js"></script>
<script src="./categories/surface.js"></script>
<script src="./categories/money.js"></script>
<script src="./categories/population.js"></script>
<script src="./categories/dosimetry.js"></script>
<script src="./categories/caloriescourte.js"></script>
<!-- <script src="./categories/calories.js"></script> -->
<script type="text/javascript">
AppConversions.init();
</script>
</body>
</html>