-
-
Notifications
You must be signed in to change notification settings - Fork 424
/
Copy pathseed.ts
330 lines (299 loc) · 10.6 KB
/
seed.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
import { copycat } from '@snaplet/copycat'
import { createSeedClient } from '@snaplet/seed'
import { ProfileTypeList } from 'oa-shared'
import { convertToSlug } from './src/utils/slug'
import questionsJson from './questions.json'
import type {
categoriesChildInputs,
categoriesScalars,
profilesChildInputs,
profilesInputs,
profilesScalars,
questionsChildInputs,
questionsScalars,
subscribersChildInputs,
subscribersScalars,
tagsChildInputs,
tagsScalars,
useful_votesChildInputs,
useful_votesScalars,
} from '@snaplet/seed'
/**
* This script assumes the following database configuration.
*
* Totals:
* - 10 users, 25 questions, 50 comments
*
* Distributions:
* | Username | Q? | Comments | Categories | Tags | Subscribers | Notes
* | ------------------------------------------------------------------ | --------------------------------
* | jereerickson92 | 10 | 10 | 0 | 0 | 9 | Has commented in every question
* | aldaplaskett48 | 5 | 10 | 0 | 0 | 9 | Has commented a single question
* | sampathpini67 | 4 | 5 | 0 | 0 | 9 | Has commented two questions
* | galenagiugovaz15 | 3 | 5 | 0 | 0 | 9 | Has commented in response (only)
* | veniaminjewell33 | 2 | 5 | 0 | 0 | 9 | Has commented in response of response
* | cortneybrown81 | 1 | 5 | 0 | 0 | 9 |
* | melisavang56 | 0 | 5 | 0 | 0 | 9 |
* | lianabegam24 | 0 | 5 | 0 | 0 | 9 |
* | akromstarkova72 | 0 | 0 | 0 | 0 | 9 |
* | mirzoblazkova19 | 0 | 0 | 0 | 0 | 9 |
*/
const tenant_id = 'precious-plastic'
//@ts-expect-error: Common properties (not default) + intellisense
const _PROFILES_BASE: profilesScalars = {
tenant_id,
type: ProfileTypeList.MEMBER,
roles: [],
tags: [],
photo_url: null,
links: null,
location: null,
notification_settings: null,
patreon: null,
impact: null,
is_verified: true,
is_blocked_from_messaging: false,
is_contactable: true,
is_supporter: true,
total_useful: 0,
total_views: 0,
}
//@ts-expect-error: Common properties (not default) + intellisense
const _QUESTIONS_BASE: questionsScalars = {
tenant_id,
moderation: 'accepted',
legacy_id: null,
previous_slugs: [],
images: [],
deleted: false,
tags: [],
}
//@ts-expect-error: Common properties (not default) + intellisense
const _CATEGORIES_BASE: categoriesScalars = {
tenant_id,
legacy_id: null,
}
//@ts-expect-error: Common properties (not default) + intellisense
const _TAGS_BASE: tagsScalars = {
tenant_id,
legacy_id: null,
}
//@ts-expect-error: Common properties (not default) + intellisense
const _SUBSCRIBERS_BASE: subscribersScalars = {
tenant_id,
content_type: 'questions',
}
//@ts-expect-error: Common properties (not default) + intellisense
const _USEFUL_VOTES_BASE: useful_votesScalars = {
tenant_id,
content_type: 'questions',
}
/* prettier-ignore */
// TBD: What are tags for?
const seedTags = (): tagsChildInputs => [
{ ..._TAGS_BASE, name: 'tag 1' },
]
const seedUsers = () => [
{
email: '[email protected]',
password: copycat.password({}),
},
{
email: '[email protected]',
password: copycat.password({}),
},
{
email: '[email protected]',
password: copycat.password({}),
},
{
email: '[email protected]',
password: copycat.password({}),
},
{
email: '[email protected]',
password: copycat.password({}),
},
{
email: '[email protected]',
password: copycat.password({}),
},
{
email: '[email protected]',
password: copycat.password({}),
},
{
email: '[email protected]',
password: copycat.password({}),
},
{
email: '[email protected]',
password: copycat.password({}),
},
{
email: '[email protected]',
password: copycat.password({}),
},
]
const seedProfiles = (): profilesChildInputs => [
{
..._PROFILES_BASE,
username: 'jereerickson92',
display_name: 'Jere Erickson',
country: 'Portugal',
about:
"Passionate about creating meaningful connections and exploring new experiences. Whether it's traveling to new destinations, trying new foods, or diving into fresh hobbies, I'm all about embracing the adventure in life. Let's chat and share our stories!",
},
{
..._PROFILES_BASE,
username: 'aldaplaskett48',
display_name: 'Alda Plaskett',
country: 'Spain',
about:
"Tech enthusiast, avid reader, and coffee lover. I spend my days coding, learning about the latest trends, and finding ways to innovate. Always up for a deep conversation or a good book recommendation. Let's connect and exchange ideas!",
},
{
..._PROFILES_BASE,
username: 'sampathpini67',
display_name: 'Sampath Pini',
country: 'France',
about:
"Fitness junkie who believes in the power of mental and physical health. When I'm not in the gym, you can find me hiking, practicing yoga, or experimenting with healthy recipes. Looking for like-minded people who value balance and growth. Let's inspire each other!",
},
{
..._PROFILES_BASE,
username: 'galenagiugovaz15',
display_name: 'Galena Giugovaz',
country: 'Sudan',
about:
"Curious traveler with a passion for photography and storytelling. Exploring the world, one city at a time, while capturing moments that tell unique stories. I believe that life is all about experiences and the memories we create. Let's share the journey!",
},
{
..._PROFILES_BASE,
username: 'veniaminjewell33',
display_name: 'Veniamin Jewell',
country: 'Tuvalu',
about:
"Creative soul with a love for design and innovation. I'm always experimenting with new ways to bring ideas to life—whether it's through art, technology, or writing. Let's collaborate and create something beautiful together!",
},
{
..._PROFILES_BASE,
username: 'cortneybrown81',
display_name: 'Cortney Brown',
country: 'Ukraine',
about:
"Outgoing and energetic, I'm always looking for new adventures and opportunities to grow. Whether it's trying a new hobby or tackling an exciting project, I'm up for anything. Join me on my journey, and let's make the most out of every moment!",
},
{
..._PROFILES_BASE,
username: 'melisavang56',
display_name: 'Melisa Vang',
country: 'Uruguay',
about:
"Music is my life, and I'm constantly seeking out new sounds and genres to explore. From playing instruments to attending live shows, I live and breathe rhythm. If you're passionate about music or just want to chat about the latest trends, let's connect!",
},
{
..._PROFILES_BASE,
username: 'lianabegam24',
display_name: 'Liana Begam',
country: 'United States',
about:
"Outdoor enthusiast and nature lover who finds peace in hiking, camping, and exploring the great outdoors. When I'm not soaking up the beauty of nature, you'll find me sharing my love for the environment with others. Looking to meet fellow adventurers!",
},
{
..._PROFILES_BASE,
username: 'akromstarkova72',
display_name: 'Akrom Stárková',
country: 'Yemen',
about:
"Ambitious and driven, I strive to make the most out of every opportunity. Whether it's working on personal projects or helping others achieve their goals, I believe in continuous growth and learning. Let's build a community of success together!",
},
{
..._PROFILES_BASE,
username: 'mirzoblazkova19',
display_name: 'Mirzo Blažková',
country: 'Zimbabwe',
about:
"Bookworm with a passion for storytelling and deep discussions. I'm always immersed in a good novel or seeking out new perspectives on life. Looking to connect with fellow book lovers or anyone interested in meaningful conversations. Let's dive into the world of words together!",
},
]
const seedCategories = (): categoriesChildInputs => [
{ ..._CATEGORIES_BASE, name: 'Questions', type: 'questions' },
{ ..._CATEGORIES_BASE, name: 'Research', type: 'research' },
{ ..._CATEGORIES_BASE, name: 'Projects', type: 'projects' },
]
// const seedComments = (
// profile: profilesInputs,
// questions: questionsInputs[],
// ): commentsChildInputs =>
// Object.values(questionsJson)
// .flat()
// .flatMap((q) => q?.comments?.[profile.username!.toString()] ?? [])
// .map((c) => ({
// ..._COMMENTS_BASE,
// comment: c,
// source_id: questions.find((q) => q.id),
// }))
const seedQuestions = (profile: profilesInputs): questionsChildInputs =>
questionsJson[profile.username!.toString()]?.map((q) => ({
..._QUESTIONS_BASE,
slug: convertToSlug(q.title),
title: q.title,
description: q.description,
// TBD: Do replies also count to comment length?
comment_count: q.comments?.length || 0,
})) || []
const seedSubscribers = (
questions: questionsScalars[],
): subscribersChildInputs =>
questions.map((question) => ({
..._SUBSCRIBERS_BASE,
content_id: question.id,
}))
const seedUsefulVotes = (
questions: questionsScalars[],
): useful_votesChildInputs =>
questions.map((question) => ({
..._USEFUL_VOTES_BASE,
content_id: question.id,
}))
const main = async () => {
const seed = await createSeedClient()
await seed.$resetDatabase()
const { users } = await seed.users(seedUsers())
const { profiles } = await seed.profiles(
(seedProfiles() as Array<any>).map((profile: profilesInputs, index) => ({
...profile,
auth_id: users[index].id,
})),
)
await seed.tags(seedTags())
await seed.categories(seedCategories())
/**
* This should be interpreted as "What this user has related to them?" - what are their questions, comments, subscribers, etc.".
*/
const questionsAcc: questionsScalars[] = []
for (const profile of profiles) {
const { questions } = await seed.questions(seedQuestions(profile), {
connect: { profiles: [profile] },
})
questionsAcc.push(...questions)
}
// Assumption: all users are subscribed and voted to/in every category id (except their own categories)
for (const profile of profiles) {
const questionsExceptMine = questionsAcc.filter(
(q) => q.created_by !== profile.id,
)
// await seed.comments(seedComments(profile, questionsExceptMine), {
// connect: { profiles: [profile] },
// })
await seed.subscribers(seedSubscribers(questionsExceptMine), {
connect: { profiles: [profile] },
})
await seed.useful_votes(seedUsefulVotes(questionsExceptMine), {
connect: { profiles: [profile] },
})
}
process.exit()
}
main()