ProjetRIOT/javascript/search.js

214 lines
7.3 KiB
JavaScript
Raw Normal View History

/*
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() {
2023-03-30 17:26:23 +02:00
if (localStorage.getItem("filis")) return JSON.parse(localStorage.getItem("filis"));
let request = await fetch(`${PAPI.searchURL}&rows=0&sort=tri&facet=fili`);
let result = await request.json();
2023-03-30 17:26:23 +02:00
let response = result["facet_groups"][0]["facets"];
localStorage.setItem("filis", JSON.stringify(response));
return response;
}
static async fetchFiliere(filiere) {
2023-03-30 17:26:23 +02:00
if (localStorage.getItem("fili." + filiere)) return JSON.parse(localStorage.getItem("fili." + filiere));
let request = await fetch(`${PAPI.searchURL}&rows=0&sort=tri&facet=form_lib_voe_acc&refine.fili=${filiere}`);
let result = await request.json();
2023-03-30 17:26:23 +02:00
let response = result["facet_groups"][0]["facets"];
localStorage.setItem("fili." + filiere, JSON.stringify(response));
return response;
}
static async fetchSpecialites(filiere, specialite) {
if (localStorage.getItem(`spe.${filiere}.${specialite}`)) return JSON.parse(localStorage.getItem(`spe.${filiere}.${specialite}`));
let request = await fetch(`${PAPI.searchURL}&rows=0&sort=tri&facet=fil_lib_voe_acc&refine.form_lib_voe_acc=${specialite}&refine.fili=${filiere}`);
let result = await request.json();
2023-03-30 17:26:23 +02:00
let response = result["facet_groups"][0]["facets"];
localStorage.setItem(`spe.${filiere}.${specialite}`, JSON.stringify(response));
2023-03-30 17:26:23 +02:00
return response;
}
2023-03-28 16:51:44 +02:00
static async fetchEtablissement(filiere, sousfiliere, soussousfiliere) {
2023-03-30 17:26:23 +02:00
if (localStorage.getItem(`eta.${filiere}.${sousfiliere}.${soussousfiliere}`)) return JSON.parse(localStorage.getItem(`eta.${filiere}.${sousfiliere}.${soussousfiliere}`));
let request = await fetch(`${PAPI.searchURL}&rows=10000&refine.fil_lib_voe_acc=${soussousfiliere}&refine.form_lib_voe_acc=${sousfiliere}&refine.fili=${filiere}`);
2023-03-28 16:51:44 +02:00
let result = await request.json();
2023-03-30 17:26:23 +02:00
let response = result["records"];
localStorage.setItem(`eta.${filiere}.${sousfiliere}.${soussousfiliere}`, JSON.stringify(response));
return response;
2023-03-28 16:51:44 +02:00
}
2023-03-27 20:19:59 +02:00
}
const PLACEHOLDERS = ["Formation", "Filière", "Spécialité"];
2023-03-27 20:19:59 +02:00
var search = {
css: null,
2023-03-29 16:50:48 +02:00
exports: {
updateList() {
let promise;
switch (this.state.currentStep) {
case 0:
promise = PAPI.fetchFilieres();
break;
case 1:
2023-03-29 22:01:50 +02:00
promise = PAPI.fetchFiliere(this.state.course.fili);
break;
case 2:
promise = PAPI.fetchSpecialites(this.state.course.fili, this.state.course.sousfili);
break;
2023-03-30 00:54:13 +02:00
default:
return;
}
2023-03-30 00:54:13 +02:00
this.update({
updating: true
});
promise.then(response => {
this.state.allItems = response;
this.filterSearch();
this.update({
updating: false
});
2023-03-29 22:56:14 +02:00
}, () => {
if (!this.state.currentStep) {
this.cruiseBack();
}
this.update({
updating: false
});
});
},
2023-03-29 22:56:14 +02:00
clearSearch() {
this.$("input").value = "";
},
filterSearch() {
let input = this.$("input");
if (!input) return;
let finalArray = [];
//On évite de trier avant d'avoir plus de 1 lettres.
if (input.value.length > 1) {
finalArray = this.state.allItems.filter(item => {
return item.name.toLowerCase().includes(input.value.toLowerCase());
});
} else {
finalArray = this.state.allItems;
}
this.update({
items: finalArray
});
},
cruiseForward(selection) {
switch (this.state.currentStep) {
case 0:
2023-03-29 22:01:50 +02:00
this.state.course.fili = selection;
break;
case 1:
2023-03-29 22:01:50 +02:00
this.state.course.sousfili = selection;
break;
case 2:
this.state.course.soussousfili = selection;
2023-03-30 00:54:13 +02:00
this.props.updateCourse(this.state.course);
2023-03-29 22:56:14 +02:00
return;
default:
return;
}
this.state.currentStep++;
this.updateList();
2023-03-29 22:56:14 +02:00
this.clearSearch();
this.update({
placeholder: PLACEHOLDERS[this.state.currentStep]
});
},
cruiseBack() {
if (!this.state.currentStep) return;
this.state.currentStep--;
this.updateList();
2023-03-29 22:56:14 +02:00
this.clearSearch();
this.update({
placeholder: PLACEHOLDERS[this.state.currentStep]
});
},
2023-03-29 16:50:48 +02:00
onBeforeMount(props, state) {
//Initial state
this.state = {
placeholder: PLACEHOLDERS[0],
2023-03-29 16:50:48 +02:00
currentStep: 0,
allItems: null,
items: null,
2023-03-30 00:54:13 +02:00
course: {},
updating: false
2023-03-29 16:50:48 +02:00
};
},
2023-03-29 22:56:14 +02:00
onMounted(props, state) {
this.updateList();
2023-03-29 16:50:48 +02:00
}
2023-03-27 20:19:59 +02:00
},
2023-03-31 11:34:14 +02:00
template: (template, expressionTypes, bindingTypes, getComponent) => template('<div class="box p-1 m-2"><div class="columns m-1"><input expr14="expr14" class="input" type="input"/><button expr15="expr15" class="button ml-1">&lt;</button></div><div id="list-formations"><ul><li expr16="expr16" class="m-1"></li></ul></div></div>', [{
redundantAttribute: 'expr14',
selector: '[expr14]',
2023-03-27 20:19:59 +02:00
expressions: [{
type: expressionTypes.EVENT,
name: 'onkeyup',
2023-03-29 16:50:48 +02:00
evaluate: _scope => _scope.filterSearch
2023-03-27 20:19:59 +02:00
}, {
type: expressionTypes.ATTRIBUTE,
name: 'placeholder',
evaluate: _scope => _scope.state.placeholder
}]
}, {
2023-03-31 11:34:14 +02:00
redundantAttribute: 'expr15',
selector: '[expr15]',
expressions: [{
2023-03-29 16:50:48 +02:00
type: expressionTypes.ATTRIBUTE,
name: 'disabled',
evaluate: _scope => !_scope.state.currentStep || _scope.state.updating
2023-03-29 16:50:48 +02:00
}, {
type: expressionTypes.EVENT,
name: 'onclick',
2023-03-29 16:50:48 +02:00
evaluate: _scope => _scope.cruiseBack
}]
2023-03-27 20:19:59 +02:00
}, {
type: bindingTypes.EACH,
getKey: null,
condition: null,
2023-03-31 11:34:14 +02:00
template: template('<button expr17="expr17" class="button is-fullwidth p-2" style="white-space: unset"><div style="display: flex; width: 100%"><span class="mt-auto mb-auto" style="font-size: 0.75em; text-align: left; "><strong expr18="expr18"> </strong></span><div style="margin-left: auto;"></div><span expr19="expr19" class="tag is-primary mt-auto mb-auto"> </span></div></button>', [{
redundantAttribute: 'expr17',
selector: '[expr17]',
2023-03-27 20:19:59 +02:00
expressions: [{
type: expressionTypes.ATTRIBUTE,
name: 'disabled',
evaluate: _scope => _scope.state.updating
}, {
2023-03-27 20:19:59 +02:00
type: expressionTypes.EVENT,
name: 'onclick',
2023-03-29 16:50:48 +02:00
evaluate: _scope => () => _scope.cruiseForward(_scope.item.name)
2023-03-27 20:19:59 +02:00
}]
}, {
2023-03-31 11:34:14 +02:00
redundantAttribute: 'expr18',
selector: '[expr18]',
2023-03-28 13:06:28 +02:00
expressions: [{
type: expressionTypes.TEXT,
childNodeIndex: 0,
evaluate: _scope => _scope.item.name
}]
}, {
2023-03-31 11:34:14 +02:00
redundantAttribute: 'expr19',
selector: '[expr19]',
2023-03-27 20:19:59 +02:00
expressions: [{
type: expressionTypes.TEXT,
childNodeIndex: 0,
evaluate: _scope => _scope.item.count
}]
}]),
2023-03-31 11:34:14 +02:00
redundantAttribute: 'expr16',
selector: '[expr16]',
2023-03-27 20:19:59 +02:00
itemName: 'item',
indexName: null,
evaluate: _scope => _scope.state.items
}]),
name: 'search'
};
export { search as default };