@automattic/jetpack-connection
v0.35.18
Published
Jetpack Connection Component
Downloads
779
Maintainers
Keywords
Readme
Connection Package
The package encapsulates the Connection functionality.
Initial State
In order to use this package, you must ensure that the Jetpack Connection composer package provides the initial state for the connection components.
In order to do that, make sure to attach the Initial State inline script to your app when you enqueue it.
Example:
use Automattic\Jetpack\Connection\Initial_State as Connection_Initial_State;
// ...
function my_app_enqueue_script() {
// ...
wp_enqueue_script( 'my-app-script' );
Connection_Initial_State::render_script( 'my-app-script' );
}
Components
Component ConnectScreen
The component implements the connection screen page, and loads the ConnectButton
component to handle the whole connection flow.
Properties
- apiRoot - string (required), API root URL.
- apiNonce - string (required), API Nonce.
- registrationNonce - string (required), registration nonce.
- redirectUrl - string, wp-admin URI to redirect a user to after Calypso connection flow.
- from - string, custom string parameter to identify where the request is coming from.
- title - string, page title.
- buttonLabel - string, the "Connect" button label.
- statusCallback - callback to pull connection status from the component.
- images - array, images to display on the right side of the connection screen.
- assetBaseUrl - string, path to the
/build
directory of the package consumer. - autoTrigger - Whether to initiate the connection process automatically upon rendering the component.
Usage
import React, { useState, useCallback } from 'react';
import { ConnectScreen } from '@automattic/jetpack-connection';
const [ connectionStatus, setConnectionStatus ] = useState( {} );
const statusCallback = useCallback(
status => {
setConnectionStatus( status );
},
[ setConnectionStatus ]
);
<ConnectScreen
apiRoot="https://example.org/wp-json/"
apiNonce="12345"
registrationNonce="54321"
from="my-jetpack"
redirectUri="tools.php?page=wpcom-connection-manager"
statusCallback={ statusCallback }
>
<p>The connection screen copy.</p>
</ConnectScreen>
Component ConnectButton
The component displays the connection button and handles the connection process, including site registration and user authorization.
Properties
- connectLabel - string, the "Connect" button label.
- apiRoot - string (required), API root URL.
- apiNonce - string (required), API Nonce.
- registrationNonce - string (required), registration nonce.
- from - string, custom string parameter to identify where the request is coming from.
- redirectUrl - string, wp-admin URI to redirect a user to after Calypso connection flow.
- statusCallback - callback to pull connection status from the component.
- connectionStatus - object, the connection status info.
- connectionStatusIsFetching - boolean, whether the connection status is being fetched at the moment.
- autoTrigger - Whether to initiate the connection process automatically upon rendering the component.
Basic Usage
import React, { useCallback } from 'react';
import { ConnectButton } from '@automattic/jetpack-connection';
const onUserConnected = useCallback( () => alert( 'User Connected' ) );
<ConnectButton
apiRoot="https://example.org/wp-json/"
apiNonce="12345"
registrationNonce="54321"
from="my-jetpack"
redirectUri="tools.php?page=wpcom-connection-manager"
connectionStatus={ connectionStatus }
connectionStatusIsFetching={ isFetching }
/>
Component ConnectUser
This component encapsulates the user connecting functionality.
Upon the first rendering, it initiates the user connection flow, and either redirects the user to Calypso,
or renders the InPlaceConnection
component.
Properties
- connectUrl - string, the authorization URL (the no-iframe version). Fetched automatically if omitted.
- redirectUrl - string, wp-admin URI to redirect a user to after Calypso connection flow. May be omitted if
connectUrl
is provided. - from - string, indicates where the connection request is coming from.
- redirectFunc - function, the redirect function (
window.location.assign()
by default).
Usage
import { ConnectUser } from '@automattic/jetpack-connection';
<ConnectUser
connectUrl="https://jetpack.wordpress.com/jetpack.authorize/1/"
redirectUri="tools.php?page=wpcom-connection-manager"
from="my-jetpack"
/>
Component InPlaceConnection
The component is deprecated and will soon be removed.
It includes:
- the
iframe
HTML element - connection URL handling
- catching the "close" message and executing the callback
- fallback for not available cookie
Properties
- title - string (required), the iframe title.
- isLoading - boolean, whether to display the "Loading..." label in the component, defaults to
false
. - width - string|number, the iframe width, defaults to
100%
. - height - string|number, the iframe height, defaults to
220
. - scrollToIframe - boolean, whether after iframe rendering, window should scroll to its current position. Defaults to
false
. - onComplete - callback, to be executed after connection process has completed.
- onThirdPartyCookiesBlocked - callback, to be executed if third-party cookies are blocked.
- connectUrl - string (required), the connection URL.
- displayTOS - boolean (required), whether the iframe should display TOS or not.
- location - string, component location identifier passed to WP.com.
Usage
import { InPlaceConnection } from '@automattic/jetpack-connection';
<InPlaceConnection
connectUrl="https://jetpack.wordpress.com/jetpack.authorize/1/"
height="600"
width="400"
isLoading={ false }
title="Sample Connection"
displayTOS={ false }
scrollToIframe={ false }
onComplete={ () => alert( 'Connected' ) }
onThirdPartyCookiesBlocked={ () => window.location.replace( 'https://example.org/fallback-url/' ) }
location="sample-connection-form"
/>
Component DisconnectDialog
The DisconnectDialog
component displays a 'Disconnect' button that, upon clicking, will open a Dialog that presents the user the option to Disconnect their site.
Upon confirming, both site and user are disconnected and the user is presented with a success message along with a "Return to WordPress" button that closes the dialog.
If an error occurs while trying to disconnect, a custmomizable error message will appear.
Properties
- apiRoot - string (required), API root URL.
- apiNonce - string (required), API Nonce.
- title - string, the dialog title. Defaults to: "Are you sure you want to disconnect?"
- onDisconnected - callback, to be called after the user has been successfully disconnected AND clicks the "Return to WordPress" button.
- onError - callback, to be called when an error occurs while disconnecting.
- errorMessage - string, error message to display when an error occurs while disconnecting. Defaults to: "Failed to disconnect. Please try again."
Important Notes
It's important to note that the onDisconnected
callback will not immediately trigger upon receiving a successfull API response. This happens because we want to display a success message to the user first within the DisconnectDialog
.
If a parent consumer for example, were to update their connection status using this event, the DisconnectDialog
would be hidden before showing the success message to the user.
Because we made this design decision, and to ensure a non-breaking UX, the Modal
(see wordpress/components/modal
) used by the DisconnectDialog
will not close (as usual) using either ESC key or clicking outside of the Dialog.
This way we ensure that onDisconnected
will always be called via clicking the "Return to WordPress" button, after successfully disconnecting the site.
Basic Usage
import React, { useCallback } from 'react';
import { DisconnectDialog } from '@automattic/jetpack-connection';
const onDisconnectedCallback = useCallback( () => alert( 'Successfully Disconnected' ) );
<DisconnectDialog
apiRoot={ APIRoot }
apiNonce={ APINonce }
onDisconnected={ onDisconnectedCallback }
>
<p>
{ __( 'Jetpack is currently powering multiple products on your site.',
'jetpack' ) }
<br/>
{ __( 'Once you disconnect Jetpack, these will no longer work.',
'jetpack' ) }
</p>
</DisconnectDialog>
Component ConnectionStatusCard
The ConnectionStatusCard
component displays the current site and user connection status as well as the corresponding actions.
This component is meant to be used when at least the site level connection has been established, aka there's a status to display.
In cases where the site level connection has not been established yet, please use the ConnectScreen
component instead.
It consists of 2 main states:
- User account connected: In this state the user will be presented with information regarding their connected WordPress.com account, aka the
username
andavatar
. - User account not connected: In this state the user will be presented with an alert message informing them their account is not connected and a corresponding button that upon clicking will trigger the User Connection flow.
In all cases, users are presented with a link to Disconnect
(see DisconnectDialog
component).
Properties
- apiRoot - string (required), API root URL.
- apiNonce - string (required), API Nonce.
- redirectUri - string (required), The redirect admin URI after the user has connected their WordPress.com account.
- title - string, The Card title. Defaults to "Connection".
- connectionInfoText - string, The text that will be displayed under the title, containing info how to leverage the connection. Defaults to "Leverages the Jetpack Cloud for more features on your side."
- onDisconnected - callback, The callback to be called upon disconnection success.
Important Notes
The Disconnect
functionality is temporary. In the future, it will be replaced with a link to a central connection management page from where users will be able to disconnect.
Basic Usage
import React, { useCallback } from 'react';
import { ConnectionStatusCard } from '@automattic/jetpack-connection';
const onDisconnectedCallback = useCallback( () => alert( 'Successfully Disconnected' ) );
<ConnectionStatusCard
apiRoot={ APIRoot }
apiNonce={ APINonce }
redirectUri="tools.php?page=wpcom-connection-manager"
/>
Fetching connection status and other data from the store
The package relies on controls and resolvers to pull connection status from the API, and put it into the package's Redux store.
Once connection status is added to the store, consuming plugins can rely on it for the single source of truth regarding connection status.
Basic Usage
Let's say you have a component that requires connection data. You could pull that data directly from the REST API, but you'll likely run into the following problems:
- If you're also using the Jetpack Connection components, you'll end up with two separate copies of connection status in two separate stores.
- There'll be two API requests sent to the same endpoint, both retrieving connection status: your app and the Connection package.
- It's just not as convenient. Why handle the data yourself, when you can simply load it from the Jetpack Connection store?
So, we'll use the withSelect
higher-order component to pull the data:
// Import the `withSelect` HOC.
import { withSelect } from '@wordpress/data';
// Import the Jetpack Connection store ID.
import { CONNECTION_STORE_ID } from '@automattic/jetpack-connection';
// The component requires the `connectionStatus` parameter.
const SampleComponent = props => {
const { connectionStatus } = props;
return <div>{ JSON.stringify( connectionStatus ) }</div>;
}
// We wrap `SampleComponent` into the `withSelect` HOC,
// which will pull the data from the store and pass as a parameter into the component.
// Connection status object doesn't exist at the first render,
// it's pulled from the API using WP Data controls and resolvers.
export default withSelect( select => {
return {
connectionStatus: select( CONNECTION_STORE_ID ).getConnectionStatus(),
}
} )( SampleComponent );