@@ -24,7 +24,6 @@ const GET_COLLECTION = (id) => {
24
24
} ;
25
25
26
26
const DATABASE_ID = '64c4de8e7b30179809ef' ;
27
- const COLLECTION_ID = '64d7502a5ce9f881b680' ;
28
27
29
28
const client = new sdk . Client ( ) ;
30
29
const databases = new sdk . Databases ( client ) ;
@@ -37,37 +36,39 @@ if (process.env.APPWRITE_SELF_SIGNED) {
37
36
client . setSelfSigned ( ) ;
38
37
}
39
38
40
- const hasCollection = async ( ) => {
41
- try {
42
- return await databases . getCollection ( DATABASE_ID , COLLECTION_ID )
43
- } catch {
44
- return null
45
- }
46
- }
47
-
48
39
const sleep = ( timeout = 1_000 ) => new Promise ( ( res ) => {
49
40
setTimeout ( ( ) => {
50
41
res ( ) ;
51
42
} , timeout ) ;
52
43
} ) ;
53
44
54
- const { attributes, name } = GET_COLLECTION ( COLLECTION_ID ) ;
55
45
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
+
57
58
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 ) ;
60
61
}
61
62
for ( const { key, type, required, array, size } of attributes ) {
62
63
console . log ( `creating ${ key } : type=${ type } array=${ array } size=${ size } ` )
63
64
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 ) ;
65
66
}
66
67
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 ) ;
68
69
}
69
70
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 ) ;
71
72
}
72
73
await sleep ( 1_500 ) ;
73
74
}
0 commit comments