Usage: npx https://gist.github.com/ntucker/8c90aff06ceedccd778c84e23052b39e src/folder
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
class Resource { | |
constructor(args) { | |
Object.assign(this, args); | |
} | |
static url({ id }: { id: string }) { | |
return `${this.urlRoot}${id}`; | |
} | |
// This generic enables us to establish the correct return value based on the polymorphic call |
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
class PostResource extends Resource { | |
readonly id: number | null = null; | |
readonly title: string = ''; | |
readonly body: string = ''; | |
static urlRoot = '/post/'; | |
} |
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
class PostResource { | |
readonly id: number | null = null; | |
readonly title: string = ''; | |
readonly body: string = ''; | |
constructor(args) { | |
Object.assign(this, args); | |
} | |
static async fetchDetail({ id }: { id: string }): PostResource { |
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
const myData = useResource(fetchingSpecification, parameters); |
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
function Post({ id }: { id: string }) { | |
const post = useResource(PostResource.detailShape(), { id }); | |
return ( | |
<article> | |
<h2>{post.title}</h2> | |
<p>{post.body}</p> | |
</article> | |
); | |
} |
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
UnreadablePostError: timed out | |
Stacktrace (most recent call last): | |
File "django/core/handlers/base.py", line 109, in get_response | |
response = middleware_method(request, callback, callback_args, callback_kwargs) | |
File "django/middleware/csrf.py", line 174, in process_view | |
request_csrf_token = request.POST.get('csrfmiddlewaretoken', '') | |
File "django/core/handlers/wsgi.py", line 198, in _get_post | |
self._load_post_and_files() |