Add ops feedback reward guide

This commit is contained in:
2569718930@qq.com
2026-06-08 18:54:43 +08:00
parent 961c9bd37c
commit 7d1bfea8da
2 changed files with 95 additions and 20 deletions
@@ -0,0 +1,42 @@
import fs from "node:fs";
import path from "node:path";
function assert(condition: unknown, message: string): asserts condition {
if (!condition) throw new Error(message);
}
export function runTests() {
const projectRoot = process.cwd();
const feedbackPagePath = path.join(
projectRoot,
"components",
"ops",
"feedback",
"FeedbackPageClient.tsx",
);
const source = fs.readFileSync(feedbackPagePath, "utf8");
assert(
source.includes("<select") &&
source.includes("onChange={(event) =>") &&
source.includes("changeStatus(row, event.target.value)") &&
source.includes("disabled={updatingId === row.id}") &&
source.includes("STATUS_UPDATE_OPTIONS.map"),
"ops feedback action column must use a status dropdown",
);
assert(
!source.includes("标为{feedbackActionLabel(row.status)}") &&
!source.includes("advanceStatus(row)"),
"ops feedback action column must not use one-step status buttons",
);
assert(
source.includes("积分奖励标准") &&
source.includes("REWARD_GUIDELINES") &&
source.includes("50-100") &&
source.includes("200-300") &&
source.includes("500") &&
source.includes("800-1000") &&
source.includes("1500+"),
"ops feedback page must document manual reward point guidelines",
);
}