Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@getflip/bridge
Advanced tools
The Flip Bridge handles communication between your embeddable apps and the Flip App or Flip Admin Console.
Contents
npm install --save @getflip/bridge
# or
yarn add @getflip/bridge
The library exposes a set of functions and listeners you can use to communicate with the Flip App and Flip Admin Console (host app for short).
Before using the provided functions, you have to call the initFlipBridge
function to set up the Flip Bridge.
import { initFlipBridge } from "@getflip/bridge";
initFlipBridge({
debug: true,
hostAppOrigin: "http://localhost:4200", // has to be the origin of the targeted host app
});
getAvailableLangs
Get all available languages of the host app.
Returns Promise<string[]>
Example
import { getAvailableLangs } from "@getflip/bridge";
const availableLanguages = await getAvailableLangs(); // e.g. ['de', 'en', 'fr', …]
getLang
Get the current language of the host app.
Returns Promise<string>
Example
import { getLang } from "@getflip/bridge";
const currentLanguage = await getLang(); // e.g. 'en'
navigate
Navigate to a specific route.
Param string
Returns Promise<boolean>
Example
import { navigate } from "@getflip/bridge";
await navigate("/my-app/settings");
getTheme
Get the current theme.
Returns
Promise<{
activeTheme: "light" | "dark";
preferredTheme: "light" | "dark" | undefined;
}>
Example
import { getTheme } from "@getflip/bridge";
const theme = await getTheme();
createDialog
Creates a modal dialog rendered by the host app.
Param
{
hideLabel?: boolean;
id: string;
intent?: 'primary' | 'critical';
label: string;
text: string;
primaryAction?: {
label: string;
};
secondaryAction?: {
label: string;
};
}
Returns
Promise<{
id: string;
open: () => Promise<boolean>;
close: () => Promise<boolean>;
destroy: () => Promise<boolean>;
}>
Example
import { createDialog } from "@getflip/bridge";
const dialog = await createDialog({
id: "my-dialog",
label: "My Dialog",
text: "Lorem ipsum",
primaryAction: {
label: "Close",
},
});
await dialog.open();
openDialog
Opens a dialog.
Param
{
id: string; // the dialog id
}
Returns Promise<boolean>
Example
import { createDialog, openDialog } from "@getflip/bridge";
await createDialog({
id: "my-dialog",
label: "My Dialog",
text: "Lorem ipsum",
});
await openDialog({ id: "my-dialog" });
closeDialog
Closes a dialog.
Param
{
id: string; // the dialog id
}
Returns Promise<boolean>
Example
import { closeDialog } from "@getflip/bridge";
await closeDialog({ id: "my-dialog" });
destroyDialog
Destroys a dialog, removing it from the DOM.
Param
{
id: string; // the dialog id
}
Returns Promise<boolean>
Example
import { destroyDialog } from "@getflip/bridge";
await destroyDialog({ id: "my-dialog" });
Use the subscribe
functions to subscribe to events.
import { subscribe, BridgeEventType } from "@getflip/bridge";
const unsubscribe = await subscribe(BridgeEventType.THEME_CHANGE, (event) => {
console.log(event.data);
});
// …
await unsubscribe();
LANG_CHANGE
Fires when the user selected language changes.
Event
{
data: string; // e.g. 'en'
type: BridgeEventType.LANG_CHANGE;
}
PRIMARY_ACTION_CLICK
Fires when the primary action button of a dialog or modal is clicked.
Event
{
data: {
parentId: string; // id of the action's dialog or modal
}
type: BridgeEventType.PRIMARY_ACTION_CLICK;
}
SECONDARY_ACTION_CLICK
Fires when the secondary action button of a dialog or modal is clicked.
Event
{
data: {
parentId: string; // id of the action's dialog or modal
}
type: BridgeEventType.SECONDARY_ACTION_CLICK;
}
THEME_CHANGE
Fires when the user theme changes.
Event
{
data: {
activeTheme: "light" | "dark";
preferredTheme: "light" | "dark" | undefined;
}
type: BridgeEventType.THEME_CHANGE;
}
All provided functions return promises that throw an error if the execution failed. The errors have the following format.
{
code: BridgeErrorCode; // e.g. 'FORBIDDEN_ORIGIN'
}
FORBIDDEN_ORIGIN
Thrown when the origin of the requesting app is not allowed by the host app.
Please check if your app is correctly registered in the Flip Partner Dashboard
and the hostAppOrigin
option is set (see Usage).
INVALID_REQUEST
The host app identified the request as invalid. This typically occurs when the provided parameters are invalid.
Start the compiler in watch mode for local development:
yarn dev
Production builds and releases are managed via our Github workflows. Make sure
to create a Changeset using yarn changeset
if you want to trigger a new
release.
FAQs
Flip JavaScript Bridge for external integrations.
The npm package @getflip/bridge receives a total of 198 weekly downloads. As such, @getflip/bridge popularity was classified as not popular.
We found that @getflip/bridge demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.