Implement share and export components

This commit is contained in:
adilallo
2026-04-29 22:27:46 -06:00
parent a31a36c926
commit a37a72c71d
58 changed files with 3153 additions and 117 deletions
@@ -1,7 +1,76 @@
import type { CreateFlowState } from "../../app/(app)/create/types";
import type {
CreateFlowMethodCardFacetSection,
CreateFlowState,
} from "../../app/(app)/create/types";
import type { PublishedMethodSelections } from "./buildPublishPayload";
import type { StoredLastPublishedRule } from "./lastPublishedRule";
const PUBLISHED_SELECTION_FIELD_KEYS: readonly (keyof CreateFlowState)[] = [
"selectedCoreValueIds",
"selectedCommunicationMethodIds",
"selectedMembershipMethodIds",
"selectedDecisionApproachIds",
"selectedConflictManagementIds",
] as const;
/**
* True when `patch` (from {@link createFlowStateFromPublishedRule}) expects
* non-empty facet selections but `state` still has none for that facet.
*
* Used so `/create/edit-rule` hydration is not skipped after TopNav **Edit**
* pre-clears `sections` (which made `sections?.length === 0` look like a
* finished hydrate even though method ids were never merged).
*/
export function isPublishedRuleSelectionMissing(
state: CreateFlowState,
patch: Partial<CreateFlowState>,
): boolean {
for (const k of PUBLISHED_SELECTION_FIELD_KEYS) {
const desired = patch[k];
if (!Array.isArray(desired) || desired.length === 0) continue;
const actualRaw = state[k];
const actual = Array.isArray(actualRaw) ? actualRaw : [];
if (actual.length === 0) return true;
}
return false;
}
/**
* Pin flags for method-card facets: compact CardStack slots surface selections
* first only when `methodSectionsPinCommitted[facet]` is true (see
* `useMethodCardDeckOrdering`). Normal wizard flow sets that on facet **Confirm**.
* Hydration paths that seed `selected*` method ids without a confirm (edit-published,
* template customize) merge this alongside those ids so pinning matches UX after Confirm.
*
* Caller should spread onto existing `methodSectionsPinCommitted` so unrelated facets stay
* as-is (`{ ...prior, ...this }`).
*/
export function methodSectionsPinsForHydratedSelections(
patch: Partial<CreateFlowState>,
): Partial<Record<CreateFlowMethodCardFacetSection, boolean>> {
const out: Partial<Record<CreateFlowMethodCardFacetSection, boolean>> = {};
if ((patch.selectedCommunicationMethodIds?.length ?? 0) > 0) {
out.communication = true;
}
if ((patch.selectedMembershipMethodIds?.length ?? 0) > 0) {
out.membership = true;
}
if ((patch.selectedDecisionApproachIds?.length ?? 0) > 0) {
out.decisionApproaches = true;
}
if ((patch.selectedConflictManagementIds?.length ?? 0) > 0) {
out.conflictManagement = true;
}
return out;
}
/** @see {@link methodSectionsPinsForHydratedSelections} — published-rule hydrate naming. */
export function methodSectionsPinsFromPublishedHydratePatch(
patch: Partial<CreateFlowState>,
): Partial<Record<CreateFlowMethodCardFacetSection, boolean>> {
return methodSectionsPinsForHydratedSelections(patch);
}
/**
* Rehydrate create-flow fields from a stored published rule so `/create/edit-rule`
* can render final-review editors after refresh or when branching from completed.
+328
View File
@@ -0,0 +1,328 @@
import { jsPDF } from "jspdf";
import type {
CommunityRuleEntry,
CommunityRuleSection,
} from "../../app/components/type/CommunityRule/CommunityRule.types";
import type { StoredLastPublishedRule } from "./lastPublishedRule";
import { parsePublishedDocumentForCommunityRuleDisplay } from "./publishedDocumentToDisplaySections";
export function buildPublicRuleUrl(origin: string, ruleId: string): string {
const base = origin.replace(/\/$/, "");
return `${base}/rules/${encodeURIComponent(ruleId)}`;
}
/** Safe filename fragment from rule title, with stable fallback. */
export function exportFilenameBase(rule: StoredLastPublishedRule): string {
const fromTitle = rule.title
.trim()
.toLowerCase()
.replace(/[^a-z0-9]+/g, "-")
.replace(/^-+|-+$/g, "")
.slice(0, 48);
return fromTitle.length > 0 ? fromTitle : `rule-${rule.id.slice(0, 8)}`;
}
function entryToMarkdown(entry: CommunityRuleEntry): string {
const lines: string[] = [`### ${entry.title}`, ""];
if (entry.blocks && entry.blocks.length > 0) {
for (const b of entry.blocks) {
lines.push(`#### ${b.label}`, "", b.body, "");
}
} else {
const body = (entry.body ?? "").trim();
if (body.length > 0) {
const paras = body.split(/\n\s*\n/);
for (const p of paras) {
const t = p.trim();
if (t.length > 0) lines.push(t, "");
}
}
}
return lines.join("\n").trimEnd();
}
export function sectionsToMarkdown(
title: string,
summary: string | null | undefined,
sections: CommunityRuleSection[],
): string {
const parts: string[] = [`# ${title}`, ""];
const sum = typeof summary === "string" ? summary.trim() : "";
if (sum.length > 0) {
parts.push(sum, "");
}
for (const sec of sections) {
parts.push(`## ${sec.categoryName}`, "");
for (const ent of sec.entries) {
parts.push(entryToMarkdown(ent), "");
}
}
return `${parts.join("\n").trimEnd()}\n`;
}
function escapeCsvCell(value: string): string {
if (/[",\r\n]/.test(value)) {
return `"${value.replace(/"/g, '""')}"`;
}
return value;
}
/** Tabular snapshot of parsed rule content (RFC 4180-style; UTF-8 with BOM when downloaded). */
export function sectionsToCsv(
title: string,
summary: string | null | undefined,
sections: CommunityRuleSection[],
): string {
const rows: string[][] = [
["Section", "Entry", "Block label", "Content"],
["", "Title", "", title],
];
const sum = typeof summary === "string" ? summary.trim() : "";
if (sum.length > 0) {
rows.push(["", "Summary", "", sum]);
}
for (const sec of sections) {
for (const ent of sec.entries) {
if (ent.blocks && ent.blocks.length > 0) {
for (const b of ent.blocks) {
rows.push([sec.categoryName, ent.title, b.label, b.body]);
}
} else {
rows.push([sec.categoryName, ent.title, "", ent.body ?? ""]);
}
}
}
return `${rows.map((r) => r.map(escapeCsvCell).join(",")).join("\n")}\n`;
}
export function exportStoredRuleAsMarkdown(rule: StoredLastPublishedRule): string {
const sections = parsePublishedDocumentForCommunityRuleDisplay(rule.document);
if (sections.length === 0) {
throw new Error("exportEmptyDocument");
}
return sectionsToMarkdown(rule.title, rule.summary, sections);
}
export function exportStoredRuleAsCsv(rule: StoredLastPublishedRule): string {
const sections = parsePublishedDocumentForCommunityRuleDisplay(rule.document);
if (sections.length === 0) {
throw new Error("exportEmptyDocument");
}
return `\uFEFF${sectionsToCsv(rule.title, rule.summary, sections)}`;
}
function escapeHtml(s: string): string {
return s
.replace(/&/g, "&amp;")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;")
.replace(/"/g, "&quot;");
}
function paragraphsHtml(text: string): string {
const paras = text
.trim()
.split(/\n\s*\n/)
.filter((p) => p.trim().length > 0);
if (paras.length === 0) return "";
return paras
.map((p) => `<p>${escapeHtml(p.trim()).replace(/\n/g, "<br />")}</p>`)
.join("\n");
}
function entryToPrintHtml(entry: CommunityRuleEntry): string {
let inner = "";
if (entry.blocks && entry.blocks.length > 0) {
for (const b of entry.blocks) {
inner += `<h4 class="block-label">${escapeHtml(b.label)}</h4>`;
inner += paragraphsHtml(b.body);
}
} else {
inner += paragraphsHtml(entry.body ?? "");
}
return `<article class="entry"><h3>${escapeHtml(entry.title)}</h3>${inner}</article>`;
}
/** Full HTML document for static preview or tests; PDF export uses {@link sectionsToPdfBlob}. */
export function buildPrintableRuleHtmlDocument(
title: string,
summary: string | null | undefined,
sections: CommunityRuleSection[],
): string {
const sum = typeof summary === "string" ? summary.trim() : "";
const summaryBlock =
sum.length > 0 ? `<div class="summary">${paragraphsHtml(sum)}</div>` : "";
const body = sections
.map(
(sec) =>
`<section><h2>${escapeHtml(sec.categoryName)}</h2>${sec.entries.map(entryToPrintHtml).join("\n")}</section>`,
)
.join("\n");
const styles = `body{font-family:system-ui,sans-serif;line-height:1.5;margin:2rem auto;max-width:48rem;padding:0 1rem;color:#111;background:#fff}h1{font-size:1.75rem;margin-bottom:.5rem}h2{font-size:1.25rem;margin-top:1.5rem;margin-bottom:.75rem;border-bottom:1px solid #ccc}h3{font-size:1.05rem;margin-top:1rem}h4.block-label{font-size:.95rem;font-weight:600;margin-top:.75rem;margin-bottom:.25rem}p{margin:0 0 .75rem}.summary{color:#333;margin-bottom:1.25rem}@media print{body{margin:0;max-width:none}h2,h3{break-after:avoid}}`;
return `<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"/><title>${escapeHtml(title)}</title><style>${styles}</style></head><body><h1>${escapeHtml(title)}</h1>${summaryBlock}${body}</body></html>`;
}
function splitDisplayParagraphs(text: string): string[] {
return text
.trim()
.split(/\n\s*\n/)
.filter((p) => p.trim().length > 0)
.map((p) => p.trim());
}
/**
* Same section structure as {@link buildPrintableRuleHtmlDocument}; renders a
* simple multi-page PDF (Helvetica, headings + wrapped body text).
*/
export function sectionsToPdfBlob(
title: string,
summary: string | null | undefined,
sections: CommunityRuleSection[],
): Blob {
const doc = new jsPDF({ unit: "mm", format: "a4" });
const margin = 20;
const pageW = doc.internal.pageSize.getWidth();
const pageH = doc.internal.pageSize.getHeight();
const maxW = pageW - 2 * margin;
let y = margin;
function ensureSpace(h: number): void {
if (y + h > pageH - margin) {
doc.addPage();
y = margin;
}
}
doc.setFont("helvetica", "bold");
doc.setFontSize(16);
{
const lines = doc.splitTextToSize(title, maxW);
const dim = doc.getTextDimensions(lines.join("\n"), { maxWidth: maxW });
ensureSpace(dim.h + 4);
doc.text(lines, margin, y);
y += dim.h + 6;
}
const sum = typeof summary === "string" ? summary.trim() : "";
if (sum.length > 0) {
for (const p of splitDisplayParagraphs(sum)) {
doc.setFont("helvetica", "normal");
doc.setFontSize(11);
const lines = doc.splitTextToSize(p, maxW);
const dim = doc.getTextDimensions(lines.join("\n"), { maxWidth: maxW });
ensureSpace(dim.h + 2);
doc.text(lines, margin, y);
y += dim.h + 3;
}
y += 2;
}
for (const sec of sections) {
doc.setFont("helvetica", "bold");
doc.setFontSize(13);
{
const lines = doc.splitTextToSize(sec.categoryName, maxW);
const dim = doc.getTextDimensions(lines.join("\n"), { maxWidth: maxW });
ensureSpace(dim.h + 3);
doc.text(lines, margin, y);
y += dim.h + 5;
}
for (const ent of sec.entries) {
doc.setFont("helvetica", "bold");
doc.setFontSize(11);
{
const lines = doc.splitTextToSize(ent.title, maxW);
const dim = doc.getTextDimensions(lines.join("\n"), { maxWidth: maxW });
ensureSpace(dim.h + 2);
doc.text(lines, margin, y);
y += dim.h + 3;
}
if (ent.blocks && ent.blocks.length > 0) {
for (const b of ent.blocks) {
doc.setFont("helvetica", "bold");
doc.setFontSize(10);
{
const lines = doc.splitTextToSize(b.label, maxW);
const dim = doc.getTextDimensions(lines.join("\n"), {
maxWidth: maxW,
});
ensureSpace(dim.h + 1);
doc.text(lines, margin, y);
y += dim.h + 2;
}
for (const p of splitDisplayParagraphs(b.body)) {
doc.setFont("helvetica", "normal");
doc.setFontSize(11);
const lines = doc.splitTextToSize(p, maxW);
const dim = doc.getTextDimensions(lines.join("\n"), {
maxWidth: maxW,
});
ensureSpace(dim.h + 1);
doc.text(lines, margin, y);
y += dim.h + 2;
}
}
} else {
for (const p of splitDisplayParagraphs(ent.body ?? "")) {
doc.setFont("helvetica", "normal");
doc.setFontSize(11);
const lines = doc.splitTextToSize(p, maxW);
const dim = doc.getTextDimensions(lines.join("\n"), { maxWidth: maxW });
ensureSpace(dim.h + 1);
doc.text(lines, margin, y);
y += dim.h + 2;
}
}
}
}
const ab = doc.output("arraybuffer") as ArrayBuffer;
return new Blob([ab], { type: "application/pdf" });
}
export function buildStoredRulePdfBlob(rule: StoredLastPublishedRule): Blob {
const sections = parsePublishedDocumentForCommunityRuleDisplay(rule.document);
if (sections.length === 0) {
throw new Error("exportEmptyDocument");
}
return sectionsToPdfBlob(rule.title, rule.summary, sections);
}
export function downloadStoredRuleAsPdf(rule: StoredLastPublishedRule): void {
if (typeof document === "undefined") return;
const blob = buildStoredRulePdfBlob(rule);
const base = exportFilenameBase(rule);
downloadBlob(`${base}-community-rule.pdf`, blob);
}
export function downloadBlob(filename: string, blob: Blob): void {
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;
a.download = filename;
a.rel = "noopener";
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
}
export function downloadTextFile(
filename: string,
contents: string,
mime: string,
): void {
const blob = new Blob([contents], { type: mime });
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;
a.download = filename;
a.rel = "noopener";
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
}
+105
View File
@@ -0,0 +1,105 @@
/**
* Pure URL builders + a small navigator for cross-app share flows (mailto,
* Slack compose, Discord DMs). Native schemes are allowlisted below.
*/
/** Slack: opens native client default workspace — no prefilled compose (Slack lacks team-agnostic native share URLs). docs: slack://open */
export const SLACK_NATIVE_OPEN_URL = "slack://open";
/**
* Discord desktop/mobile client DM hub (@me). Mirrors https://discord.com/channels/@me
* (widely referenced community/client pattern: discord://-/channels/@me).
*/
export const DISCORD_NATIVE_DM_HUB_URL = "discord://-/channels/@me";
const ALLOWLISTED_NATIVE_NAV_URL = new Set<string>([
SLACK_NATIVE_OPEN_URL,
DISCORD_NATIVE_DM_HUB_URL,
]);
/** Slack historically exposed a web share endpoint; still useful as primary web compose. */
export function buildSlackWebShareUrl(externalUrl: string): string {
return `https://slack.com/share?url=${encodeURIComponent(externalUrl)}`;
}
/** Opens Discord in the browser / app; user pastes the rule URL manually. */
export const DISCORD_WEB_DM_HUB_URL = "https://discord.com/channels/@me";
/**
* RFC 6068-style mailto href with percent-encoded subject and body.
* Body may contain newlines; they are encoded as %0A.
*/
export function buildMailtoShareHref(parts: {
subject: string;
body: string;
}): string {
const subject = encodeURIComponent(parts.subject);
const body = encodeURIComponent(parts.body);
return `mailto:?subject=${subject}&body=${body}`;
}
export const NATIVE_SHARE_FALLBACK_DELAY_MS = 550;
/** @internal Injectable timer surface for tests. */
export interface NativeFallbackTimers {
setTimeout(cb: () => void, ms: number): unknown;
clearTimeout(handle: unknown): void;
}
/** @internal Location assign / href navigation for tests. */
export interface NativeNavigateDeps {
assignLocationHref: (_url: string) => void;
getVisibilityState: () => Document["visibilityState"];
onVisibilityChange: (_listener: () => void) => void;
offVisibilityChange: (_listener: () => void) => void;
}
/**
* Assigns an allowlisted `slack:` / `discord:` URL once, then invokes
* `fallback` after `delayMs` if the tab never became hidden (blur / minimize).
* Cancels fallback when visibility becomes `"hidden"` (tab backgrounded).
*
* Not a guarantee the native app opens; web cannot detect install reliably.
*/
export function scheduleNativeSchemeThenFallback(
nativeUrl: string,
fallback: () => void,
deps: NativeNavigateDeps,
timers: NativeFallbackTimers,
delayMs = NATIVE_SHARE_FALLBACK_DELAY_MS,
): () => void {
if (!ALLOWLISTED_NATIVE_NAV_URL.has(nativeUrl)) {
fallback();
return () => {};
}
let cancelledBecauseHidden = deps.getVisibilityState() === "hidden";
const onHidden = (): void => {
if (deps.getVisibilityState() === "hidden") {
cancelledBecauseHidden = true;
}
};
deps.onVisibilityChange(onHidden);
try {
deps.assignLocationHref(nativeUrl);
} catch {
deps.offVisibilityChange(onHidden);
fallback();
return () => {};
}
const id = timers.setTimeout(() => {
deps.offVisibilityChange(onHidden);
if (!cancelledBecauseHidden && deps.getVisibilityState() === "visible") {
fallback();
}
}, delayMs);
return () => {
timers.clearTimeout(id);
deps.offVisibilityChange(onHidden);
};
}