-
Notifications
You must be signed in to change notification settings - Fork 37
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the Bug
Have previously released/deployed without any problems. Tried to release tonight and when loading a page that relies on a load
function with a Firebase
call, it fails. Other pages seem to work.
This is the load
function:
import { fetchProducts } from "$lib/stripeutils";
export async function load({ page, fetch, session, stuff }) {
const products = await fetchProducts();
return {
props: {
products,
},
};
}
This is the fetchProducts
function
import { firestore, functions } from "$lib/firebase/client";
import { getDocs, query, where, orderBy, doc, addDoc, collection, onSnapshot } from 'firebase/firestore';
[...]
export async function fetchProducts() {
let products = {
[...]
};
const docSnap = await getDocs(query(
collection(firestore(), "products"),
where("active", "==", true),
orderBy("metadata.order")
));
await Promise.all(docSnap.docs.map(async (doc) => {
let product = {
[...]
};
const priceSnap = await getDocs(query(
collection(doc.ref, "prices"),
where("active", "==", true)
));
priceSnap.docs.forEach((pdoc) => {
const price = {
[...]
};
product.prices = [price, ...product.prices];
});
const type = product.metadata.type || "addon";
products[type].items.push(product);
}));
return products;
}
The firestore
function
import { initializeApp, getApps } from "firebase/app";
import { getFirestore } from 'firebase/firestore';
[...]
const config = {
[...]
};
function firebase() {
return getApps().length === 0 ? initializeApp(config) : getApps()[0];
}
function firestore() {
return getFirestore(firebase());
}
The errors:
ssrServer
[2021-10-28T07:36:58.392Z] @firebase/firestore: Firestore (9.0.0): INTERNAL UNHANDLED ERROR: Error: ENOENT: no such file or directory, open '/workspace/ssrServer/src/protos/google/firestore/v1/firestore.proto'
Error: ENOENT: no such file or directory, open '/workspace/ssrServer/src/protos/google/firestore/v1/firestore.proto'
at Object.openSync (fs.js:498:3)
at Object.readFileSync (fs.js:394:35)
at fetch2 (/workspace/ssrServer/index.js:11082:30)
at Root2.load2 [as load] (/workspace/ssrServer/index.js:11111:11)
at Root2.loadSync (/workspace/ssrServer/index.js:11121:19)
at Object.loadProtosWithOptionsSync (/workspace/ssrServer/index.js:14289:31)
at Object.loadSync (/workspace/ssrServer/index.js:14440:33)
at loadProtos (/workspace/ssrServer/index.js:106181:43)
at newConnection (/workspace/ssrServer/index.js:106185:20)
at OnlineComponentProvider2.createDatastore (/workspace/ssrServer/index.js:109513:26)
Steps to Reproduce
Have previously deployed without issue, however this is my first release where I've used a Firestore
call inside a page's load
function. Mainly looking for a place to start my debugging for something like this.
Expected Behaviour
Code should work fine?
svelte-adapter-firebase version
0.9.2
sveltejs/kit version
1.0.0.next.160
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working