Skip to content

Commit a7c830c

Browse files
committed
Show better errors when fetching ontology fails in create-template #1036
1 parent d97ffe1 commit a7c830c

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

browser/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ This changelog covers all five packages, as they are (for now) updated as a whol
5454

5555
- [#700](https://github.com/atomicdata-dev/atomic-server/issues/700) Update SvelteKit-site template to Svelte 5 and the new @tomic/svelte.
5656
- [#966](https://github.com/atomicdata-dev/atomic-server/issues/966) Add NextJS template.
57+
- [#1036](https://github.com/atomicdata-dev/atomic-server/issues/1036) Provide clearer errors when resources couldn't be fetched.
5758
- [#993](https://github.com/atomicdata-dev/atomic-server/issues/993) Fix template not working when the drive subject has a path after the origin.
5859

5960
## [v0.40.0] - 2024-10-07

browser/create-template/src/postprocess.ts

+25-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import path from 'node:path';
22
import fs from 'node:fs';
3-
import { Store, type Resource } from '@tomic/lib';
3+
import { ErrorType, isAtomicError, Store, type Resource } from '@tomic/lib';
44
import {
55
type ExecutionContext,
66
type TemplateKey,
@@ -31,9 +31,30 @@ export async function postProcess(context: PostProcessContext) {
3131
const ontology = await store.getResource(ontologySubject);
3232

3333
if (ontology.error) {
34-
console.error(
35-
`\nThe ${baseTemplate.name} template does not exist on your drive. To get the template go to the Create Resource page and select the ${baseTemplate.name} template`,
36-
);
34+
if (isAtomicError(ontology.error)) {
35+
switch (ontology.error.type) {
36+
case ErrorType.NotFound:
37+
console.error(
38+
`\nThe ${baseTemplate.name} template does not exist on your drive. To get the template go to the Create Resource page and select the ${baseTemplate.name} template`,
39+
);
40+
break;
41+
case ErrorType.Unauthorized:
42+
console.error(
43+
'\nSome of the template resources could not be accessed. Make sure the resources are public.',
44+
);
45+
break;
46+
case ErrorType.Server:
47+
console.error(
48+
'\nServer Error: Something went wrong while fetching the template.',
49+
);
50+
break;
51+
default:
52+
console.error('\nAn error occurred while fetching the template.');
53+
}
54+
} else {
55+
console.error(ontology.error.message);
56+
}
57+
3758
process.exit(1);
3859
}
3960

0 commit comments

Comments
 (0)