@betterinternship/core 2.26.1 → 2.26.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ export interface EmailActionOptions {
2
+ href: string;
3
+ label: string;
4
+ }
5
+ export declare const renderEmailAction: ({ href, label }: EmailActionOptions) => string;
@@ -0,0 +1,15 @@
1
+ const escapeHtml = (value) => value
2
+ .replaceAll('&', '&')
3
+ .replaceAll('<', '&lt;')
4
+ .replaceAll('>', '&gt;')
5
+ .replaceAll('"', '&quot;')
6
+ .replaceAll("'", '&#39;');
7
+ export const renderEmailAction = ({ href, label }) => {
8
+ const escapedHref = escapeHtml(href);
9
+ return `<div style="margin:24px 0 0">
10
+ <a href="${escapedHref}" style="display:inline-block;padding:12px 22px;background:#155eef;color:#ffffff;border-radius:8px;text-decoration:none;font-size:14px;font-weight:700">${escapeHtml(label)} →</a>
11
+ <p style="margin:14px 0 0;font-size:12px;line-height:1.5;color:#64748b">Button not working? Copy and paste this link into your browser:</p>
12
+ <p style="margin:5px 0 0;font-size:12px;line-height:1.5;word-break:break-all"><a href="${escapedHref}" style="color:#155eef;text-decoration:underline;word-break:break-all">${escapedHref}</a></p>
13
+ </div>`;
14
+ };
15
+ //# sourceMappingURL=action.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action.js","sourceRoot":"","sources":["../../../lib/email/action.ts"],"names":[],"mappings":"AAKA,MAAM,UAAU,GAAG,CAAC,KAAa,EAAE,EAAE,CACnC,KAAK;KACF,UAAU,CAAC,GAAG,EAAE,OAAO,CAAC;KACxB,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC;KACvB,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC;KACvB,UAAU,CAAC,GAAG,EAAE,QAAQ,CAAC;KACzB,UAAU,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;AAG9B,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,EAAE,IAAI,EAAE,KAAK,EAAsB,EAAE,EAAE;IACvE,MAAM,WAAW,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC;IACrC,OAAO;aACI,WAAW,2JAA2J,UAAU,CAAC,KAAK,CAAC;;2FAEzG,WAAW,0EAA0E,WAAW;OACpL,CAAC;AACR,CAAC,CAAC"}
@@ -1,3 +1,4 @@
1
1
  export * from './email.js';
2
+ export * from './action.js';
2
3
  export * from './preview.js';
3
4
  export * from './shell.js';
@@ -1,4 +1,5 @@
1
1
  export * from './email.js';
2
+ export * from './action.js';
2
3
  export * from './preview.js';
3
4
  export * from './shell.js';
4
5
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../lib/email/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../lib/email/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC"}
@@ -1,6 +1,7 @@
1
1
  export interface EmailPreview {
2
2
  name: string;
3
3
  html: string;
4
+ sourcePath?: string;
4
5
  }
5
6
  export interface EmailPreviewCatalogOptions {
6
7
  title: string;
@@ -1,18 +1,28 @@
1
1
  import { mkdirSync, writeFileSync } from 'fs';
2
2
  import { join } from 'path';
3
+ import { spawnSync } from 'child_process';
3
4
  const escapeHtml = (value) => value
4
5
  .replaceAll('&', '&amp;')
5
6
  .replaceAll('<', '&lt;')
6
7
  .replaceAll('>', '&gt;')
7
8
  .replaceAll('"', '&quot;')
8
9
  .replaceAll("'", '&#39;');
10
+ const isModified = (sourcePath) => {
11
+ if (!sourcePath)
12
+ return false;
13
+ const result = spawnSync('git', ['status', '--porcelain', '--', sourcePath], {
14
+ encoding: 'utf8',
15
+ });
16
+ return result.status === 0 && Boolean(result.stdout.trim());
17
+ };
9
18
  export const writeEmailPreviewCatalog = ({ title, previews, outputDirectory, }) => {
10
19
  mkdirSync(outputDirectory, { recursive: true });
11
- const catalogItems = previews.map(({ name, html }, index) => {
20
+ const catalogItems = previews.map(({ name, html, sourcePath }, index) => {
12
21
  const filename = `${String(index + 1).padStart(2, '0')}.html`;
13
22
  writeFileSync(join(outputDirectory, filename), html);
14
23
  const escapedName = escapeHtml(name);
15
- return `<section><h2>${escapedName}</h2><iframe src="${filename}" title="${escapedName}"></iframe></section>`;
24
+ const badge = isModified(sourcePath) ? '<span>Updated</span>' : '';
25
+ return `<section><h2>${escapedName}${badge}</h2><iframe src="${filename}" title="${escapedName}"></iframe></section>`;
16
26
  });
17
27
  const escapedTitle = escapeHtml(title);
18
28
  const catalogPath = join(outputDirectory, 'index.html');
@@ -26,7 +36,8 @@ export const writeEmailPreviewCatalog = ({ title, previews, outputDirectory, })
26
36
  h1 { margin: 0 0 8px; }
27
37
  p { margin: 0 0 32px; color: #5c6880; }
28
38
  section { max-width: 680px; margin: 0 auto 36px; }
29
- h2 { font-size: 16px; margin: 0 0 10px; }
39
+ h2 { display: flex; align-items: center; gap: 8px; font-size: 16px; margin: 0 0 10px; }
40
+ h2 span { padding: 3px 7px; border-radius: 999px; background: #dbeafe; color: #1d4ed8; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
30
41
  iframe { width: 100%; height: 760px; border: 1px solid #d7deea; background: #fff; border-radius: 8px; }
31
42
  </style>
32
43
  </head>
@@ -1 +1 @@
1
- {"version":3,"file":"preview.js","sourceRoot":"","sources":["../../../lib/email/preview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,IAAI,CAAC;AAC9C,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AAa5B,MAAM,UAAU,GAAG,CAAC,KAAa,EAAE,EAAE,CACnC,KAAK;KACF,UAAU,CAAC,GAAG,EAAE,OAAO,CAAC;KACxB,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC;KACvB,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC;KACvB,UAAU,CAAC,GAAG,EAAE,QAAQ,CAAC;KACzB,UAAU,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;AAG9B,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,EACvC,KAAK,EACL,QAAQ,EACR,eAAe,GACY,EAAE,EAAE;IAC/B,SAAS,CAAC,eAAe,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAEhD,MAAM,YAAY,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,KAAK,EAAE,EAAE;QAC1D,MAAM,QAAQ,GAAG,GAAG,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC;QAC9D,aAAa,CAAC,IAAI,CAAC,eAAe,EAAE,QAAQ,CAAC,EAAE,IAAI,CAAC,CAAC;QACrD,MAAM,WAAW,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC;QACrC,OAAO,gBAAgB,WAAW,qBAAqB,QAAQ,YAAY,WAAW,uBAAuB,CAAC;IAChH,CAAC,CAAC,CAAC;IAEH,MAAM,YAAY,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC;IACvC,MAAM,WAAW,GAAG,IAAI,CAAC,eAAe,EAAE,YAAY,CAAC,CAAC;IACxD,aAAa,CACX,WAAW,EACX;;;;aAIS,YAAY;;;;;;;;;;;UAWf,YAAY;;MAEhB,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC;;QAEzB,CACL,CAAC;IAEF,OAAO,WAAW,CAAC;AACrB,CAAC,CAAC"}
1
+ {"version":3,"file":"preview.js","sourceRoot":"","sources":["../../../lib/email/preview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,IAAI,CAAC;AAC9C,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AAC5B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAc1C,MAAM,UAAU,GAAG,CAAC,KAAa,EAAE,EAAE,CACnC,KAAK;KACF,UAAU,CAAC,GAAG,EAAE,OAAO,CAAC;KACxB,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC;KACvB,UAAU,CAAC,GAAG,EAAE,MAAM,CAAC;KACvB,UAAU,CAAC,GAAG,EAAE,QAAQ,CAAC;KACzB,UAAU,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;AAE9B,MAAM,UAAU,GAAG,CAAC,UAAmB,EAAE,EAAE;IACzC,IAAI,CAAC,UAAU;QAAE,OAAO,KAAK,CAAC;IAC9B,MAAM,MAAM,GAAG,SAAS,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE,aAAa,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE;QAC3E,QAAQ,EAAE,MAAM;KACjB,CAAC,CAAC;IACH,OAAO,MAAM,CAAC,MAAM,KAAK,CAAC,IAAI,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC;AAC9D,CAAC,CAAC;AAGF,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,EACvC,KAAK,EACL,QAAQ,EACR,eAAe,GACY,EAAE,EAAE;IAC/B,SAAS,CAAC,eAAe,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAEhD,MAAM,YAAY,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE,KAAK,EAAE,EAAE;QACtE,MAAM,QAAQ,GAAG,GAAG,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC;QAC9D,aAAa,CAAC,IAAI,CAAC,eAAe,EAAE,QAAQ,CAAC,EAAE,IAAI,CAAC,CAAC;QACrD,MAAM,WAAW,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC;QACrC,MAAM,KAAK,GAAG,UAAU,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,sBAAsB,CAAC,CAAC,CAAC,EAAE,CAAC;QACnE,OAAO,gBAAgB,WAAW,GAAG,KAAK,qBAAqB,QAAQ,YAAY,WAAW,uBAAuB,CAAC;IACxH,CAAC,CAAC,CAAC;IAEH,MAAM,YAAY,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC;IACvC,MAAM,WAAW,GAAG,IAAI,CAAC,eAAe,EAAE,YAAY,CAAC,CAAC;IACxD,aAAa,CACX,WAAW,EACX;;;;aAIS,YAAY;;;;;;;;;;;;UAYf,YAAY;;MAEhB,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC;;QAEzB,CACL,CAAC;IAEF,OAAO,WAAW,CAAC;AACrB,CAAC,CAAC"}