Skip to content

Commit 73915c7

Browse files
committed
package
1 parent 5b9767d commit 73915c7

File tree

3 files changed

+42
-113
lines changed

3 files changed

+42
-113
lines changed

package-lock.json

+24-96
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"dependencies": {
2424
"dotenv": "16.3.1",
2525
"glob": "10.3.4",
26-
"node-appwrite": "10.0.0"
26+
"node-appwrite": "12.0.1"
2727
},
2828
"devDependencies": {
2929
"@types/glob": "8.1.0"

scripts/create-collection.mjs

+17-16
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ const GET_COLLECTION = (id) => {
2424
};
2525

2626
const DATABASE_ID = '64c4de8e7b30179809ef';
27-
const COLLECTION_ID = '64d7502a5ce9f881b680';
2827

2928
const client = new sdk.Client();
3029
const databases = new sdk.Databases(client);
@@ -37,37 +36,39 @@ if (process.env.APPWRITE_SELF_SIGNED) {
3736
client.setSelfSigned();
3837
}
3938

40-
const hasCollection = async () => {
41-
try {
42-
return await databases.getCollection(DATABASE_ID, COLLECTION_ID)
43-
} catch {
44-
return null
45-
}
46-
}
47-
4839
const sleep = (timeout = 1_000) => new Promise((res) => {
4940
setTimeout(() => {
5041
res();
5142
}, timeout);
5243
});
5344

54-
const { attributes, name } = GET_COLLECTION(COLLECTION_ID);
5545

56-
{
46+
for (const collectionId of schema.collections.map(({ $id }) => $id)) {
47+
48+
const { attributes, name } = GET_COLLECTION(collectionId);
49+
50+
const hasCollection = async () => {
51+
try {
52+
return await databases.getCollection(DATABASE_ID, collectionId)
53+
} catch {
54+
return null
55+
}
56+
};
57+
5758
if (!(await hasCollection())) {
58-
console.log(`Creating collection id=${COLLECTION_ID} name=${name}`);
59-
await databases.createCollection(DATABASE_ID, COLLECTION_ID, name);
59+
console.log(`Creating collection id=${collectionId} name=${name}`);
60+
await databases.createCollection(DATABASE_ID, collectionId, name);
6061
}
6162
for (const { key, type, required, array, size } of attributes) {
6263
console.log(`creating ${key}: type=${type} array=${array} size=${size}`)
6364
if (type === "string") {
64-
await databases.createStringAttribute(DATABASE_ID, COLLECTION_ID, key, size, required, undefined, array);
65+
await databases.createStringAttribute(DATABASE_ID, collectionId, key, size, required, undefined, array);
6566
}
6667
if (type === "boolean") {
67-
await databases.createBooleanAttribute(DATABASE_ID, COLLECTION_ID, key, required, undefined, array);
68+
await databases.createBooleanAttribute(DATABASE_ID, collectionId, key, required, undefined, array);
6869
}
6970
if (type === "integer") {
70-
await databases.createIntegerAttribute(DATABASE_ID, COLLECTION_ID, key, required, undefined, undefined, undefined, array);
71+
await databases.createIntegerAttribute(DATABASE_ID, collectionId, key, required, undefined, undefined, undefined, array);
7172
}
7273
await sleep(1_500);
7374
}

0 commit comments

Comments
 (0)