Items in the first log does work while in the second log gives just empty array I guess it's because it's not loaded yet, how to fix
I was trying async and await but nothing works
const db = require("playerio-node");
const index = async(fastify, options, done) => {
fastify.get("/pricing", async(req, res) => {
let items = [];
db.PlayerIO.authenticate(
"HIDDEN",
"HIDDEN",
{
userId: "Stock",
auth: require("../../../../../index").hashGenerator("Stock")
},
{},
(client) => {
client.bigDB.loadOrCreate("StockItems", "Stock", function (obj) {
req.config.stockItems.map(item => {
items.push({
name: item.name,
img: item.img,
price: item.price,
stock: obj[item.img] ?? 5
})
})
req.render("/dynamic/pricing/index.liquid", { stockItems: items, Chests: req.config.chests});
});
},
(error) => {
console.log(error)
}
);
return req
});
done()
};
module.exports = index;
There are multiple improvements to do in your handler
https://fastify.dev/docs/latest/Reference/Hooks/#respond-to-a-request-from-a-hook It is true for hooks but for plugins as well.
req
is returned - fastify does not care about the REQUEST, it will waitres
, the REPLY, so your route replies with an empty response..req.render
does not exist https://github.com/fastify/point-of-view so you have unhandled errors somewhere for sureHere is a cleaned version of the code: