next
Version:
The React Framework
17 lines (16 loc) • 855 B
JavaScript
import { workAsyncStorage } from '../app-render/work-async-storage.external';
/**
* This function allows you to schedule callbacks to be executed after the current request finishes.
*/ export function unstable_after(task) {
const workStore = workAsyncStorage.getStore();
if (!workStore) {
// TODO(after): the linked docs page talks about *dynamic* APIs, which unstable_after soon won't be anymore
throw new Error('`unstable_after` was called outside a request scope. Read more: https://nextjs.org/docs/messages/next-dynamic-api-wrong-context');
}
const { afterContext } = workStore;
if (!afterContext) {
throw new Error('`unstable_after` must be explicitly enabled by setting `experimental.after: true` in your next.config.js.');
}
return afterContext.after(task);
}
//# sourceMappingURL=after.js.map