Skip to content

Commit

Permalink
fix custom assetFileNames issue (#12449)
Browse files Browse the repository at this point in the history
* fix custom assetFileNames issue

* fix error

* fix asset name

* handle edge cases fo multiple asset dirs

* add tests

* format

* add changeset

* improve changeset

* add missing files for tests

* Update neat-papayas-brake.md

improve changeset
  • Loading branch information
apatel369 authored Dec 4, 2024
1 parent 350b3da commit e6b8017
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 32 deletions.
5 changes: 5 additions & 0 deletions .changeset/neat-papayas-brake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'astro': patch
---

Fixes an issue where the custom `assetFileNames` configuration caused assets to be incorrectly moved to the server directory instead of the client directory, resulting in 404 errors when accessed from the client side.
4 changes: 2 additions & 2 deletions packages/astro/src/core/build/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,15 +211,15 @@ class AstroBuilder {
key: keyPromise,
};

const { internals, ssrOutputChunkNames, contentFileNames } = await viteBuild(opts);
const { internals, ssrOutputChunkNames, ssrOutputAssetNames, contentFileNames } = await viteBuild(opts);

const hasServerIslands = this.settings.serverIslandNameMap.size > 0;
// Error if there are server islands but no adapter provided.
if (hasServerIslands && this.settings.buildOutput !== 'server') {
throw new AstroError(AstroErrorData.NoAdapterInstalledServerIslands);
}

await staticBuild(opts, internals, ssrOutputChunkNames, contentFileNames);
await staticBuild(opts, internals, ssrOutputChunkNames, ssrOutputAssetNames, contentFileNames);

// Write any additionally generated assets to disk.
this.timer.assetsStart = performance.now();
Expand Down
44 changes: 21 additions & 23 deletions packages/astro/src/core/build/static-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,21 +104,26 @@ export async function viteBuild(opts: StaticBuildOptions) {
// For static builds, the SSR output won't be needed anymore after page generation.
// We keep track of the names here so we only remove these specific files when finished.
const ssrOutputChunkNames: string[] = [];
const ssrOutputAssetNames: string[] = [];
for (const output of ssrOutputs) {
for (const chunk of output.output) {
if (chunk.type === 'chunk') {
ssrOutputChunkNames.push(chunk.fileName);
}
if (chunk.type === 'asset') {
ssrOutputAssetNames.push(chunk.fileName);
}
}
}

return { internals, ssrOutputChunkNames, contentFileNames };
return { internals, ssrOutputChunkNames, ssrOutputAssetNames, contentFileNames };
}

export async function staticBuild(
opts: StaticBuildOptions,
internals: BuildInternals,
ssrOutputChunkNames: string[],
ssrOutputAssetNames: string[],
contentFileNames?: string[],
) {
const { settings } = opts;
Expand All @@ -131,7 +136,7 @@ export async function staticBuild(
settings.timer.start('Server generate');
await generatePages(opts, internals);
await cleanStaticOutput(opts, internals);
await ssrMoveAssets(opts);
await ssrMoveAssets(opts, ssrOutputAssetNames);
settings.timer.end('Server generate');
}
}
Expand Down Expand Up @@ -412,33 +417,26 @@ export async function copyFiles(fromFolder: URL, toFolder: URL, includeDotfiles
);
}

async function ssrMoveAssets(opts: StaticBuildOptions) {
async function ssrMoveAssets(opts: StaticBuildOptions, ssrOutputAssetNames: string[]) {
opts.logger.info('build', 'Rearranging server assets...');
const serverRoot =
opts.settings.buildOutput === 'static'
? opts.settings.config.build.client
: opts.settings.config.build.server;
const clientRoot = opts.settings.config.build.client;
const assets = opts.settings.config.build.assets;
const serverAssets = new URL(`./${assets}/`, appendForwardSlash(serverRoot.toString()));
const clientAssets = new URL(`./${assets}/`, appendForwardSlash(clientRoot.toString()));
const files = await glob(`**/*`, {
cwd: fileURLToPath(serverAssets),
});

if (files.length > 0) {
await Promise.all(
files.map(async function moveAsset(filename) {
const currentUrl = new URL(filename, appendForwardSlash(serverAssets.toString()));
const clientUrl = new URL(filename, appendForwardSlash(clientAssets.toString()));
const dir = new URL(path.parse(clientUrl.href).dir);
// It can't find this file because the user defines a custom path
// that includes the folder paths in `assetFileNames
if (!fs.existsSync(dir)) await fs.promises.mkdir(dir, { recursive: true });
return fs.promises.rename(currentUrl, clientUrl);
}),
);
removeEmptyDirs(fileURLToPath(serverAssets));
if (ssrOutputAssetNames.length > 0) {
await Promise.all(
ssrOutputAssetNames.map(async function moveAsset(filename) {
const currentUrl = new URL(filename, appendForwardSlash(serverRoot.toString()));
const clientUrl = new URL(filename, appendForwardSlash(clientRoot.toString()));
const dir = new URL(path.parse(clientUrl.href).dir);
// It can't find this file because the user defines a custom path
// that includes the folder paths in `assetFileNames`
if (!fs.existsSync(dir)) await fs.promises.mkdir(dir, { recursive: true });
return fs.promises.rename(currentUrl, clientUrl);
}),
);
removeEmptyDirs(fileURLToPath(serverRoot));
}
}

Expand Down
16 changes: 11 additions & 5 deletions packages/astro/test/custom-assets-name.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import assert from 'node:assert/strict';
import { before, describe, it } from 'node:test';
import { loadFixture } from './test-utils.js';

describe('custom the assets name function', () => {
describe('custom assets name function', () => {
/** @type {import('./test-utils').Fixture} */
let fixture;

Expand All @@ -14,9 +14,15 @@ describe('custom the assets name function', () => {
await fixture.build();
});

it('It cant find this file cause the node throws an error if the users custom a path that includes the folder path', async () => {
const csslength = await fixture.readFile('client/assets/css/a.css');
/** @type {Set<string>} */
assert.equal(!!csslength, true);
it('should load CSS file from custom client assets path', async () => {
const files = await fixture.readdir('/client/assets/css');
const cssFile = files.find((file) => file === 'a.css');
assert.ok(cssFile, 'Expected CSS file to exist at client/assets/css/a.css');
});

it('should load image file from custom client assets path', async () => {
const files = await fixture.readdir('/client/imgAssets');
const imgFile = files.find((file) => file === 'penguin1.jpg');
assert.ok(imgFile, 'Expected image file to exist at client/imgAssets/penguin1.jpg');
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ export default defineConfig({
const { ext, dir, base } = path.parse(option.name);

if (ext == ".css") return path.join(dir, "assets/css", 'a.css');
return "assets/img/[name].[ext]";
return "imgAssets/[name].[ext]";
}
}
}
}
},
build: {
assets: 'assets'
assets: 'assetsDir'
},
output: "server",
adapter: node({
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
const title = 'My App';
import p1Url from '../images/penguin1.jpg';
---

<html>
Expand All @@ -8,6 +9,7 @@ const title = 'My App';
</head>
<body>
<h1>{title}</h1>
<img src={p1Url.src}/>
</body>
</html>

Expand Down

0 comments on commit e6b8017

Please sign in to comment.