Initial import

This commit is contained in:
how2ice
2026-04-21 03:33:23 +09:00
commit 9e4b70f1f1
495 changed files with 94680 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
import process from 'node:process';
import { chromium } from 'playwright';
import { ensureDirectory, getKstDate, resolveCapturePaths, updateWorklogCaptureSection } from './worklog-capture-utils.mjs';
const cwd = process.cwd();
const captureDate = process.argv[2] ?? getKstDate();
const baseUrl = process.env.CAPTURE_BASE_URL ?? 'http://127.0.0.1:5174';
const screenshotFileName = 'plan-board-mobile-memo-detail.png';
const { screenshotDir, screenshotPath, worklogPath, markdownImagePath } = resolveCapturePaths({
cwd,
captureDate,
screenshotFileName,
});
const browser = await chromium.launch({ headless: true });
const context = await browser.newContext({
viewport: { width: 430, height: 932 },
isMobile: true,
hasTouch: true,
deviceScaleFactor: 3,
});
const page = await context.newPage();
try {
await ensureDirectory(screenshotDir);
await page.goto(baseUrl, { waitUntil: 'networkidle' });
await page.getByText('Plans').click();
await page.getByRole('button', { name: '새 메모' }).click();
const overlayCard = page.locator('.plan-board-page__overlay-card').first();
await overlayCard.waitFor({ state: 'visible', timeout: 30000 });
await overlayCard.screenshot({
path: screenshotPath,
animations: 'disabled',
});
await updateWorklogCaptureSection({
worklogPath,
captureDate,
imageAlt: 'plan-board-mobile-memo-detail',
markdownImagePath,
});
console.log(`Saved: ${screenshotPath}`);
console.log(`Linked in: ${worklogPath}`);
} finally {
await context.close();
await browser.close();
}