I would like to make for certain feathers services calls that require to load some associations. The problem is, that when I do it the "feathers way" with hooks, the hooks are not one time, but stay on. Is there a way to do a "feathers way one time association"? The hooks should be destroyed
after the call.
Currently:
serviceAccountAssosiations() {
return function (hook) {
const walletModel = hook.app.service('wallets').Model;
const currencyModel = hook.app.service('currencies').Model;
const assetClassModel = hook.app.service('asset-classes').Model;
const exchangeModel = hook.app.service('exchanges').Model;
const bankModel = hook.app.service('banks').Model;
const valueAccountModel = hook.app.service('value-accounts').Model
const valueAccountTransactionModel = hook.app.service('value-account-transactions').Model
const walletTransactionsModel = hook.app.service('wallet-transactions').Model
const association = {
include: [
{ model: exchangeModel },
{ model: bankModel },
{ model: valueAccountModel, include: [{ model: valueAccountTransactionModel },{ model: currencyModel }] },
{ model: walletModel, include: [{ model: walletTransactionsModel },{ model: currencyModel },{ model: assetClassModel }] }
]
};
switch (hook.type) {
case 'before':
hook.params.sequelize = Object.assign(association, { raw: false });
return Promise.resolve(hook);
break;
case 'after':
dehydrate( association ).call(this, hook);
break;
}
}
}
get (id, params) {
console.log('id', id)
let app = this.options.app;
return app.service('service-accounts').hooks({
before: {
all: [this.serviceAccountAssosiations()]
},
after: {
all: [this.serviceAccountAssosiations()]
}
})
.get(id)
.then((data) => {
return data;
});
}
I'm not entirely sure what you mean with one time but if you only want to run the hook once you can set a flag outside the hook function, check it and skip the hook if it is like this: