Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/big-hairs-remember.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@shopify/cli-kit': patch
'@shopify/theme': patch
---

Store theme asset upload errors encountered while running the theme dev command
5 changes: 5 additions & 0 deletions packages/cli-kit/src/public/node/themes/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@ export interface ThemeFileSystem extends VirtualFileSystem {
* Applies filters to ignore files from .shopifyignore file, --ignore and --only flags.
*/
applyIgnoreFilters: <T extends {key: string}>(files: T[]) => T[]

/**
* Stores upload errors returned when uploading files via the Asset API
*/
uploadErrors: Map<Key, string[]>
}

/**
Expand Down
1 change: 1 addition & 0 deletions packages/theme/src/cli/utilities/theme-fs-empty.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ function emptyFileSystem<T>(): T {
root: '',
files: new Map(),
unsyncedFileKeys: new Set(),
uploadErrors: new Map(),
ready: () => Promise.resolve(),
delete: async (_: string) => {},
read: async (_: string) => '',
Expand Down
2 changes: 2 additions & 0 deletions packages/theme/src/cli/utilities/theme-fs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ describe('theme-fs', () => {
fsEntry({checksum: '64caf742bd427adcf497bffab63df30c', key: 'templates/404.json'}),
]),
unsyncedFileKeys: new Set(),
uploadErrors: new Map(),
ready: expect.any(Function),
delete: expect.any(Function),
write: expect.any(Function),
Expand All @@ -82,6 +83,7 @@ describe('theme-fs', () => {
root,
files: new Map(),
unsyncedFileKeys: new Set(),
uploadErrors: new Map(),
ready: expect.any(Function),
delete: expect.any(Function),
write: expect.any(Function),
Expand Down
14 changes: 8 additions & 6 deletions packages/theme/src/cli/utilities/theme-fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const THEME_PARTITION_REGEX = {

export function mountThemeFileSystem(root: string, options?: ThemeFileSystemOptions): ThemeFileSystem {
const files = new Map<string, ThemeAsset>()
const uploadErrors = new Map<string, string[]>()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't forget to add a changelog!

const unsyncedFileKeys = new Set<string>()
const filterPatterns = {
ignoreFromFile: [] as string[],
Expand Down Expand Up @@ -147,12 +148,12 @@ export function mountThemeFileSystem(root: string, options?: ThemeFileSystemOpti

const [result] = await bulkUploadThemeAssets(Number(themeId), [{key: fileKey, value: content}], adminSession)

if (!result?.success) {
throw new Error(
result?.errors?.asset
? `\n\n${result.errors.asset.map((error) => `- ${error}`).join('\n')}`
: 'Response was not successful.',
)
if (result?.success) {
uploadErrors.delete(fileKey)
} else {
const errors = result?.errors?.asset ?? ['Response was not successful.']
uploadErrors.set(fileKey, errors)
throw new Error(errors.join('\n'))
}

unsyncedFileKeys.delete(fileKey)
Expand Down Expand Up @@ -223,6 +224,7 @@ export function mountThemeFileSystem(root: string, options?: ThemeFileSystemOpti
root,
files,
unsyncedFileKeys,
uploadErrors,
ready: () => themeSetupPromise,
delete: async (fileKey: string) => {
files.delete(fileKey)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export function fakeThemeFileSystem(
root,
files,
unsyncedFileKeys: new Set(),
uploadErrors: new Map(),
ready: () => Promise.resolve(),
delete: async (fileKey: string) => {
files.delete(fileKey)
Expand Down
81 changes: 81 additions & 0 deletions packages/theme/src/cli/utilities/theme-uploader.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
MAX_UPLOAD_RETRY_COUNT,
MINIMUM_THEME_ASSETS,
uploadTheme,
updateUploadErrors,
} from './theme-uploader.js'
import {fakeThemeFileSystem} from './theme-fs/theme-fs-mock-factory.js'
import {bulkUploadThemeAssets, deleteThemeAsset} from '@shopify/cli-kit/node/themes/api'
Expand Down Expand Up @@ -602,3 +603,83 @@ describe('theme-uploader', () => {
)
})
})

describe('updateUploadErrors', () => {
test('should clear error for successful upload', () => {
// Given
const themeFileSystem = fakeThemeFileSystem('tmp', new Map())
const result: Result = {
key: 'file1.liquid',
success: true,
errors: {},
operation: Operation.Upload,
asset: {key: 'file1.liquid', checksum: 'abc'},
}

// Pre-existing error that should be cleared
themeFileSystem.uploadErrors.set('file1.liquid', ['Old error'])

// When
updateUploadErrors(result, themeFileSystem)

// Then
expect(themeFileSystem.uploadErrors.has('file1.liquid')).toBe(false)
})

test('should set error for failed upload', () => {
// Given
const themeFileSystem = fakeThemeFileSystem('tmp', new Map())
const result: Result = {
key: 'file1.liquid',
success: false,
errors: {asset: ['Upload failed']},
operation: Operation.Upload,
asset: {key: 'file1.liquid', checksum: 'abc'},
}

// When
updateUploadErrors(result, themeFileSystem)

// Then
expect(themeFileSystem.uploadErrors.get('file1.liquid')).toEqual(['Upload failed'])
})

test('should set default error when no specific error provided', () => {
// Given
const themeFileSystem = fakeThemeFileSystem('tmp', new Map())
const result: Result = {
key: 'file1.liquid',
success: false,
errors: {},
operation: Operation.Upload,
asset: {key: 'file1.liquid', checksum: 'abc'},
}

// When
updateUploadErrors(result, themeFileSystem)

// Then
expect(themeFileSystem.uploadErrors.get('file1.liquid')).toEqual(['Response was not successful.'])
})

test('should update existing error', () => {
// Given
const themeFileSystem = fakeThemeFileSystem('tmp', new Map())
const result: Result = {
key: 'file1.liquid',
success: false,
errors: {asset: ['New error']},
operation: Operation.Upload,
asset: {key: 'file1.liquid', checksum: 'abc'},
}

// Pre-existing error that should be updated
themeFileSystem.uploadErrors.set('file1.liquid', ['Old error'])

// When
updateUploadErrors(result, themeFileSystem)

// Then
expect(themeFileSystem.uploadErrors.get('file1.liquid')).toEqual(['New error'])
})
})
10 changes: 10 additions & 0 deletions packages/theme/src/cli/utilities/theme-uploader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,19 @@ async function uploadBatch(
// store the results in uploadResults, overwriting any existing results
results.forEach((result) => {
uploadResults.set(result.key, result)
updateUploadErrors(result, localThemeFileSystem)
})
}

export function updateUploadErrors(result: Result, localThemeFileSystem: ThemeFileSystem) {
if (result.success) {
localThemeFileSystem.uploadErrors.delete(result.key)
} else {
const errors = result.errors?.asset ?? ['Response was not successful.']
localThemeFileSystem.uploadErrors.set(result.key, errors)
}
}

async function handleBulkUpload(
uploadParams: AssetParams[],
themeId: number,
Expand Down