/* 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"]; } } const PLACEHOLDERS = ["Formation", "Filière", "Spécialité"]; var search = { css: null, 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.course.fili); break; case 2: promise = PAPI.fetchSpecialites(this.state.course.sousfili); break; } promise.then(response => { this.state.allItems = response; this.filterSearch(); this.update({ updating: false }); }, () => { if (!this.state.currentStep) { this.cruiseBack(); } this.update({ updating: false }); }); }, 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.course.fili = selection; break; case 1: this.state.course.sousfili = selection; break; case 2: this.state.course.soussousfili = selection; this.state.updateCourse(this.state.course); break; case 2: console.log(this.props); console.log(this.root); console.log("end"); return; default: return; } this.state.currentStep++; this.updateList(); this.clearSearch(); this.update({ placeholder: PLACEHOLDERS[this.state.currentStep] }); }, cruiseBack() { if (!this.state.currentStep) return; this.state.currentStep--; this.updateList(); this.clearSearch(); this.update({ placeholder: PLACEHOLDERS[this.state.currentStep] }); }, onBeforeMount(props, state) { console.log("on m'a appelé"); //Initial state this.state = { placeholder: PLACEHOLDERS[0], currentStep: 0, allItems: null, items: null, course: [], updating: false, updateCourse: this.props.updateCourse }; console.log(this.state.updateCourse); }, onMounted(props, state) { this.updateList(); } }, template: (template, expressionTypes, bindingTypes, getComponent) => template('
', [{ redundantAttribute: 'expr978', selector: '[expr978]', expressions: [{ type: expressionTypes.EVENT, name: 'onkeyup', evaluate: _scope => _scope.filterSearch }, { type: expressionTypes.ATTRIBUTE, name: 'placeholder', evaluate: _scope => _scope.state.placeholder }] }, { redundantAttribute: 'expr979', selector: '[expr979]', expressions: [{ type: expressionTypes.ATTRIBUTE, name: 'disabled', evaluate: _scope => !_scope.state.currentStep || _scope.state.updating }, { type: expressionTypes.EVENT, name: 'onclick', evaluate: _scope => _scope.cruiseBack }] }, { type: bindingTypes.EACH, getKey: null, condition: null, template: template('', [{ redundantAttribute: 'expr981', selector: '[expr981]', expressions: [{ type: expressionTypes.ATTRIBUTE, name: 'disabled', evaluate: _scope => _scope.state.updating }, { type: expressionTypes.EVENT, name: 'onclick', evaluate: _scope => () => _scope.cruiseForward(_scope.item.name) }] }, { redundantAttribute: 'expr982', selector: '[expr982]', expressions: [{ type: expressionTypes.TEXT, childNodeIndex: 0, evaluate: _scope => _scope.item.name }] }, { redundantAttribute: 'expr983', selector: '[expr983]', expressions: [{ type: expressionTypes.TEXT, childNodeIndex: 0, evaluate: _scope => _scope.item.count }] }]), redundantAttribute: 'expr980', selector: '[expr980]', itemName: 'item', indexName: null, evaluate: _scope => _scope.state.items }]), name: 'search' }; export { search as default };