react-email 4.1.0-canary.7 → 4.1.0-canary.9
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.
- package/CHANGELOG.md +24 -0
- package/dist/{cli/index.mjs → index.js} +445 -422
- package/package.json +11 -46
- package/src/commands/build.ts +306 -0
- package/src/commands/dev.ts +27 -0
- package/src/commands/export.ts +204 -0
- package/src/commands/start.ts +38 -0
- package/src/index.ts +55 -0
- package/src/utils/__snapshots__/tree.spec.ts.snap +27 -0
- package/src/utils/esbuild/renderring-utilities-exporter.ts +1 -1
- package/src/utils/get-emails-directory-metadata.spec.ts +1 -1
- package/src/utils/get-preview-server-location.ts +51 -0
- package/src/utils/index.ts +2 -6
- package/src/utils/packageJson.ts +4 -0
- package/src/utils/preview/get-env-variables-for-preview-app.ts +14 -0
- package/src/utils/preview/hot-reloading/create-dependency-graph.spec.ts +281 -0
- package/src/utils/preview/hot-reloading/create-dependency-graph.ts +321 -0
- package/src/utils/preview/hot-reloading/get-imported-modules.spec.ts +151 -0
- package/src/utils/preview/hot-reloading/get-imported-modules.ts +49 -0
- package/src/utils/preview/hot-reloading/resolve-path-aliases.spec.ts +11 -0
- package/src/utils/preview/hot-reloading/resolve-path-aliases.ts +32 -0
- package/src/utils/preview/hot-reloading/setup-hot-reloading.ts +121 -0
- package/src/utils/preview/hot-reloading/test/tsconfig.json +8 -0
- package/src/utils/preview/index.ts +2 -0
- package/src/utils/preview/serve-static-file.ts +51 -0
- package/src/utils/preview/start-dev-server.ts +234 -0
- package/src/utils/tree.spec.ts +5 -0
- package/src/utils/tree.ts +76 -0
- package/src/utils/types/hot-reload-change.ts +1 -1
- package/src/utils/types/hot-reload-event.ts +1 -1
- package/tsconfig.json +4 -10
- package/dist/preview/.next/BUILD_ID +0 -1
- package/dist/preview/.next/app-build-manifest.json +0 -44
- package/dist/preview/.next/app-path-routes-manifest.json +0 -6
- package/dist/preview/.next/build-manifest.json +0 -33
- package/dist/preview/.next/diagnostics/build-diagnostics.json +0 -6
- package/dist/preview/.next/diagnostics/framework.json +0 -1
- package/dist/preview/.next/export-marker.json +0 -6
- package/dist/preview/.next/images-manifest.json +0 -57
- package/dist/preview/.next/next-minimal-server.js.nft.json +0 -1
- package/dist/preview/.next/next-server.js.nft.json +0 -1
- package/dist/preview/.next/package.json +0 -1
- package/dist/preview/.next/prerender-manifest.json +0 -41
- package/dist/preview/.next/react-loadable-manifest.json +0 -1
- package/dist/preview/.next/required-server-files.json +0 -311
- package/dist/preview/.next/routes-manifest.json +0 -64
- package/dist/preview/.next/server/app/_not-found/page.js +0 -1
- package/dist/preview/.next/server/app/_not-found/page.js.nft.json +0 -1
- package/dist/preview/.next/server/app/_not-found/page_client-reference-manifest.js +0 -1
- package/dist/preview/.next/server/app/favicon.ico/route.js +0 -1
- package/dist/preview/.next/server/app/favicon.ico/route.js.nft.json +0 -1
- package/dist/preview/.next/server/app/favicon.ico.body +0 -0
- package/dist/preview/.next/server/app/favicon.ico.meta +0 -1
- package/dist/preview/.next/server/app/page.js +0 -1
- package/dist/preview/.next/server/app/page.js.nft.json +0 -1
- package/dist/preview/.next/server/app/page_client-reference-manifest.js +0 -1
- package/dist/preview/.next/server/app/preview/[...slug]/page.js +0 -321
- package/dist/preview/.next/server/app/preview/[...slug]/page.js.nft.json +0 -1
- package/dist/preview/.next/server/app/preview/[...slug]/page_client-reference-manifest.js +0 -1
- package/dist/preview/.next/server/app-paths-manifest.json +0 -6
- package/dist/preview/.next/server/chunks/134.js +0 -6
- package/dist/preview/.next/server/chunks/235.js +0 -15
- package/dist/preview/.next/server/chunks/343.js +0 -20
- package/dist/preview/.next/server/chunks/425.js +0 -1
- package/dist/preview/.next/server/chunks/428.js +0 -14
- package/dist/preview/.next/server/chunks/963.js +0 -1
- package/dist/preview/.next/server/functions-config-manifest.json +0 -4
- package/dist/preview/.next/server/interception-route-rewrite-manifest.js +0 -1
- package/dist/preview/.next/server/middleware-build-manifest.js +0 -1
- package/dist/preview/.next/server/middleware-manifest.json +0 -6
- package/dist/preview/.next/server/middleware-react-loadable-manifest.js +0 -1
- package/dist/preview/.next/server/next-font-manifest.js +0 -1
- package/dist/preview/.next/server/next-font-manifest.json +0 -1
- package/dist/preview/.next/server/pages/500.html +0 -1
- package/dist/preview/.next/server/pages/_app.js +0 -1
- package/dist/preview/.next/server/pages/_app.js.nft.json +0 -1
- package/dist/preview/.next/server/pages/_document.js +0 -1
- package/dist/preview/.next/server/pages/_document.js.nft.json +0 -1
- package/dist/preview/.next/server/pages/_error.js +0 -1
- package/dist/preview/.next/server/pages/_error.js.nft.json +0 -1
- package/dist/preview/.next/server/pages-manifest.json +0 -5
- package/dist/preview/.next/server/server-reference-manifest.js +0 -1
- package/dist/preview/.next/server/server-reference-manifest.json +0 -1
- package/dist/preview/.next/server/webpack-runtime.js +0 -1
- package/dist/preview/.next/static/4K22R8mt8Z5akBgUuivvR/_buildManifest.js +0 -1
- package/dist/preview/.next/static/4K22R8mt8Z5akBgUuivvR/_ssgManifest.js +0 -1
- package/dist/preview/.next/static/chunks/107-3043079e7cb8bcae.js +0 -1
- package/dist/preview/.next/static/chunks/293-297b1eb2241f9a70.js +0 -1
- package/dist/preview/.next/static/chunks/3bd82e28-cda2c00a924937c5.js +0 -1
- package/dist/preview/.next/static/chunks/45-1021fac82f766268.js +0 -1
- package/dist/preview/.next/static/chunks/484-25cf313c25750c6a.js +0 -1
- package/dist/preview/.next/static/chunks/589-817d8691661d370e.js +0 -1
- package/dist/preview/.next/static/chunks/902-c34acb56733e0ce1.js +0 -1
- package/dist/preview/.next/static/chunks/app/_not-found/page-4cbc7dce3ad33336.js +0 -1
- package/dist/preview/.next/static/chunks/app/layout-ce14b7ba365bfddc.js +0 -1
- package/dist/preview/.next/static/chunks/app/page-65fd67d48528e2ba.js +0 -1
- package/dist/preview/.next/static/chunks/app/preview/[...slug]/page-35fab824504104aa.js +0 -1
- package/dist/preview/.next/static/chunks/f33a14d2-ec7c5f0b91818561.js +0 -6
- package/dist/preview/.next/static/chunks/framework-b887e9fc751a9906.js +0 -1
- package/dist/preview/.next/static/chunks/main-9a03e7ba8acb1900.js +0 -1
- package/dist/preview/.next/static/chunks/main-app-dbd8e1ec12eabb66.js +0 -1
- package/dist/preview/.next/static/chunks/pages/_app-542a93a5a214e1c0.js +0 -1
- package/dist/preview/.next/static/chunks/pages/_error-d5fe1b1612642f76.js +0 -1
- package/dist/preview/.next/static/chunks/polyfills-42372ed130431b0a.js +0 -1
- package/dist/preview/.next/static/chunks/webpack-31c45daa2bd82a7b.js +0 -1
- package/dist/preview/.next/static/css/6f42d128f111d7fa.css +0 -3
- package/dist/preview/.next/static/media/05613964ce6c782e-s.p.otf +0 -0
- package/dist/preview/.next/static/media/11c6126b9369e85e-s.p.otf +0 -0
- package/dist/preview/.next/static/media/26a46d62cd723877-s.woff2 +0 -0
- package/dist/preview/.next/static/media/26cb97734d8cb717-s.p.otf +0 -0
- package/dist/preview/.next/static/media/55c55f0601d81cf3-s.woff2 +0 -0
- package/dist/preview/.next/static/media/581909926a08bbc8-s.woff2 +0 -0
- package/dist/preview/.next/static/media/6d93bde91c0c2823-s.woff2 +0 -0
- package/dist/preview/.next/static/media/97e0cb1ae144a2a9-s.woff2 +0 -0
- package/dist/preview/.next/static/media/a34f9d1faa5f3315-s.p.woff2 +0 -0
- package/dist/preview/.next/static/media/bb6462617151f6b7-s.p.otf +0 -0
- package/dist/preview/.next/static/media/cf6daef822ab0142-s.p.otf +0 -0
- package/dist/preview/.next/static/media/df0a9ae256c0569c-s.woff2 +0 -0
- package/dist/preview/.next/static/media/e4051546b3043204-s.p.otf +0 -0
- package/dist/preview/.next/static/media/logo.2ce2a759.png +0 -0
- package/dist/preview/.next/trace +0 -28
- package/dist/preview/.next/types/app/layout.ts +0 -84
- package/dist/preview/.next/types/app/page.ts +0 -84
- package/dist/preview/.next/types/app/preview/[...slug]/page.ts +0 -84
- package/dist/preview/.next/types/cache-life.d.ts +0 -141
- package/dist/preview/.next/types/package.json +0 -1
- package/module-punycode.d.ts +0 -3
- package/next-env.d.ts +0 -5
- package/next.config.js +0 -22
- package/postcss.config.js +0 -8
- package/scripts/build-preview-server.mjs +0 -33
- package/scripts/fill-caniemail-data.mjs +0 -36
- package/src/actions/email-validation/caniemail-data.ts +0 -85993
- package/src/actions/email-validation/check-compatibility.ts +0 -333
- package/src/actions/email-validation/check-images.spec.tsx +0 -100
- package/src/actions/email-validation/check-images.ts +0 -160
- package/src/actions/email-validation/check-links.spec.tsx +0 -113
- package/src/actions/email-validation/check-links.ts +0 -113
- package/src/actions/email-validation/get-code-location-from-ast-element.ts +0 -18
- package/src/actions/email-validation/quick-fetch.ts +0 -14
- package/src/actions/get-email-path-from-slug.ts +0 -32
- package/src/actions/get-emails-directory-metadata-action.ts +0 -19
- package/src/actions/render-email-by-path.tsx +0 -121
- package/src/animated-icons-data/help.json +0 -1082
- package/src/animated-icons-data/link.json +0 -1309
- package/src/animated-icons-data/load.json +0 -443
- package/src/animated-icons-data/mail.json +0 -1320
- package/src/app/env.ts +0 -15
- package/src/app/favicon.ico +0 -0
- package/src/app/fonts/SFMono/SFMonoBold.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoBoldItalic.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoHeavy.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoHeavyItalic.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoLight.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoLightItalic.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoMedium.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoMediumItalic.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoRegular.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoRegularItalic.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoSemibold.otf +0 -0
- package/src/app/fonts/SFMono/SFMonoSemiboldItalic.otf +0 -0
- package/src/app/fonts.ts +0 -39
- package/src/app/globals.css +0 -15
- package/src/app/layout.tsx +0 -45
- package/src/app/logo.png +0 -0
- package/src/app/page.tsx +0 -46
- package/src/app/preview/[...slug]/page.tsx +0 -157
- package/src/app/preview/[...slug]/preview.tsx +0 -234
- package/src/app/preview/[...slug]/rendering-error.tsx +0 -40
- package/src/components/button.tsx +0 -101
- package/src/components/code-container.tsx +0 -164
- package/src/components/code-snippet.tsx +0 -9
- package/src/components/code.tsx +0 -184
- package/src/components/heading.tsx +0 -113
- package/src/components/icons/icon-arrow-down.tsx +0 -16
- package/src/components/icons/icon-base.tsx +0 -26
- package/src/components/icons/icon-bug.tsx +0 -19
- package/src/components/icons/icon-button.tsx +0 -23
- package/src/components/icons/icon-check.tsx +0 -19
- package/src/components/icons/icon-clipboard.tsx +0 -40
- package/src/components/icons/icon-download.tsx +0 -19
- package/src/components/icons/icon-email.tsx +0 -18
- package/src/components/icons/icon-file.tsx +0 -19
- package/src/components/icons/icon-folder-open.tsx +0 -19
- package/src/components/icons/icon-folder.tsx +0 -18
- package/src/components/icons/icon-hide-sidebar.tsx +0 -23
- package/src/components/icons/icon-image.tsx +0 -19
- package/src/components/icons/icon-info.tsx +0 -18
- package/src/components/icons/icon-link.tsx +0 -14
- package/src/components/icons/icon-monitor.tsx +0 -19
- package/src/components/icons/icon-moon.tsx +0 -16
- package/src/components/icons/icon-phone.tsx +0 -26
- package/src/components/icons/icon-reload.tsx +0 -18
- package/src/components/icons/icon-source.tsx +0 -19
- package/src/components/icons/icon-stamp.tsx +0 -14
- package/src/components/icons/icon-sun.tsx +0 -16
- package/src/components/icons/icon-warning.tsx +0 -31
- package/src/components/index.ts +0 -7
- package/src/components/logo.tsx +0 -63
- package/src/components/resizable-wrapper.tsx +0 -173
- package/src/components/send.tsx +0 -134
- package/src/components/shell.tsx +0 -92
- package/src/components/sidebar/file-tree-directory-children.tsx +0 -139
- package/src/components/sidebar/file-tree-directory.tsx +0 -92
- package/src/components/sidebar/file-tree.tsx +0 -31
- package/src/components/sidebar/index.ts +0 -1
- package/src/components/sidebar/sidebar.tsx +0 -43
- package/src/components/text.tsx +0 -99
- package/src/components/toolbar/checking-results.tsx +0 -150
- package/src/components/toolbar/code-preview-line-link.tsx +0 -40
- package/src/components/toolbar/compatibility.tsx +0 -113
- package/src/components/toolbar/linter.tsx +0 -278
- package/src/components/toolbar/results.tsx +0 -51
- package/src/components/toolbar/spam-assassin.tsx +0 -155
- package/src/components/toolbar/toolbar-button.tsx +0 -52
- package/src/components/toolbar/use-cached-state.ts +0 -33
- package/src/components/toolbar.tsx +0 -349
- package/src/components/tooltip-content.tsx +0 -31
- package/src/components/tooltip.tsx +0 -19
- package/src/components/topbar/active-view-toggle-group.tsx +0 -86
- package/src/components/topbar/theme-toggle-group.tsx +0 -87
- package/src/components/topbar/view-size-controls.tsx +0 -247
- package/src/components/topbar.tsx +0 -59
- package/src/contexts/emails.tsx +0 -59
- package/src/contexts/fragment-identifier.tsx +0 -48
- package/src/contexts/preview.tsx +0 -79
- package/src/hooks/use-clamped-state.ts +0 -24
- package/src/hooks/use-email-rendering-result.ts +0 -58
- package/src/hooks/use-fragment-identifier.ts +0 -14
- package/src/hooks/use-hot-reload.ts +0 -31
- package/src/hooks/use-icon-animation.ts +0 -41
- package/src/hooks/use-iframe-color-scheme.ts +0 -35
- package/src/hooks/use-rendering-metadata.ts +0 -36
- package/src/utils/__snapshots__/get-email-component.spec.ts.snap +0 -3
- package/src/utils/caniemail/all-css-properties.ts +0 -358
- package/src/utils/caniemail/ast/__snapshots__/get-object-variables.spec.ts.snap +0 -74
- package/src/utils/caniemail/ast/__snapshots__/get-used-style-properties.spec.ts.snap +0 -24
- package/src/utils/caniemail/ast/get-object-variables.spec.ts +0 -19
- package/src/utils/caniemail/ast/get-object-variables.ts +0 -61
- package/src/utils/caniemail/ast/get-used-style-properties.spec.ts +0 -23
- package/src/utils/caniemail/ast/get-used-style-properties.ts +0 -91
- package/src/utils/caniemail/get-compatibility-stats-for-entry.ts +0 -118
- package/src/utils/caniemail/get-css-functions.ts +0 -25
- package/src/utils/caniemail/get-css-property-names.ts +0 -32
- package/src/utils/caniemail/get-css-property-with-value.ts +0 -14
- package/src/utils/caniemail/get-css-unit.ts +0 -3
- package/src/utils/caniemail/get-element-attributes.ts +0 -7
- package/src/utils/caniemail/get-element-names.ts +0 -20
- package/src/utils/caniemail/tailwind/generate-tailwind-rules.ts +0 -30
- package/src/utils/caniemail/tailwind/get-tailwind-config.ts +0 -187
- package/src/utils/caniemail/tailwind/get-tailwind-metadata.spec.ts +0 -25
- package/src/utils/caniemail/tailwind/get-tailwind-metadata.ts +0 -45
- package/src/utils/caniemail/tailwind/setup-tailwind-context.ts +0 -15
- package/src/utils/cn.ts +0 -6
- package/src/utils/constants.ts +0 -6
- package/src/utils/contains-email-template.spec.ts +0 -107
- package/src/utils/contains-email-template.ts +0 -33
- package/src/utils/copy-text-to-clipboard.ts +0 -7
- package/src/utils/get-email-component.spec.ts +0 -41
- package/src/utils/get-email-component.ts +0 -134
- package/src/utils/get-line-and-column-from-offset.spec.ts +0 -11
- package/src/utils/get-line-and-column-from-offset.ts +0 -11
- package/src/utils/improve-error-with-sourcemap.ts +0 -85
- package/src/utils/js-email-detection.spec.ts +0 -24
- package/src/utils/language-map.ts +0 -7
- package/src/utils/linting.ts +0 -60
- package/src/utils/load-stream.ts +0 -15
- package/src/utils/result.ts +0 -49
- package/src/utils/run-bundled-code.ts +0 -64
- package/src/utils/sanitize.ts +0 -6
- package/src/utils/static-node-modules-for-vm.ts +0 -93
- package/src/utils/testing/js-email-export-default.js +0 -17
- package/src/utils/testing/js-email-test.js +0 -18
- package/src/utils/testing/mdx-email-test.js +0 -128
- package/src/utils/testing/request-response-email.tsx +0 -9
- package/src/utils/types/as.ts +0 -26
- package/src/utils/types/email-template.ts +0 -8
- package/src/utils/types/error-object.ts +0 -11
- package/src/utils/unreachable.ts +0 -8
- package/tailwind-internals.d.ts +0 -133
- package/tailwind.config.ts +0 -99
- /package/src/{components/toolbar/results-table.tsx → utils/preview/hot-reloading/test/some-file.ts} +0 -0
|
@@ -1,150 +0,0 @@
|
|
|
1
|
-
import * as Collapsible from '@radix-ui/react-collapsible';
|
|
2
|
-
import { AnimatePresence, motion } from 'framer-motion';
|
|
3
|
-
import type { ComponentProps } from 'react';
|
|
4
|
-
import { cn } from '../../utils';
|
|
5
|
-
|
|
6
|
-
export type ResultStatus = 'error' | 'warning' | 'success';
|
|
7
|
-
|
|
8
|
-
const statusStyles = {
|
|
9
|
-
error: 'text-red-600 hover:bg-red-600/10',
|
|
10
|
-
warning: 'text-yellow-300 hover:bg-yellow-400/10',
|
|
11
|
-
success: 'text-green-600 hover:bg-green-600/10',
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
interface ResultListProps {
|
|
15
|
-
status: ResultStatus;
|
|
16
|
-
label: React.ReactNode;
|
|
17
|
-
|
|
18
|
-
disabled?: boolean;
|
|
19
|
-
defaultOpen?: boolean;
|
|
20
|
-
|
|
21
|
-
children: React.ReactNode;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export const ResultList = ({
|
|
25
|
-
status,
|
|
26
|
-
label,
|
|
27
|
-
|
|
28
|
-
disabled,
|
|
29
|
-
defaultOpen,
|
|
30
|
-
|
|
31
|
-
children,
|
|
32
|
-
}: ResultListProps) => {
|
|
33
|
-
return (
|
|
34
|
-
<Collapsible.Root className="group" defaultOpen={defaultOpen && !disabled}>
|
|
35
|
-
<Collapsible.Trigger
|
|
36
|
-
className={cn(
|
|
37
|
-
'group flex w-full items-center gap-1 rounded p-2 transition-colors duration-200 ease-[cubic-bezier(.36,.66,.6,1)]',
|
|
38
|
-
statusStyles[status],
|
|
39
|
-
disabled && 'cursor-not-allowed opacity-70',
|
|
40
|
-
)}
|
|
41
|
-
disabled={disabled}
|
|
42
|
-
>
|
|
43
|
-
<span
|
|
44
|
-
className={cn(
|
|
45
|
-
'-mt-[.125rem] transition-transform duration-200 ease-[cubic-bezier(.36,.66,.6,1)]',
|
|
46
|
-
'rotate-0 group-data-[state=open]:rotate-90',
|
|
47
|
-
)}
|
|
48
|
-
>
|
|
49
|
-
<svg
|
|
50
|
-
fill="none"
|
|
51
|
-
height="15"
|
|
52
|
-
viewBox="0 0 15 15"
|
|
53
|
-
width="15"
|
|
54
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
55
|
-
>
|
|
56
|
-
<path
|
|
57
|
-
clipRule="evenodd"
|
|
58
|
-
d="M6.1584 3.13508C6.35985 2.94621 6.67627 2.95642 6.86514 3.15788L10.6151 7.15788C10.7954 7.3502 10.7954 7.64949 10.6151 7.84182L6.86514 11.8418C6.67627 12.0433 6.35985 12.0535 6.1584 11.8646C5.95694 11.6757 5.94673 11.3593 6.1356 11.1579L9.565 7.49985L6.1356 3.84182C5.94673 3.64036 5.95694 3.32394 6.1584 3.13508Z"
|
|
59
|
-
fill="currentColor"
|
|
60
|
-
fillRule="evenodd"
|
|
61
|
-
/>
|
|
62
|
-
</svg>
|
|
63
|
-
</span>
|
|
64
|
-
<div className="flex flex-1 items-center gap-1 font-bold text-[.625rem] uppercase tracking-wide">
|
|
65
|
-
{label}
|
|
66
|
-
</div>
|
|
67
|
-
</Collapsible.Trigger>
|
|
68
|
-
{children ? (
|
|
69
|
-
<Collapsible.Content>
|
|
70
|
-
<ol className="mt-2 mb-1 flex list-none flex-col gap-4">
|
|
71
|
-
{children}
|
|
72
|
-
</ol>
|
|
73
|
-
</Collapsible.Content>
|
|
74
|
-
) : null}
|
|
75
|
-
</Collapsible.Root>
|
|
76
|
-
);
|
|
77
|
-
};
|
|
78
|
-
|
|
79
|
-
type ResultProps = {
|
|
80
|
-
status: ResultStatus;
|
|
81
|
-
} & ComponentProps<typeof motion.li>;
|
|
82
|
-
|
|
83
|
-
const resultAnimation = {
|
|
84
|
-
hidden: { opacity: 0, y: 10 },
|
|
85
|
-
visible: {
|
|
86
|
-
opacity: 1,
|
|
87
|
-
y: 0,
|
|
88
|
-
transition: { duration: 0.6, ease: 'easeOut', staggerChildren: 0.1 },
|
|
89
|
-
},
|
|
90
|
-
};
|
|
91
|
-
|
|
92
|
-
export const Result = ({ children, status, ...rest }: ResultProps) => {
|
|
93
|
-
return (
|
|
94
|
-
<AnimatePresence mode="wait">
|
|
95
|
-
<motion.li
|
|
96
|
-
data-status={status}
|
|
97
|
-
initial="hidden"
|
|
98
|
-
layout
|
|
99
|
-
variants={resultAnimation}
|
|
100
|
-
animate="visible"
|
|
101
|
-
{...rest}
|
|
102
|
-
className={cn(
|
|
103
|
-
'group/item relative w-full rounded-md p-2 pl-4 transition-colors duration-300 ease-out hover:bg-slate-5',
|
|
104
|
-
rest.className,
|
|
105
|
-
)}
|
|
106
|
-
>
|
|
107
|
-
{children}
|
|
108
|
-
</motion.li>
|
|
109
|
-
</AnimatePresence>
|
|
110
|
-
);
|
|
111
|
-
};
|
|
112
|
-
|
|
113
|
-
const titleStatusAnimation = {
|
|
114
|
-
hidden: { opacity: 0, y: 5 },
|
|
115
|
-
visible: {
|
|
116
|
-
opacity: 1,
|
|
117
|
-
y: 0,
|
|
118
|
-
transition: { duration: 0.4, ease: 'easeOut' },
|
|
119
|
-
},
|
|
120
|
-
};
|
|
121
|
-
|
|
122
|
-
interface ResultStatusDescriptionProps {
|
|
123
|
-
children: React.ReactNode;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
Result.StatusDescription = ({ children }: ResultStatusDescriptionProps) => {
|
|
127
|
-
return (
|
|
128
|
-
<motion.div
|
|
129
|
-
className="mt-1 font-semibold text-[.625rem] uppercase"
|
|
130
|
-
variants={titleStatusAnimation}
|
|
131
|
-
>
|
|
132
|
-
{children}
|
|
133
|
-
</motion.div>
|
|
134
|
-
);
|
|
135
|
-
};
|
|
136
|
-
|
|
137
|
-
interface ResultTitleProps {
|
|
138
|
-
children: React.ReactNode;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
Result.Title = ({ children }: ResultTitleProps) => {
|
|
142
|
-
return (
|
|
143
|
-
<motion.div
|
|
144
|
-
className="flex w-full items-center gap-2 text-xs group-data-[status=error]/item:text-red-400 group-data-[status=success]/item:text-green-400 group-data-[status=warning]/item:text-yellow-300 "
|
|
145
|
-
variants={titleStatusAnimation}
|
|
146
|
-
>
|
|
147
|
-
{children}
|
|
148
|
-
</motion.div>
|
|
149
|
-
);
|
|
150
|
-
};
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import Link from 'next/link';
|
|
2
|
-
import { useSearchParams } from 'next/navigation';
|
|
3
|
-
|
|
4
|
-
interface CodePreviewLineLinkProps {
|
|
5
|
-
line: number;
|
|
6
|
-
column: number;
|
|
7
|
-
|
|
8
|
-
type: 'react' | 'html';
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export const CodePreviewLineLink = ({
|
|
12
|
-
line,
|
|
13
|
-
column,
|
|
14
|
-
type,
|
|
15
|
-
}: CodePreviewLineLinkProps) => {
|
|
16
|
-
const searchParams = useSearchParams();
|
|
17
|
-
|
|
18
|
-
const newSearchParams = new URLSearchParams(searchParams);
|
|
19
|
-
newSearchParams.set('view', 'source');
|
|
20
|
-
if (type === 'html') {
|
|
21
|
-
newSearchParams.set('lang', 'markup');
|
|
22
|
-
} else if (type === 'react') {
|
|
23
|
-
newSearchParams.set('lang', 'jsx');
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
const fragmentIdentifier = `#L${line}`;
|
|
27
|
-
|
|
28
|
-
return (
|
|
29
|
-
<Link
|
|
30
|
-
href={{
|
|
31
|
-
search: newSearchParams.toString(),
|
|
32
|
-
hash: fragmentIdentifier,
|
|
33
|
-
}}
|
|
34
|
-
scroll={false}
|
|
35
|
-
className="appearance-none underline mx-2"
|
|
36
|
-
>
|
|
37
|
-
L{line.toString().padStart(2, '0')}
|
|
38
|
-
</Link>
|
|
39
|
-
);
|
|
40
|
-
};
|
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
import { useRef, useState } from 'react';
|
|
2
|
-
import { toast } from 'sonner';
|
|
3
|
-
import { nicenames } from '../../actions/email-validation/caniemail-data';
|
|
4
|
-
import {
|
|
5
|
-
type CompatibilityCheckingResult,
|
|
6
|
-
checkCompatibility,
|
|
7
|
-
} from '../../actions/email-validation/check-compatibility';
|
|
8
|
-
import { sanitize } from '../../utils';
|
|
9
|
-
import { loadStream } from '../../utils/load-stream';
|
|
10
|
-
import { IconWarning } from '../icons/icon-warning';
|
|
11
|
-
import { CodePreviewLineLink } from './code-preview-line-link';
|
|
12
|
-
import { Results } from './results';
|
|
13
|
-
|
|
14
|
-
export const useCompatibility = ({
|
|
15
|
-
reactMarkup,
|
|
16
|
-
emailPath,
|
|
17
|
-
|
|
18
|
-
initialResults,
|
|
19
|
-
}: {
|
|
20
|
-
reactMarkup: string;
|
|
21
|
-
emailPath: string;
|
|
22
|
-
|
|
23
|
-
initialResults?: CompatibilityCheckingResult[];
|
|
24
|
-
}) => {
|
|
25
|
-
const [results, setResults] = useState(initialResults);
|
|
26
|
-
|
|
27
|
-
const [loading, setLoading] = useState(false);
|
|
28
|
-
const isLoadingRef = useRef(false);
|
|
29
|
-
|
|
30
|
-
const load = async () => {
|
|
31
|
-
if (isLoadingRef.current) return;
|
|
32
|
-
isLoadingRef.current = true;
|
|
33
|
-
setLoading(true);
|
|
34
|
-
|
|
35
|
-
setResults([]);
|
|
36
|
-
let rawResults: CompatibilityCheckingResult[] = [];
|
|
37
|
-
|
|
38
|
-
try {
|
|
39
|
-
const stream = await checkCompatibility(reactMarkup, emailPath);
|
|
40
|
-
for await (const result of loadStream(stream)) {
|
|
41
|
-
if (result.status !== 'error') continue;
|
|
42
|
-
setResults((current) => {
|
|
43
|
-
if (!current) {
|
|
44
|
-
return [result];
|
|
45
|
-
}
|
|
46
|
-
rawResults = [...current, result];
|
|
47
|
-
return rawResults;
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
} catch (exception) {
|
|
51
|
-
console.error(exception);
|
|
52
|
-
toast.error(JSON.stringify(exception));
|
|
53
|
-
} finally {
|
|
54
|
-
setLoading(false);
|
|
55
|
-
isLoadingRef.current = false;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
return rawResults;
|
|
59
|
-
};
|
|
60
|
-
|
|
61
|
-
return [results, { loading, load }] as const;
|
|
62
|
-
};
|
|
63
|
-
|
|
64
|
-
interface CompatibilityProps {
|
|
65
|
-
results: CompatibilityCheckingResult[] | undefined;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
export const Compatibility = ({ results }: CompatibilityProps) => {
|
|
69
|
-
return (
|
|
70
|
-
<Results>
|
|
71
|
-
{results?.map((result, i) => {
|
|
72
|
-
const statsReportedNotWorking = Object.entries(
|
|
73
|
-
result.statsPerEmailClient,
|
|
74
|
-
).filter(([, stats]) => stats.status === 'error');
|
|
75
|
-
const unsupportedClientsString = statsReportedNotWorking
|
|
76
|
-
.map(([emailClient]) => nicenames.family[emailClient])
|
|
77
|
-
.join(', ');
|
|
78
|
-
|
|
79
|
-
return (
|
|
80
|
-
<Results.Row key={i}>
|
|
81
|
-
<Results.Column>
|
|
82
|
-
<span className="flex text-red-400 uppercase gap-2 items-center">
|
|
83
|
-
<IconWarning />
|
|
84
|
-
{sanitize(result.entry.title)}
|
|
85
|
-
</span>
|
|
86
|
-
</Results.Column>
|
|
87
|
-
<Results.Column>
|
|
88
|
-
{statsReportedNotWorking.length > 0
|
|
89
|
-
? `Not supported in ${unsupportedClientsString}`
|
|
90
|
-
: null}
|
|
91
|
-
|
|
92
|
-
<a
|
|
93
|
-
href={result.entry.url}
|
|
94
|
-
className="underline ml-2 decoration-slate-9 decoration-1 hover:decoration-slate-11 transition-colors hover:text-slate-12"
|
|
95
|
-
rel="noreferrer"
|
|
96
|
-
target="_blank"
|
|
97
|
-
>
|
|
98
|
-
More ↗
|
|
99
|
-
</a>
|
|
100
|
-
</Results.Column>
|
|
101
|
-
<Results.Column className="font-mono text-slate-11 text-right">
|
|
102
|
-
<CodePreviewLineLink
|
|
103
|
-
line={result.location.start.line}
|
|
104
|
-
column={result.location.start.column}
|
|
105
|
-
type="react"
|
|
106
|
-
/>
|
|
107
|
-
</Results.Column>
|
|
108
|
-
</Results.Row>
|
|
109
|
-
);
|
|
110
|
-
})}
|
|
111
|
-
</Results>
|
|
112
|
-
);
|
|
113
|
-
};
|
|
@@ -1,278 +0,0 @@
|
|
|
1
|
-
import prettyBytes from 'pretty-bytes';
|
|
2
|
-
import { Children, useRef, useState } from 'react';
|
|
3
|
-
import type { ImageCheckingResult } from '../../actions/email-validation/check-images';
|
|
4
|
-
import type { LinkCheckingResult } from '../../actions/email-validation/check-links';
|
|
5
|
-
import { cn, sanitize } from '../../utils';
|
|
6
|
-
import { getLintingSources, loadLintingRowsFrom } from '../../utils/linting';
|
|
7
|
-
import { IconWarning } from '../icons/icon-warning';
|
|
8
|
-
import { CodePreviewLineLink } from './code-preview-line-link';
|
|
9
|
-
import { Results } from './results';
|
|
10
|
-
|
|
11
|
-
export type LintingRow =
|
|
12
|
-
| {
|
|
13
|
-
source: 'image';
|
|
14
|
-
result: ImageCheckingResult;
|
|
15
|
-
}
|
|
16
|
-
| {
|
|
17
|
-
source: 'link';
|
|
18
|
-
result: LinkCheckingResult;
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
interface LinterProps {
|
|
22
|
-
rows: LintingRow[] | undefined;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export const useLinter = ({
|
|
26
|
-
markup,
|
|
27
|
-
|
|
28
|
-
initialRows,
|
|
29
|
-
}: {
|
|
30
|
-
markup: string;
|
|
31
|
-
|
|
32
|
-
initialRows?: LintingRow[];
|
|
33
|
-
}) => {
|
|
34
|
-
const [rows, setRows] = useState<LintingRow[] | undefined>(initialRows);
|
|
35
|
-
|
|
36
|
-
const sources = getLintingSources(
|
|
37
|
-
markup,
|
|
38
|
-
'location' in global
|
|
39
|
-
? `${global.location.protocol}//${global.location.host}`
|
|
40
|
-
: '',
|
|
41
|
-
);
|
|
42
|
-
|
|
43
|
-
const [loading, setLoading] = useState(false);
|
|
44
|
-
const isStreaming = useRef(false);
|
|
45
|
-
|
|
46
|
-
const load = async () => {
|
|
47
|
-
if (isStreaming.current) return;
|
|
48
|
-
isStreaming.current = true;
|
|
49
|
-
setLoading(true);
|
|
50
|
-
|
|
51
|
-
setRows([]);
|
|
52
|
-
try {
|
|
53
|
-
let rows: LintingRow[] = [];
|
|
54
|
-
for await (const row of loadLintingRowsFrom(sources)) {
|
|
55
|
-
setRows((current) => {
|
|
56
|
-
if (!current) {
|
|
57
|
-
return [row];
|
|
58
|
-
}
|
|
59
|
-
const newArray = [...current, row];
|
|
60
|
-
newArray.sort((a, b) => {
|
|
61
|
-
if (a.result.status === 'error' && b.result.status === 'warning') {
|
|
62
|
-
return -1;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
if (a.result.status === 'warning' && b.result.status === 'error') {
|
|
66
|
-
return 1;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
return 0;
|
|
70
|
-
});
|
|
71
|
-
rows = newArray;
|
|
72
|
-
return newArray;
|
|
73
|
-
});
|
|
74
|
-
}
|
|
75
|
-
return rows;
|
|
76
|
-
} finally {
|
|
77
|
-
setLoading(false);
|
|
78
|
-
isStreaming.current = false;
|
|
79
|
-
}
|
|
80
|
-
};
|
|
81
|
-
|
|
82
|
-
return [rows, { loading, load }] as const;
|
|
83
|
-
};
|
|
84
|
-
|
|
85
|
-
export const Linter = ({ rows }: LinterProps) => {
|
|
86
|
-
if (rows === undefined) return null;
|
|
87
|
-
|
|
88
|
-
return (
|
|
89
|
-
<Results>
|
|
90
|
-
{rows.map((row, i) => {
|
|
91
|
-
if (row.source === 'link') {
|
|
92
|
-
const failingCheck = row.result.checks.find(
|
|
93
|
-
(check) => check.passed === false,
|
|
94
|
-
)!;
|
|
95
|
-
const metadata: React.ReactNode[] = [];
|
|
96
|
-
for (const check of row.result.checks) {
|
|
97
|
-
if (
|
|
98
|
-
check.type === 'fetch_attempt' &&
|
|
99
|
-
check.metadata.fetchStatusCode
|
|
100
|
-
) {
|
|
101
|
-
metadata.push(<>HTTP {check.metadata.fetchStatusCode}</>);
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
metadata.push(
|
|
105
|
-
<CodePreviewLineLink
|
|
106
|
-
line={row.result.codeLocation.line}
|
|
107
|
-
column={row.result.codeLocation.column}
|
|
108
|
-
type="html"
|
|
109
|
-
/>,
|
|
110
|
-
);
|
|
111
|
-
return (
|
|
112
|
-
<Result status={row.result.status} key={i}>
|
|
113
|
-
<Result.Name>{sanitize(failingCheck.type)}</Result.Name>
|
|
114
|
-
<Result.Description>
|
|
115
|
-
{failingCheck.type === 'security'
|
|
116
|
-
? 'Insecure URL, use HTTPS instead of HTTP'
|
|
117
|
-
: null}
|
|
118
|
-
{failingCheck.type === 'fetch_attempt' &&
|
|
119
|
-
failingCheck.metadata.fetchStatusCode &&
|
|
120
|
-
failingCheck.metadata.fetchStatusCode >= 300 &&
|
|
121
|
-
failingCheck.metadata.fetchStatusCode < 400
|
|
122
|
-
? 'There was a redirect, the content may have been moved'
|
|
123
|
-
: null}
|
|
124
|
-
{failingCheck.type === 'fetch_attempt' &&
|
|
125
|
-
failingCheck.metadata.fetchStatusCode &&
|
|
126
|
-
failingCheck.metadata.fetchStatusCode >= 400
|
|
127
|
-
? 'The link is broken'
|
|
128
|
-
: null}
|
|
129
|
-
{failingCheck.type === 'fetch_attempt' &&
|
|
130
|
-
failingCheck.metadata.fetchStatusCode === undefined
|
|
131
|
-
? 'The link could not be reached'
|
|
132
|
-
: null}
|
|
133
|
-
{failingCheck.type === 'syntax'
|
|
134
|
-
? 'The link is broken due to invalid syntax'
|
|
135
|
-
: null}
|
|
136
|
-
|
|
137
|
-
<span className="ml-2 text-ellipsis overflow-hidden text-nowrap max-w-[30ch]">
|
|
138
|
-
{row.result.link}
|
|
139
|
-
</span>
|
|
140
|
-
</Result.Description>
|
|
141
|
-
<Result.Metadata>{metadata}</Result.Metadata>
|
|
142
|
-
</Result>
|
|
143
|
-
);
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
if (row.source === 'image') {
|
|
147
|
-
const failingCheck = row.result.checks.find(
|
|
148
|
-
(check) => check.passed === false,
|
|
149
|
-
)!;
|
|
150
|
-
const metadata: React.ReactNode[] = [];
|
|
151
|
-
for (const check of row.result.checks) {
|
|
152
|
-
if (check.type === 'image_size' && check.metadata.byteCount) {
|
|
153
|
-
metadata.push(prettyBytes(check.metadata.byteCount));
|
|
154
|
-
}
|
|
155
|
-
if (
|
|
156
|
-
check.type === 'fetch_attempt' &&
|
|
157
|
-
check.metadata.fetchStatusCode
|
|
158
|
-
) {
|
|
159
|
-
metadata.push(<>HTTP {check.metadata.fetchStatusCode}</>);
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
metadata.push(
|
|
163
|
-
<CodePreviewLineLink
|
|
164
|
-
line={row.result.codeLocation.line}
|
|
165
|
-
column={row.result.codeLocation.column}
|
|
166
|
-
type="html"
|
|
167
|
-
/>,
|
|
168
|
-
);
|
|
169
|
-
return (
|
|
170
|
-
<Result status={row.result.status} key={i}>
|
|
171
|
-
<Result.Name>{sanitize(failingCheck.type)}</Result.Name>
|
|
172
|
-
<Result.Description>
|
|
173
|
-
{failingCheck.type === 'security'
|
|
174
|
-
? 'Insecure URL, use HTTPS instead of HTTP'
|
|
175
|
-
: null}
|
|
176
|
-
{failingCheck.type === 'fetch_attempt' &&
|
|
177
|
-
failingCheck.metadata.fetchStatusCode &&
|
|
178
|
-
failingCheck.metadata.fetchStatusCode >= 300 &&
|
|
179
|
-
failingCheck.metadata.fetchStatusCode < 400
|
|
180
|
-
? 'There was a redirect, the image may have been moved'
|
|
181
|
-
: null}
|
|
182
|
-
{failingCheck.type === 'fetch_attempt' &&
|
|
183
|
-
failingCheck.metadata.fetchStatusCode &&
|
|
184
|
-
failingCheck.metadata.fetchStatusCode >= 400
|
|
185
|
-
? 'The image is broken'
|
|
186
|
-
: null}
|
|
187
|
-
{failingCheck.type === 'fetch_attempt' &&
|
|
188
|
-
failingCheck.metadata.fetchStatusCode === undefined
|
|
189
|
-
? 'The image could not be reached'
|
|
190
|
-
: null}
|
|
191
|
-
{failingCheck.type === 'syntax'
|
|
192
|
-
? 'The image is broken due to an invalid source'
|
|
193
|
-
: null}
|
|
194
|
-
|
|
195
|
-
{failingCheck.type === 'accessibility'
|
|
196
|
-
? 'Missing alt text'
|
|
197
|
-
: null}
|
|
198
|
-
|
|
199
|
-
{failingCheck.type === 'image_size' &&
|
|
200
|
-
failingCheck.metadata.byteCount
|
|
201
|
-
? 'This image is too large, keep it under 1mb'
|
|
202
|
-
: null}
|
|
203
|
-
|
|
204
|
-
<span className="ml-2 text-ellipsis overflow-hidden text-nowrap max-w-[30ch]">
|
|
205
|
-
{row.result.source}
|
|
206
|
-
</span>
|
|
207
|
-
</Result.Description>
|
|
208
|
-
<Result.Metadata>{metadata}</Result.Metadata>
|
|
209
|
-
</Result>
|
|
210
|
-
);
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
return undefined;
|
|
214
|
-
})}
|
|
215
|
-
</Results>
|
|
216
|
-
);
|
|
217
|
-
};
|
|
218
|
-
|
|
219
|
-
interface ResultProps extends React.ComponentProps<typeof Results.Row> {
|
|
220
|
-
status: 'error' | 'warning' | 'success';
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
const Result = ({ children, className, status, ...props }: ResultProps) => {
|
|
224
|
-
return (
|
|
225
|
-
<Results.Row
|
|
226
|
-
data-status={status}
|
|
227
|
-
{...props}
|
|
228
|
-
className={cn('group/result', className)}
|
|
229
|
-
>
|
|
230
|
-
{children}
|
|
231
|
-
</Results.Row>
|
|
232
|
-
);
|
|
233
|
-
};
|
|
234
|
-
|
|
235
|
-
Result.Name = ({
|
|
236
|
-
children,
|
|
237
|
-
...props
|
|
238
|
-
}: React.ComponentProps<typeof Results.Column>) => {
|
|
239
|
-
return (
|
|
240
|
-
<Results.Column {...props}>
|
|
241
|
-
<span className="flex uppercase gap-2 items-center group-data-[status=error]/result:text-red-400 group-data-[status=warning]/result:text-orange-300">
|
|
242
|
-
<IconWarning />
|
|
243
|
-
{typeof children === 'string' ? sanitize(children) : children}
|
|
244
|
-
</span>
|
|
245
|
-
</Results.Column>
|
|
246
|
-
);
|
|
247
|
-
};
|
|
248
|
-
|
|
249
|
-
Result.Description = ({
|
|
250
|
-
children,
|
|
251
|
-
className,
|
|
252
|
-
...props
|
|
253
|
-
}: React.ComponentProps<typeof Results.Column>) => {
|
|
254
|
-
return <Results.Column {...props}>{children}</Results.Column>;
|
|
255
|
-
};
|
|
256
|
-
|
|
257
|
-
interface MetadatProps extends React.ComponentProps<typeof Results.Column> {
|
|
258
|
-
children: React.ReactNode[];
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
Result.Metadata = ({ children, className, ...props }: MetadatProps) => {
|
|
262
|
-
return (
|
|
263
|
-
<Results.Column
|
|
264
|
-
align="right"
|
|
265
|
-
{...props}
|
|
266
|
-
className={cn('font-mono text-slate-11', className)}
|
|
267
|
-
>
|
|
268
|
-
{Children.map(children, (child, index) => {
|
|
269
|
-
return (
|
|
270
|
-
<>
|
|
271
|
-
{index > 0 ? ' · ' : null}
|
|
272
|
-
{child}
|
|
273
|
-
</>
|
|
274
|
-
);
|
|
275
|
-
})}
|
|
276
|
-
</Results.Column>
|
|
277
|
-
);
|
|
278
|
-
};
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { cn } from '../../utils';
|
|
2
|
-
|
|
3
|
-
export const Results = ({
|
|
4
|
-
children,
|
|
5
|
-
className,
|
|
6
|
-
...props
|
|
7
|
-
}: React.ComponentProps<'table'>) => {
|
|
8
|
-
return (
|
|
9
|
-
<table
|
|
10
|
-
className={cn(
|
|
11
|
-
'group relative w-full border-collapse text-left text-slate-10 text-sm',
|
|
12
|
-
className,
|
|
13
|
-
)}
|
|
14
|
-
>
|
|
15
|
-
<tbody>{children}</tbody>
|
|
16
|
-
</table>
|
|
17
|
-
);
|
|
18
|
-
};
|
|
19
|
-
|
|
20
|
-
Results.Row = ({
|
|
21
|
-
children,
|
|
22
|
-
className,
|
|
23
|
-
...props
|
|
24
|
-
}: React.ComponentProps<'tr'>) => {
|
|
25
|
-
return (
|
|
26
|
-
<tr
|
|
27
|
-
className={cn(
|
|
28
|
-
'border-collapse align-bottom border-slate-6 border-b last:border-b-0',
|
|
29
|
-
className,
|
|
30
|
-
)}
|
|
31
|
-
{...props}
|
|
32
|
-
>
|
|
33
|
-
{children}
|
|
34
|
-
</tr>
|
|
35
|
-
);
|
|
36
|
-
};
|
|
37
|
-
|
|
38
|
-
Results.Column = ({
|
|
39
|
-
children,
|
|
40
|
-
className,
|
|
41
|
-
...props
|
|
42
|
-
}: React.ComponentProps<'td'>) => {
|
|
43
|
-
return (
|
|
44
|
-
<td
|
|
45
|
-
className={cn('py-1.5 align-bottom font-regular', className)}
|
|
46
|
-
{...props}
|
|
47
|
-
>
|
|
48
|
-
{children}
|
|
49
|
-
</td>
|
|
50
|
-
);
|
|
51
|
-
};
|