2023-03-28 16:51:44 +02:00
|
|
|
/*
|
|
|
|
Parcoursup API (PAPI)
|
|
|
|
Comprend un set de wrapper afin d'accéder plus aisément aux informations de l'API parcoursup
|
|
|
|
*/
|
|
|
|
|
|
|
|
class PAPI {
|
|
|
|
static dataset = "fr-esr-parcoursup";
|
|
|
|
static timezone = "Europe%2FBerlin";
|
|
|
|
static searchURL = `https://data.enseignementsup-recherche.gouv.fr/api/records/1.0/search/?dataset=${PAPI.dataset}&timezone=${PAPI.timezone}`;
|
|
|
|
static async fetchFilieres() {
|
|
|
|
let request = await fetch(`${PAPI.searchURL}&rows=0&sort=tri&facet=fili`);
|
|
|
|
let result = await request.json();
|
|
|
|
return result["facet_groups"][0]["facets"];
|
|
|
|
}
|
|
|
|
static async fetchFiliere(filiere) {
|
|
|
|
let request = await fetch(`${PAPI.searchURL}&rows=0&sort=tri&facet=form_lib_voe_acc&refine.fili=${filiere}`);
|
|
|
|
let result = await request.json();
|
|
|
|
return result["facet_groups"][0]["facets"];
|
|
|
|
}
|
|
|
|
static async fetchSpecialites(specialite) {
|
|
|
|
let request = await fetch(`${PAPI.searchURL}&rows=0&sort=tri&facet=fil_lib_voe_acc&refine.form_lib_voe_acc=${specialite}`);
|
|
|
|
let result = await request.json();
|
|
|
|
return result["facet_groups"][0]["facets"];
|
|
|
|
}
|
|
|
|
static async fetchEtablissement(filiere, sousfiliere, soussousfiliere) {
|
|
|
|
let request = await fetch(`${PAPI.searchURL}&refine.fil_lib_voe_acc=${soussousfiliere}&refine.form_lib_voe_acc=${sousfiliere}&refine.fili=${filiere}`);
|
|
|
|
let result = await request.json();
|
|
|
|
return result["records"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-30 00:54:13 +02:00
|
|
|
async function fetchEtablissement(course) {
|
|
|
|
return PAPI.fetchEtablissement(course.fili, course.sousfili, course.soussousfili);
|
2023-03-28 16:51:44 +02:00
|
|
|
}
|
2023-03-28 10:15:32 +02:00
|
|
|
var school = {
|
|
|
|
css: null,
|
2023-03-28 16:51:44 +02:00
|
|
|
exports: function search() {
|
|
|
|
return {
|
|
|
|
onBeforeMount(props, state) {
|
2023-03-30 00:54:13 +02:00
|
|
|
},
|
|
|
|
onUpdated(props, state) {
|
|
|
|
if (!props.shouldShowInfos) return;
|
|
|
|
fetchEtablissement(props.course).then(response => {
|
|
|
|
response.forEach(etablissement => {
|
2023-03-28 16:51:44 +02:00
|
|
|
// calcul la moyenne
|
|
|
|
let pct_sansmention = etablissement.fields.pct_sansmention;
|
|
|
|
let pct_AB = etablissement.fields.pct_ab;
|
|
|
|
let pct_B = etablissement.fields.pct_b;
|
|
|
|
let pct_TB = etablissement.fields.pct_tb;
|
|
|
|
let pct_TBF = etablissement.fields.pct_tbf;
|
2023-03-29 16:50:48 +02:00
|
|
|
|
|
|
|
// On prend la moyenne des moyennes comprises dans la mention
|
|
|
|
// Exemple : Assez bien est entre 12 et 14 donc 13.
|
2023-03-30 00:54:13 +02:00
|
|
|
etablissement.fields.moyenne = (pct_TBF * 19 + pct_TB * 17 + pct_B * 15 + pct_AB * 13 + pct_sansmention * 11) / 100;
|
|
|
|
});
|
|
|
|
this.update({
|
|
|
|
items: response
|
2023-03-28 16:51:44 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2023-03-28 10:15:32 +02:00
|
|
|
},
|
2023-03-30 00:54:13 +02:00
|
|
|
template: (template, expressionTypes, bindingTypes, getComponent) => template('<div expr1453="expr1453" class="box p-2 m-2"></div>', [{
|
|
|
|
type: bindingTypes.IF,
|
|
|
|
evaluate: _scope => _scope.props.shouldShowInfos,
|
|
|
|
redundantAttribute: 'expr1453',
|
|
|
|
selector: '[expr1453]',
|
|
|
|
template: template('<iframe width="100%" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.openstreetmap.org/export/embed.html?bbox=-14.655761718750002%2C40.56389453066509%2C13.601074218750002%2C51.754240074033525&layer=mapnik" style="border-radius: 5px;"></iframe><br/><div class="block control has-icons-left is-inline-block is-pulled-right"><input class="input" type="search" placeholder="Établissement"/><span class="icon is-small is-left"><i class="fas fa-search"></i></span></div><table class="table is-fullwidth is-hoverable"><thead><tr><th><abbr title="name">Nom</abbr></th><th><abbr title="city">Ville</abbr></th><th><abbr title="dept">Dpt</abbr></th><th><abbr title="moyenne">Moyenne</abbr></th><th><abbr title="selectivite">Sélectivité</abbr></th></tr></thead><tbody><tr expr1454="expr1454"></tr></tbody></table>', [{
|
|
|
|
type: bindingTypes.EACH,
|
|
|
|
getKey: null,
|
|
|
|
condition: _scope => !_scope.state.loading,
|
|
|
|
template: template('<td expr1455="expr1455"> </td><td expr1456="expr1456"> </td><td expr1457="expr1457"> </td><td expr1458="expr1458"> </td><td expr1459="expr1459"> </td>', [{
|
|
|
|
redundantAttribute: 'expr1455',
|
|
|
|
selector: '[expr1455]',
|
|
|
|
expressions: [{
|
|
|
|
type: expressionTypes.TEXT,
|
|
|
|
childNodeIndex: 0,
|
|
|
|
evaluate: _scope => _scope.etablissement.fields.g_ea_lib_vx
|
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
redundantAttribute: 'expr1456',
|
|
|
|
selector: '[expr1456]',
|
|
|
|
expressions: [{
|
|
|
|
type: expressionTypes.TEXT,
|
|
|
|
childNodeIndex: 0,
|
|
|
|
evaluate: _scope => _scope.etablissement.fields.ville_etab
|
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
redundantAttribute: 'expr1457',
|
|
|
|
selector: '[expr1457]',
|
|
|
|
expressions: [{
|
|
|
|
type: expressionTypes.TEXT,
|
|
|
|
childNodeIndex: 0,
|
|
|
|
evaluate: _scope => _scope.etablissement.fields.dep
|
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
redundantAttribute: 'expr1458',
|
|
|
|
selector: '[expr1458]',
|
|
|
|
expressions: [{
|
|
|
|
type: expressionTypes.TEXT,
|
|
|
|
childNodeIndex: 0,
|
|
|
|
evaluate: _scope => _scope.etablissement.fields.moyenne
|
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
redundantAttribute: 'expr1459',
|
|
|
|
selector: '[expr1459]',
|
|
|
|
expressions: [{
|
|
|
|
type: expressionTypes.TEXT,
|
|
|
|
childNodeIndex: 0,
|
|
|
|
evaluate: _scope => _scope.etablissement.fields.taux_acces_ens
|
|
|
|
}]
|
|
|
|
}]),
|
|
|
|
redundantAttribute: 'expr1454',
|
|
|
|
selector: '[expr1454]',
|
|
|
|
itemName: 'etablissement',
|
|
|
|
indexName: null,
|
|
|
|
evaluate: _scope => _scope.state.items
|
|
|
|
}])
|
2023-03-28 16:51:44 +02:00
|
|
|
}]),
|
2023-03-28 10:15:32 +02:00
|
|
|
name: 'school'
|
|
|
|
};
|
|
|
|
|
|
|
|
export { school as default };
|