mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 02:05:07 +08:00
84bbc3d0c3
* feat: initial impl * Create preliminary comment moderation slices CORL-688 * Move slices logic into stacks CORL-688 * Create user comment counts CORL-688 * Create naive mutation that initializes user comment counts CORL-688 * Use bulk updates in user counts migration CORL-688 * fix: review * fix: fixed issue with aggregation * Migrate creating comment into stacks CORL-688 * Migrate editing a comment to the stacks CORL-688 * Break publishing comment status out of updateAllCounts CORL-688 * review: removed variable scoping in favor of export * revert: feb8e8196cd448f5cd24f1ca2eb0b91fe9bd43c7 * review: simplification of stacks implementation This simplifies the stacks implementation to better reuse code related to count management and event publishing. This can be used to great effect with the upcomming events PR #2738. * Consolidate the tenant and common context together CORL-688 * review: removed variable scoping in favor of export * revert: feb8e8196cd448f5cd24f1ca2eb0b91fe9bd43c7 * review: simplification of stacks implementation This simplifies the stacks implementation to better reuse code related to count management and event publishing. This can be used to great effect with the upcomming events PR #2738. * fix: check if authorID is null before update user counts CORL-688 * Consolidate common/tenant context supporting files CORL-688 * feat: renamed TenantContext -> GraphContext Co-authored-by: Wyatt Johnson <accounts+github@wyattjoh.ca>
88 lines
2.2 KiB
TypeScript
88 lines
2.2 KiB
TypeScript
#!/usr/bin/env ts-node
|
|
|
|
import program from "commander";
|
|
import spawn from "cross-spawn";
|
|
import fs from "fs-extra";
|
|
import path from "path";
|
|
|
|
const config = JSON.parse(
|
|
fs.readFileSync(path.resolve(__dirname, "../.graphqlconfig"), "utf8")
|
|
);
|
|
|
|
program
|
|
.version("0.1.0")
|
|
.usage("--src ./src/core/client/stream --schema tenant")
|
|
.option("--src <folder>", "Find gql recursively in this folder")
|
|
.option("--schema <schema>", "Identifier of schema")
|
|
.option("--persist", "Use persisted queries")
|
|
.description("Compile relay gql data")
|
|
.parse(process.argv);
|
|
|
|
if (!program.schema) {
|
|
// eslint-disable-next-line no-console
|
|
console.error("Schema identifier not provided");
|
|
process.exit(1);
|
|
}
|
|
|
|
if (!program.src) {
|
|
// eslint-disable-next-line no-console
|
|
console.error("Src not provided");
|
|
process.exit(1);
|
|
}
|
|
|
|
if (!config.projects) {
|
|
// eslint-disable-next-line no-console
|
|
console.error("Missing projects key in .graphqconfig");
|
|
process.exit(1);
|
|
}
|
|
if (!config.projects[program.schema]) {
|
|
// eslint-disable-next-line no-console
|
|
console.error(`Project ${program.schema} not found in .graphqconfig`);
|
|
process.exit(1);
|
|
}
|
|
if (!config.projects[program.schema].schemaPath) {
|
|
// eslint-disable-next-line no-console
|
|
console.error(
|
|
`SchemaPath for project ${program.schema} not found in .graphqconfig`
|
|
);
|
|
process.exit(1);
|
|
}
|
|
|
|
const args = [
|
|
"--language",
|
|
"typescript",
|
|
"--no-watchman",
|
|
"--src",
|
|
program.src,
|
|
"--artifactDirectory",
|
|
`${program.src}/__generated__`,
|
|
"--schema",
|
|
config.projects[program.schema].schemaPath,
|
|
];
|
|
|
|
// Set the persisted query path.
|
|
const persist = program.persist
|
|
? `${program.src}/persisted-queries.json`
|
|
: null;
|
|
if (persist) {
|
|
args.push("--persist-output", persist);
|
|
}
|
|
|
|
spawn.sync("relay-compiler", args, { stdio: "inherit" });
|
|
|
|
if (persist) {
|
|
if (fs.existsSync(persist)) {
|
|
// Create the new filename.
|
|
const name = path.basename(program.src);
|
|
const generated = "./src/core/server/graph/persisted/__generated__";
|
|
|
|
// Create the generated directory if it doesn't exist.
|
|
fs.ensureDirSync(generated);
|
|
|
|
// Copy the file over to the destination directory.
|
|
fs.copySync(persist, `${generated}/${name}.json`, {
|
|
overwrite: true,
|
|
});
|
|
}
|
|
}
|