-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add a module for increased backward compatibility. #637
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
ae4de36
feat: Add a module for increased backward compatibility.
kinyoklion 0349691
chore: Change testing to use cjs.
kinyoklion 421b0b5
Linting.
kinyoklion f96c211
Remove JSR file from PR.
kinyoklion 903aa30
Merge branch 'rlamb/simplify-testing' into rlamb/sdk-766/backward-com…
kinyoklion aadb06b
Finish tests.
kinyoklion e3fc195
Merge branch 'main' into rlamb/sdk-766/backward-compatibility-shim
kinyoklion f290e6d
Merge branch 'main' into rlamb/sdk-766/backward-compatibility-shim
kinyoklion File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
524 changes: 524 additions & 0 deletions
524
packages/sdk/browser/__tests__/compat/LDClientCompatImpl.test.ts
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
import { LDContext, LDFlagSet } from '@launchdarkly/js-client-sdk-common'; | ||
|
||
import { LDClient as LDCLientBrowser } from '../BrowserClient'; | ||
|
||
/** | ||
* Compatibility interface. This interface extends the base LDCLient interface with functions | ||
* that improve backwards compatibility. | ||
* | ||
* If starting a new project please import the root package instead of `/compat`. | ||
* | ||
* In the `[email protected]` package a number of functions had the return typings | ||
* incorrect. Any function which optionally returned a promise based on a callback had incorrect | ||
* typings. Those have been corrected in this implementation. | ||
*/ | ||
export interface LDClient extends Omit<LDCLientBrowser, 'close' | 'flush' | 'identify'> { | ||
/** | ||
* Identifies a context to LaunchDarkly. | ||
* | ||
* Unlike the server-side SDKs, the client-side JavaScript SDKs maintain a current context state, | ||
* which is set at initialization time. You only need to call `identify()` if the context has changed | ||
* since then. | ||
* | ||
* Changing the current context also causes all feature flag values to be reloaded. Until that has | ||
* finished, calls to {@link variation} will still return flag values for the previous context. You can | ||
* use a callback or a Promise to determine when the new flag values are available. | ||
* | ||
* @param context | ||
* The context properties. Must contain at least the `key` property. | ||
* @param hash | ||
* The signed context key if you are using [Secure Mode](https://docs.launchdarkly.com/sdk/features/secure-mode#configuring-secure-mode-in-the-javascript-client-side-sdk). | ||
* @param onDone | ||
* A function which will be called as soon as the flag values for the new context are available, | ||
* with two parameters: an error value (if any), and an {@link LDFlagSet} containing the new values | ||
* (which can also be obtained by calling {@link variation}). If the callback is omitted, you will | ||
* receive a Promise instead. | ||
* @returns | ||
* If you provided a callback, then nothing. Otherwise, a Promise which resolve once the flag | ||
* values for the new context are available, providing an {@link LDFlagSet} containing the new values | ||
* (which can also be obtained by calling {@link variation}). | ||
*/ | ||
identify( | ||
context: LDContext, | ||
hash?: string, | ||
onDone?: (err: Error | null, flags: LDFlagSet | null) => void, | ||
): Promise<LDFlagSet> | undefined; | ||
|
||
/** | ||
* Returns a Promise that tracks the client's initialization state. | ||
* | ||
* The Promise will be resolved if the client successfully initializes, or rejected if client | ||
* initialization has irrevocably failed (for instance, if it detects that the SDK key is invalid). | ||
* | ||
* ``` | ||
* // using async/await | ||
* try { | ||
* await client.waitForInitialization(5); | ||
* doSomethingWithSuccessfullyInitializedClient(); | ||
* } catch (err) { | ||
* doSomethingForFailedStartup(err); | ||
* } | ||
* ``` | ||
* | ||
* It is important that you handle the rejection case; otherwise it will become an unhandled Promise | ||
* rejection, which is a serious error on some platforms. The Promise is not created unless you | ||
* request it, so if you never call `waitForInitialization()` then you do not have to worry about | ||
* unhandled rejections. | ||
* | ||
* Note that you can also use event listeners ({@link on}) for the same purpose: the event `"initialized"` | ||
* indicates success, and `"failed"` indicates failure. | ||
* | ||
* @param timeout | ||
* The amount of time, in seconds, to wait for initialization before rejecting the promise. | ||
* Using a large timeout is not recommended. If you use a large timeout and await it, then | ||
* any network delays will cause your application to wait a long time before | ||
* continuing execution. | ||
* | ||
* If no timeout is specified, then the returned promise will only be resolved when the client | ||
* successfully initializes or initialization fails. | ||
* | ||
* @returns | ||
* A Promise that will be resolved if the client initializes successfully, or rejected if it | ||
* fails or the specified timeout elapses. | ||
*/ | ||
waitForInitialization(timeout?: number): Promise<void>; | ||
|
||
/** | ||
* Returns a Promise that tracks the client's initialization state. | ||
* | ||
* The returned Promise will be resolved once the client has either successfully initialized | ||
* or failed to initialize (e.g. due to an invalid environment key or a server error). It will | ||
* never be rejected. | ||
* | ||
* ``` | ||
* // using async/await | ||
* await client.waitUntilReady(); | ||
* doSomethingWithClient(); | ||
* ``` | ||
* | ||
* If you want to distinguish between these success and failure conditions, use | ||
* {@link waitForInitialization} instead. | ||
* | ||
* If you prefer to use event listeners ({@link on}) rather than Promises, you can listen on the | ||
* client for a `"ready"` event, which will be fired in either case. | ||
* | ||
* @returns | ||
* A Promise that will be resolved once the client is no longer trying to initialize. | ||
* @deprecated Please use {@link waitForInitialization} instead. This method will always | ||
* cause a warning to be logged because it is implemented via waitForInitialization. | ||
*/ | ||
waitUntilReady(): Promise<void>; | ||
|
||
/** | ||
* Shuts down the client and releases its resources, after delivering any pending analytics | ||
* events. | ||
* | ||
* @param onDone | ||
* A function which will be called when the operation completes. If omitted, you | ||
* will receive a Promise instead. | ||
* | ||
* @returns | ||
* If you provided a callback, then nothing. Otherwise, a Promise which resolves once | ||
* closing is finished. It will never be rejected. | ||
*/ | ||
close(onDone?: () => void): Promise<void> | undefined; | ||
|
||
/** | ||
* Flushes all pending analytics events. | ||
* | ||
* Normally, batches of events are delivered in the background at intervals determined by the | ||
* `flushInterval` property of {@link LDOptions}. Calling `flush()` triggers an immediate delivery. | ||
* | ||
* @param onDone | ||
* A function which will be called when the flush completes. If omitted, you | ||
* will receive a Promise instead. | ||
* | ||
* @returns | ||
* If you provided a callback, then nothing. Otherwise, a Promise which resolves once | ||
* flushing is finished. Note that the Promise will be rejected if the HTTP request | ||
* fails, so be sure to attach a rejection handler to it. | ||
*/ | ||
flush(onDone?: () => void): Promise<void> | undefined; | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I may need to make this fancier when we verify CJS/ESM package inclusion. Given the problems we had in other packages.