Skip to content

Commit 8757579

Browse files
authoredDec 19, 2024··
feat(wrangler): DX improvements for wrangler dev --remote (#7425)
Workers + Assets projects have, in certain situations, a relatively degraded `wrangler dev --remote` developer experience, as opposed to Workers proper projects. This is due to the fact that, for Workers + Assets, we need to make extra API calls to: 1. check for asset files changes 2. upload the changed assets, if any This commit improves the `wrangler dev --remote` DX for Workers + Assets, for use cases when the User Worker/assets change while the API calls for previous changes are still in flight. For such use cases, we have put an exit early strategy in place, that drops the event handler execution of the previous changes, in favour of the handler triggered by the new changes.
1 parent ab0ac94 commit 8757579

File tree

2 files changed

+47
-1
lines changed

2 files changed

+47
-1
lines changed
 

‎.changeset/quick-wombats-battle.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
"wrangler": minor
3+
---
4+
5+
feat: Make DX improvements in `wrangler dev --remote`
6+
7+
Workers + Assets projects have, in certain situations, a relatively degraded `wrangler dev --remote` developer experience, as opposed to Workers proper projects. This is due to the fact that, for Workers + Assets, we need to make extra API calls to:
8+
9+
1. check for asset files changes
10+
2. upload the changed assets, if any
11+
12+
This commit improves the `wrangler dev --remote` DX for Workers + Assets, for use cases when the User Worker/assets change while the API calls for previous changes are still in flight. For such use cases, we have put an exit early strategy in place, that drops the event handler execution of the previous changes, in favour of the handler triggered by the new changes.

‎packages/wrangler/src/api/startDevWorker/RemoteRuntimeController.ts

+35-1
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,29 @@ export class RemoteRuntimeController extends RuntimeController {
6464
async #previewToken(
6565
props: Omit<CreateRemoteWorkerInitProps, "name"> &
6666
Partial<Pick<CreateRemoteWorkerInitProps, "name">> &
67-
Parameters<typeof getWorkerAccountAndContext>[0]
67+
Parameters<typeof getWorkerAccountAndContext>[0] & { bundleId: number }
6868
): Promise<CfPreviewToken | undefined> {
6969
if (!this.#session) {
7070
return;
7171
}
7272

7373
try {
74+
/*
75+
* Since `getWorkerAccountAndContext`, `createRemoteWorkerInit` and
76+
* `createWorkerPreview` are all async functions, it is technically
77+
* possible that new `bundleComplete` events are trigerred while those
78+
* functions are still executing. In such cases we want to drop the
79+
* current bundle and exit early, to avoid unnecessarily executing any
80+
* further expensive API calls.
81+
*
82+
* For this purpose, we want perform a check before each of these
83+
* functions, to ensure no new `bundleComplete` was triggered.
84+
*/
85+
// If we received a new `bundleComplete` event before we were able to
86+
// dispatch a `reloadComplete` for this bundle, ignore this bundle.
87+
if (props.bundleId !== this.#currentBundleId) {
88+
return;
89+
}
7490
const { workerAccount, workerContext } = await getWorkerAccountAndContext(
7591
{
7692
accountId: props.accountId,
@@ -89,6 +105,11 @@ export class RemoteRuntimeController extends RuntimeController {
89105
? this.#session.id
90106
: this.#session.host.split(".")[0]);
91107

108+
// If we received a new `bundleComplete` event before we were able to
109+
// dispatch a `reloadComplete` for this bundle, ignore this bundle.
110+
if (props.bundleId !== this.#currentBundleId) {
111+
return;
112+
}
92113
const init = await createRemoteWorkerInit({
93114
bundle: props.bundle,
94115
modules: props.modules,
@@ -105,6 +126,11 @@ export class RemoteRuntimeController extends RuntimeController {
105126
compatibilityFlags: props.compatibilityFlags,
106127
});
107128

129+
// If we received a new `bundleComplete` event before we were able to
130+
// dispatch a `reloadComplete` for this bundle, ignore this bundle.
131+
if (props.bundleId !== this.#currentBundleId) {
132+
return;
133+
}
108134
const workerPreviewToken = await createWorkerPreview(
109135
init,
110136
workerAccount,
@@ -175,6 +201,13 @@ export class RemoteRuntimeController extends RuntimeController {
175201
const { bindings } = await convertBindingsToCfWorkerInitBindings(
176202
config.bindings
177203
);
204+
205+
// If we received a new `bundleComplete` event before we were able to
206+
// dispatch a `reloadComplete` for this bundle, ignore this bundle.
207+
if (id !== this.#currentBundleId) {
208+
return;
209+
}
210+
178211
const token = await this.#previewToken({
179212
bundle,
180213
modules: bundle.modules,
@@ -201,6 +234,7 @@ export class RemoteRuntimeController extends RuntimeController {
201234
host: config.dev.origin?.hostname,
202235
sendMetrics: config.sendMetrics,
203236
configPath: config.config,
237+
bundleId: id,
204238
});
205239

206240
// If we received a new `bundleComplete` event before we were able to

0 commit comments

Comments
 (0)
Please sign in to comment.