2022-04-19 15:22:15 +00:00
|
|
|
import type { AstroAdapter, AstroIntegration, AstroConfig, RouteData } from 'astro';
|
|
|
|
import * as fs from 'fs';
|
|
|
|
|
|
|
|
export function getAdapter(): AstroAdapter {
|
|
|
|
return {
|
|
|
|
name: '@astrojs/netlify/edge-functions',
|
|
|
|
serverEntrypoint: '@astrojs/netlify/netlify-edge-functions.js',
|
|
|
|
exports: ['default'],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
interface NetlifyEdgeFunctionsOptions {
|
|
|
|
dist?: URL;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface NetlifyEdgeFunctionManifestFunctionPath {
|
|
|
|
function: string;
|
|
|
|
path: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface NetlifyEdgeFunctionManifestFunctionPattern {
|
|
|
|
function: string;
|
|
|
|
pattern: string;
|
|
|
|
}
|
|
|
|
|
2022-04-19 15:23:07 +00:00
|
|
|
type NetlifyEdgeFunctionManifestFunction =
|
|
|
|
| NetlifyEdgeFunctionManifestFunctionPath
|
|
|
|
| NetlifyEdgeFunctionManifestFunctionPattern;
|
2022-04-19 15:22:15 +00:00
|
|
|
|
|
|
|
interface NetlifyEdgeFunctionManifest {
|
|
|
|
functions: NetlifyEdgeFunctionManifestFunction[];
|
|
|
|
version: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function createEdgeManifest(routes: RouteData[], entryFile: string, dir: URL) {
|
|
|
|
const functions: NetlifyEdgeFunctionManifestFunction[] = [];
|
2022-04-19 15:23:07 +00:00
|
|
|
for (const route of routes) {
|
|
|
|
if (route.pathname) {
|
|
|
|
functions.push({
|
|
|
|
function: entryFile,
|
|
|
|
path: route.pathname,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
functions.push({
|
|
|
|
function: entryFile,
|
2022-04-19 17:13:52 +00:00
|
|
|
pattern: route.pattern.toString(),
|
2022-04-19 15:23:07 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2022-04-19 15:22:15 +00:00
|
|
|
|
2022-04-19 15:23:07 +00:00
|
|
|
const manifest: NetlifyEdgeFunctionManifest = {
|
|
|
|
functions,
|
|
|
|
version: 1,
|
|
|
|
};
|
2022-04-19 15:22:15 +00:00
|
|
|
|
2022-04-19 17:14:44 +00:00
|
|
|
const baseDir = new URL('./.netlify/edge-functions/', dir);
|
2022-04-19 17:13:52 +00:00
|
|
|
await fs.promises.mkdir(baseDir, { recursive: true });
|
|
|
|
|
|
|
|
const manifestURL = new URL('./manifest.json', baseDir);
|
2022-04-19 15:23:07 +00:00
|
|
|
const _manifest = JSON.stringify(manifest, null, ' ');
|
|
|
|
await fs.promises.writeFile(manifestURL, _manifest, 'utf-8');
|
2022-04-19 15:22:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function netlifyEdgeFunctions({ dist }: NetlifyEdgeFunctionsOptions = {}): AstroIntegration {
|
|
|
|
let _config: AstroConfig;
|
|
|
|
let entryFile: string;
|
|
|
|
return {
|
|
|
|
name: '@astrojs/netlify/edge-functions',
|
|
|
|
hooks: {
|
|
|
|
'astro:config:setup': ({ config }) => {
|
|
|
|
if (dist) {
|
|
|
|
config.outDir = dist;
|
|
|
|
} else {
|
|
|
|
config.outDir = new URL('./netlify/', config.root);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'astro:config:done': ({ config, setAdapter }) => {
|
|
|
|
setAdapter(getAdapter());
|
|
|
|
_config = config;
|
|
|
|
},
|
|
|
|
'astro:build:start': async ({ buildConfig }) => {
|
|
|
|
entryFile = buildConfig.serverEntry.replace(/\.m?js/, '');
|
|
|
|
buildConfig.client = _config.outDir;
|
|
|
|
buildConfig.server = new URL('./edge-functions/', _config.outDir);
|
2022-04-19 17:13:52 +00:00
|
|
|
buildConfig.serverEntry = 'entry.js';
|
2022-04-19 15:22:15 +00:00
|
|
|
},
|
|
|
|
'astro:build:setup': ({ vite, target }) => {
|
|
|
|
if (target === 'server') {
|
2022-04-21 16:10:06 +00:00
|
|
|
vite.resolve = vite.resolve || {};
|
|
|
|
vite.resolve.alias = vite.resolve.alias || {};
|
|
|
|
const alias = vite.resolve.alias as Record<string, string>;
|
2022-04-21 16:11:09 +00:00
|
|
|
alias['react-dom/server'] = 'react-dom/server.browser';
|
2022-04-19 15:22:15 +00:00
|
|
|
vite.ssr = {
|
|
|
|
noExternal: true,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'astro:build:done': async ({ routes, dir }) => {
|
2022-04-19 17:13:52 +00:00
|
|
|
await createEdgeManifest(routes, entryFile, _config.root);
|
2022-04-19 15:22:15 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-04-19 15:23:07 +00:00
|
|
|
export { netlifyEdgeFunctions as default };
|