-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(assets): Move generation logic out of internal.ts so we don'…
…t import Node-isms when we don't need them
- Loading branch information
1 parent
d7007a1
commit 00520d5
Showing
3 changed files
with
128 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
import fs from 'node:fs'; | ||
import { basename, join } from 'node:path/posix'; | ||
import type { StaticBuildOptions } from '../core/build/types.js'; | ||
import { warn } from '../core/logger/core.js'; | ||
import { prependForwardSlash } from '../core/path.js'; | ||
import { getConfiguredImageService, isESMImportedImage } from './internal.js'; | ||
import type { LocalImageService } from './services/service.js'; | ||
import type { ImageTransform } from './types.js'; | ||
|
||
interface GenerationDataUncached { | ||
cached: false; | ||
weight: { | ||
before: number; | ||
after: number; | ||
}; | ||
} | ||
|
||
interface GenerationDataCached { | ||
cached: true; | ||
} | ||
|
||
type GenerationData = GenerationDataUncached | GenerationDataCached; | ||
|
||
export async function generateImage( | ||
buildOpts: StaticBuildOptions, | ||
options: ImageTransform, | ||
filepath: string | ||
): Promise<GenerationData | undefined> { | ||
if (!isESMImportedImage(options.src)) { | ||
return undefined; | ||
} | ||
|
||
let useCache = true; | ||
const assetsCacheDir = new URL('assets/', buildOpts.settings.config.cacheDir); | ||
|
||
// Ensure that the cache directory exists | ||
try { | ||
await fs.promises.mkdir(assetsCacheDir, { recursive: true }); | ||
} catch (err) { | ||
warn( | ||
buildOpts.logging, | ||
'astro:assets', | ||
`An error was encountered while creating the cache directory. Proceeding without caching. Error: ${err}` | ||
); | ||
useCache = false; | ||
} | ||
|
||
let serverRoot: URL, clientRoot: URL; | ||
if (buildOpts.settings.config.output === 'server') { | ||
serverRoot = buildOpts.settings.config.build.server; | ||
clientRoot = buildOpts.settings.config.build.client; | ||
} else { | ||
serverRoot = buildOpts.settings.config.outDir; | ||
clientRoot = buildOpts.settings.config.outDir; | ||
} | ||
|
||
const finalFileURL = new URL('.' + filepath, clientRoot); | ||
const finalFolderURL = new URL('./', finalFileURL); | ||
const cachedFileURL = new URL(basename(filepath), assetsCacheDir); | ||
|
||
try { | ||
await fs.promises.copyFile(cachedFileURL, finalFileURL); | ||
|
||
return { | ||
cached: true, | ||
}; | ||
} catch (e) { | ||
// no-op | ||
} | ||
|
||
// The original file's path (the `src` attribute of the ESM imported image passed by the user) | ||
const originalImagePath = options.src.src; | ||
|
||
const fileData = await fs.promises.readFile( | ||
new URL( | ||
'.' + | ||
prependForwardSlash( | ||
join(buildOpts.settings.config.build.assets, basename(originalImagePath)) | ||
), | ||
serverRoot | ||
) | ||
); | ||
|
||
const imageService = (await getConfiguredImageService()) as LocalImageService; | ||
const resultData = await imageService.transform( | ||
fileData, | ||
{ ...options, src: originalImagePath }, | ||
buildOpts.settings.config.image.service.config | ||
); | ||
|
||
await fs.promises.mkdir(finalFolderURL, { recursive: true }); | ||
|
||
if (useCache) { | ||
try { | ||
await fs.promises.writeFile(cachedFileURL, resultData.data); | ||
await fs.promises.copyFile(cachedFileURL, finalFileURL); | ||
} catch (e) { | ||
warn( | ||
buildOpts.logging, | ||
'astro:assets', | ||
`An error was encountered while creating the cache directory. Proceeding without caching. Error: ${e}` | ||
); | ||
await fs.promises.writeFile(finalFileURL, resultData.data); | ||
} | ||
} else { | ||
await fs.promises.writeFile(finalFileURL, resultData.data); | ||
} | ||
|
||
return { | ||
cached: false, | ||
weight: { | ||
before: Math.trunc(fileData.byteLength / 1024), | ||
after: Math.trunc(resultData.data.byteLength / 1024), | ||
}, | ||
}; | ||
} | ||
|
||
export function getStaticImageList(): Iterable< | ||
[string, { path: string; options: ImageTransform }] | ||
> { | ||
if (!globalThis?.astroAsset?.staticImages) { | ||
return []; | ||
} | ||
|
||
return globalThis.astroAsset.staticImages?.entries(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters