ProjetRIOT/javascript/search.js

202 lines
6.1 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() {
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"];
}
2023-03-28 16:51:44 +02:00
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-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;
this.update({
updating: true
});
switch (this.state.currentStep) {
case 0:
promise = PAPI.fetchFilieres();
break;
case 1:
promise = PAPI.fetchFiliere(this.state.filiere);
break;
case 2:
promise = PAPI.fetchSpecialites(this.state.specialite);
break;
}
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:
this.state.filiere = selection;
break;
case 1:
this.state.specialite = selection;
break;
2023-03-29 22:56:14 +02:00
case 2:
console.log(this.props);
console.log(this.root);
console.log("end");
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,
filiere: null,
specialite: null,
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-29 22:56:14 +02:00
template: (template, expressionTypes, bindingTypes, getComponent) => template('<div class="box p-1 m-2"><div class="columns m-1"><input expr966="expr966" class="input" type="input"/><button expr967="expr967" class="button ml-1">&lt;</button></div><div id="list-formations"><ul><li expr968="expr968" class="m-1"></li></ul></div></div>', [{
redundantAttribute: 'expr966',
selector: '[expr966]',
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-29 22:56:14 +02:00
redundantAttribute: 'expr967',
selector: '[expr967]',
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-29 22:56:14 +02:00
template: template('<button expr969="expr969" class="button is-fullwidth p-2"><span style="font-size: .75em; max-size: 90%"><strong expr970="expr970"> </strong></span><div style="margin-left: auto;"></div><span expr971="expr971" class="tag is-primary"> </span></button>', [{
redundantAttribute: 'expr969',
selector: '[expr969]',
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-29 22:56:14 +02:00
redundantAttribute: 'expr970',
selector: '[expr970]',
2023-03-28 13:06:28 +02:00
expressions: [{
type: expressionTypes.TEXT,
childNodeIndex: 0,
evaluate: _scope => _scope.item.name
}]
}, {
2023-03-29 22:56:14 +02:00
redundantAttribute: 'expr971',
selector: '[expr971]',
2023-03-27 20:19:59 +02:00
expressions: [{
type: expressionTypes.TEXT,
childNodeIndex: 0,
evaluate: _scope => _scope.item.count
}]
}]),
2023-03-29 22:56:14 +02:00
redundantAttribute: 'expr968',
selector: '[expr968]',
2023-03-27 20:19:59 +02:00
itemName: 'item',
indexName: null,
evaluate: _scope => _scope.state.items
}]),
name: 'search'
};
export { search as default };