More performance trials: cancels filter requests before destroying their components.

This commit is contained in:
Mateus Machado Luna 2018-10-18 10:19:57 -03:00
parent 3694ec976e
commit cf7e4a5103
3 changed files with 11 additions and 4 deletions

View File

@ -216,5 +216,11 @@ export const filter_type_mixin = {
source: source source: source
}); });
} }
} },
beforeDestroy() {
// Cancels previous Request
if (this.getOptionsValuesCancel != undefined)
this.getOptionsValuesCancel.cancel('Facet search Canceled.');
},
}; };

View File

@ -31,7 +31,7 @@ module.exports = {
{ {
test: /\.js$/, test: /\.js$/,
loader: 'babel-loader', loader: 'babel-loader',
exclude: /node_modules/ exclude: /node_modules/,
}, },
{ {
test: /\.(png|jpg|jpeg|gif|eot|ttf|woff|woff2|svg|svgz)(\?.+)?$/, test: /\.(png|jpg|jpeg|gif|eot|ttf|woff|woff2|svg|svgz)(\?.+)?$/,
@ -105,7 +105,8 @@ if (production === true) {
module.exports.resolve = { module.exports.resolve = {
alias: { alias: {
'vue$': 'vue/dist/vue.min' 'vue$': 'vue/dist/vue.min',
'swiper$': 'swiper/dist/js/swiper.js'
} }
} }
} else { } else {