Skip to content

Commit 3903c44

Browse files
hlshenjoehantjlav5yuchenshirrousselGit
authored
Merge Public Preview launch branch into master (#7703)
* update cli support for dataconnect toolkit and webhooks (#7635) * update cli support for toolkit and webhooks * update ports * update ports * Replace any with Options * update exec to call webhook, format * address comment * address comment * remove unused var --------- Co-authored-by: joehan <[email protected]> * Emulator start refactor (#7638) * update cli support for toolkit and webhooks * update ports * update ports * Replace any with Options * update exec to call webhook, format * address comment * address comment * remove unused var * vscode implementation of emulator start * delete debug log * address comments --------- Co-authored-by: joehan <[email protected]> * DataConnect + PGLite prototype. (#7615) * Hacking away at pglite+dataconnect emulator * Hacking away at it * More debugging * I THINK IT WORKSSSSS * Saving my progress at EoD * --amend * Progress * clean up * formatting * Use extended query patch (thanks @gregnr!) * Format and merge master * PR fixes * Remove JSON comments * format * Fxing test compilation issues * Cleaning up build issues * PR fixes * Format and generate json schema * Patching in missing types for VSCode builds * More type fixing * More type fixing * Little bit mroe code review * Removed unused dep * More pr fixes * test:emualtors build fixed * PR fixes * Fix port disagreement * Fix webhook; Clean up emulator code (#7649) * fix webhooks and cleanup old emulator code * await sendVSCode completion * Also handle extended query protocol for close messages (#7653) * Better handling for invalid JSON variables (#7654) * Adding a docs link to the sidebar (#7657) * Clean up code-extension config (#7660) * Clean up extension configuration * pulls out messages into i10n/markdown-compatible source * Simplify the config getter * Remove errant firebase-path * Add firebase-path option for vscode (#7662) * Add firebase-path option for vscode Allow folks to specify a specific firebase binary * Update vscode port * Improved messaging on deploy (#7661) * Removing LocalConnectionString (#7652) * cleaning up localconnectionstring * LocalConnectionString is dead * test fix * Good catch * Enable strict mode (#7663) * Teardown legacy context provider * Enable strict mode on the vscode webviews (#7665) * add await (#7670) * Rough pass on extension UI (#7668) * Rough pass on extension UI * Update docs UI * Flex the panels to get full-width content * [𝘀𝗽𝗿] initial version (#7676) Created using spr 1.3.6-beta.1 * Round 1 of bug bash fixes (#7667) * Round 1 of bug bash fixes * Fixing build issue * Fix package-lock.json * Oops * Use lsofi instead of rolling our own * format * Fixing lsofi issues (#7683) * Reload codelens on emulator status change; Add loading state back for emulators start (#7692) * Add handling for port conflicts. Add fallback for emulator loading state (#7682) * Add handling for port conflicts. Add fallback for emulator loading state * update equality * address comments * Set default state for sidebar. Update fallback for emulator start (#7694) * Set default state for sidebar. Update fallback for emulator start * address comments * small text update * change comment * Re-fetch the extensions doc link when the app is initialized (#7695) * Better handling for port conflicts and errors in Data Connect emulator (#7691) * WIP - better error handlingport conflicts * Void * Update src/emulator/storage/rules/runtime.ts Co-authored-by: Yuchen Shi <[email protected]> * Update src/emulator/downloadableEmulators.ts Co-authored-by: Yuchen Shi <[email protected]> * Find open ports --------- Co-authored-by: Yuchen Shi <[email protected]> * remove debug mode (#7697) * Add UI polish for running emulator status (#7699) * update emulator reset text (#7698) * update emulator reset text * update text * update text (#7700) * update webhook (#7702) * startup -> start-up (#7701) * Fix broken logout, and clean up anys (#7714) * Fix invalid connector path in FDC example (#7709) * Added dart to firebase CLI (#7569) --------- Co-authored-by: joehan <[email protected]> Co-authored-by: TJ Lavelle <[email protected]> Co-authored-by: TJ Lavelle <[email protected]> Co-authored-by: Yuchen Shi <[email protected]> Co-authored-by: Remi Rousselet <[email protected]> Co-authored-by: Maneesh Tewani <[email protected]>
1 parent a5392f4 commit 3903c44

File tree

120 files changed

+4083
-1277
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+4083
-1277
lines changed

.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ module.exports = {
122122
// TODO(jamesdaniels): add this to overrides instead
123123
ignorePatterns: [
124124
"src/dynamicImport.js",
125+
"src/emulator/dataconnect/pg-gateway",
125126
"scripts/webframeworks-deploy-tests/nextjs/**",
126127
"scripts/webframeworks-deploy-tests/angular/**",
127128
"scripts/frameworks-tests/vite-project/**",

firebase-vscode/common/messaging/broker.ts

+14-11
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ export type Receiver = {} | Webview;
99
export abstract class Broker<
1010
OutgoingMessages extends MessageParamsMap,
1111
IncomingMessages extends MessageParamsMap,
12-
R extends Receiver
12+
R extends Receiver,
1313
> {
1414
protected readonly listeners: MessageListeners<IncomingMessages> = {};
1515

1616
abstract sendMessage<T extends keyof OutgoingMessages>(
1717
message: T,
18-
data: OutgoingMessages[T]
18+
data: OutgoingMessages[T],
1919
): void;
2020
registerReceiver(receiver: R): void {}
2121

@@ -58,42 +58,45 @@ export abstract class Broker<
5858
export interface BrokerImpl<
5959
OutgoingMessages,
6060
IncomingMessages,
61-
R extends Receiver
61+
R extends Receiver,
6262
> {
6363
send<E extends keyof OutgoingMessages>(
6464
message: E,
65-
args?: OutgoingMessages[E]
65+
args?: OutgoingMessages[E],
6666
): void;
6767
registerReceiver(receiver: R): void;
6868
on<E extends keyof IncomingMessages>(
6969
message: Extract<E, string>,
70-
listener: (params: IncomingMessages[E]) => void
70+
listener: (params: IncomingMessages[E]) => void,
7171
): () => void;
7272
delete(): void;
7373
}
7474

7575
export function createBroker<
7676
OutgoingMessages extends MessageParamsMap,
7777
IncomingMessages extends MessageParamsMap,
78-
R extends Receiver
78+
R extends Receiver,
7979
>(
80-
broker: Broker<OutgoingMessages, IncomingMessages, R>
80+
broker: Broker<OutgoingMessages, IncomingMessages, R>,
8181
): BrokerImpl<OutgoingMessages, IncomingMessages, Receiver> {
8282
return {
8383
send<E extends keyof OutgoingMessages>(
8484
message: Extract<E, string>,
85-
args?: OutgoingMessages[E]
85+
args: OutgoingMessages[E],
8686
): void {
87-
broker.sendMessage(message, args);
87+
broker.sendMessage<E>(message, args);
8888
},
8989
registerReceiver(receiver: R): void {
9090
broker.registerReceiver(receiver);
9191
},
9292
on<E extends keyof IncomingMessages>(
9393
message: Extract<E, string>,
94-
listener: (params: IncomingMessages[E]) => void
94+
listener: (params: IncomingMessages[E]) => void,
9595
): () => void {
96-
return broker.addListener(message, listener);
96+
return broker.addListener(
97+
message,
98+
listener as Listener<IncomingMessages>,
99+
);
97100
},
98101
delete(): void {
99102
broker.delete();

firebase-vscode/common/messaging/protocol.ts

+17-20
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,10 @@ import { FirebaseConfig } from "../../../src/firebaseConfig";
77
import { User } from "../../../src/types/auth";
88
import { ServiceAccountUser } from "../types";
99
import { RCData } from "../../../src/rc";
10-
import { EmulatorUiSelections, RunningEmulatorInfo } from "./types";
10+
import { EmulatorsStatus, RunningEmulatorInfo } from "./types";
1111
import { ExecutionResult } from "graphql";
1212
import { SerializedError } from "../error";
1313

14-
export const DEFAULT_EMULATOR_UI_SELECTIONS: EmulatorUiSelections = {
15-
projectId: "demo-something",
16-
importStateFolderPath: "",
17-
exportStateOnExit: false,
18-
mode: "dataconnect",
19-
debugLogging: false,
20-
};
21-
2214
export enum UserMockKind {
2315
ADMIN = "admin",
2416
UNAUTHENTICATED = "unauthenticated",
@@ -44,7 +36,6 @@ export interface WebviewToExtensionParamsMap {
4436
/* Emulator panel requests */
4537
getEmulatorUiSelections: void;
4638
getEmulatorInfos: void;
47-
updateEmulatorUiSelections: Partial<EmulatorUiSelections>;
4839

4940
/** Notify extension that current user has been changed in UI. */
5041
requestChangeUser: { user: User | ServiceAccountUser };
@@ -60,6 +51,9 @@ export interface WebviewToExtensionParamsMap {
6051
/** Calls the `firebase init` CLI */
6152
runFirebaseInit: void;
6253

54+
/** Calls the `firebase init` CLI */
55+
runStartEmulators: void;
56+
6357
/**
6458
* Show a UI message using the vscode interface
6559
*/
@@ -99,11 +93,16 @@ export interface WebviewToExtensionParamsMap {
9993
/** Configures generated SDK */
10094
"fdc.configure-sdk": void;
10195

96+
/** Opens generated docs */
97+
"fdc.open-docs": void;
98+
10299
// Initialize "result" tab.
103100
getDataConnectResults: void;
104101

105102
// execute terminal tasks
106103
executeLogin: void;
104+
105+
getDocsLink: void;
107106
}
108107

109108
export interface DataConnectResults {
@@ -119,16 +118,12 @@ export type ValueOrError<T> =
119118

120119
export interface ExtensionToWebviewParamsMap {
121120
/** Triggered when the emulator UI/state changes */
122-
notifyEmulatorUiSelectionsChanged: EmulatorUiSelections;
123121
notifyEmulatorStateChanged: {
124-
status: "running" | "stopped" | "starting" | "stopping";
125-
infos: RunningEmulatorInfo | undefined;
122+
status: EmulatorsStatus;
123+
infos?: RunningEmulatorInfo | undefined;
126124
};
127-
notifyEmulatorImportFolder: { folder: string };
128-
129-
notifyIsConnectedToPostgres: boolean;
130125

131-
notifyPostgresStringChanged: string;
126+
notifyEmulatorsHanging: boolean;
132127

133128
/** Triggered when new environment variables values are found. */
134129
notifyEnv: { env: { isMonospace: boolean } };
@@ -142,15 +137,15 @@ export interface ExtensionToWebviewParamsMap {
142137
/**
143138
* This can potentially call multiple webviews to notify of user selection.
144139
*/
145-
notifyUserChanged: { user: User | ServiceAccountUser };
140+
notifyUserChanged: { user: User | ServiceAccountUser | null };
146141

147142
/**
148143
* Notify webview of initial discovery or change in firebase.json or
149144
* .firebaserc
150145
*/
151146
notifyFirebaseConfig: {
152-
firebaseJson: ValueOrError<FirebaseConfig> | undefined;
153-
firebaseRC: ValueOrError<RCData> | undefined;
147+
firebaseJson?: ValueOrError<FirebaseConfig | undefined>;
148+
firebaseRC?: ValueOrError<RCData | undefined>;
154149
};
155150
/** Whether any dataconnect.yaml is present */
156151
notifyHasFdcConfigs: boolean;
@@ -165,6 +160,8 @@ export interface ExtensionToWebviewParamsMap {
165160
notifyDataConnectRequiredArgs: { args: string[] };
166161

167162
notifyIsLoadingUser: boolean;
163+
164+
notifyDocksLink: string;
168165
}
169166

170167
export type MessageParamsMap =
+2-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { EmulatorInfo } from "../emulator/types";
2-
import { ExtensionToWebviewParamsMap, MessageParamsMap } from "./protocol";
32

43
export interface Message<M> {
54
command: string;
@@ -16,14 +15,8 @@ export interface MessageListeners<M> {
1615
* Info to display in the UI while the emulators are running
1716
*/
1817
export interface RunningEmulatorInfo {
18+
uiUrl: string;
1919
displayInfo: EmulatorInfo[];
2020
}
2121

22-
export interface EmulatorUiSelections {
23-
projectId: string;
24-
firebaseJsonPath?: string;
25-
importStateFolderPath?: string;
26-
exportStateOnExit: boolean;
27-
mode: "all" | "dataconnect";
28-
debugLogging: boolean;
29-
}
22+
export type EmulatorsStatus = "running" | "stopped" | "starting" | "stopping";

firebase-vscode/package-lock.json

+10-78
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)