2.37.2 • Published 8 months ago

@xvia/webgate-connect v2.37.2

Weekly downloads
-
License
-
Repository
-
Last release
8 months ago

@xvia/webgate-connect

en pt-br

Lib to simplify the integration with X-Via Portal

Installation

npm install --save @xvia/webgate-connect

Usage

import { connect } from '@xvia/webgate-connect';

const portalConnect = connect({
    portalUrl: "https://portal.demo.xvia.com.br"
});

API

Login

Redirects the portal to the login page

portalConnect.login(PortalLoginOptions);

Logout

Asks the portal to logout the current user

portalConnect.logout(PortalLogoutOptions);

Register

Redirects the portal to the registration page

portalConnect.register(PortalRegisterOptions);

Account Management

Redirects the portal to the account management page

portalConnect.accountManagement();

Deeplink between apps

The portal restricts the way an app can navigate by default. Links and route changes will only have affect within the app. if you want to deeplink to another app, it is necessary to tell the notify the portal using the redirectTo function:

portalConnect.redirectTo(uri);

Is Running in Portal

Checks if the code is running inside the X-Via portal

portalConnect.isRunningInPortal()

Is Running in Webview

Checks if the code is running inside the X-Via mobile webview

portalConnect.isRunningInWebview()

Native download and share dialog (webview only)

Sends a message to the native mobile app asking it to download an url on the native side. If the property share is set to true, the native app will also trigger the share options after the download is complete. NOTE: The download will always go to the Downloads folder

interface PortalDownloadOptions {
  url: string;
  filename?: string;
  showShareDialog?: boolean;
  headers?: Record<string, string>;
}

portalConnect.download(PortalDownloadOptions);

Get current location

Gets the current location. Works both on the browser and webview

interface PositionCoords {
  latitude: number;
  longitude: number;
}

portalConnect.getCurrentPosition(): PositionCoords;

Event Listeners

New Access Token

Event triggered every time a new access token is generated / refreshed by the portal. This event can be used to make sure the application always have a valid token available

portalConnect.on("NEW_ACCESS_TOKEN", (accessToken) => {
    console.log(accessToken)
});

Development (with auto registration)

You can automatically integrate your local app into a development instance of the portal by using the webgate-cli dev command line interface. Note that this cli will only work on development instances of the portal, the automatic registration feature is disabled on production instances.

  1. Create a webgate.yaml file with the following configuration:
portal:
  devServer:
    # The development app port
    port: 3000
    # The portal url (development instance)
    portalUrl: http://localhost:8080
    # The integration type (iframe will enable hot reload)
    integrationType: bundle
  1. update your package.json to include the webgate-cli dev server, providing the npm script to be run after the automatic registration
    // in your package.json scripts... 
    // start-app is the script we want to run after the auto registration
+   "dev": "webgate-cli dev"
    "start": "react-scripts start",
  1. Run the webgate-connect development server
npm run dev

NOTE: The auto registration will only work on DEVELOPMENT instances of the portal. The webgate-connect cli will generate an error if the portal url is set to a production version

Integration with React

This library exports a Provider that can be used together with the React Context API.

Furst, you need to render the Provider on your high level component:

import { WebgateProvider } from "@xvia/webgate-connect";

function App() {
  return (
    <WebgateProvider portalUrl="https://portal.demo.xvia.com.br">
      <MyApp>
    </WebgateProvider>
  );
}

export default App;

Then you can use the portalConnect in your components

import {useWebgate} from "@xvia/webgate-connect";

export const MyComponent: FC = () => {
    const {accessToken, portalConnect} = useWebgate();
    return (
      <div onClick = {() => portalConnect.redirectTo("/app/another-app")}>
        { accessToken }
      </div>
   );
};

License

MIT License

Copyright (c) 2020 X-Via

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, startDev, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

2.36.4

8 months ago

2.37.2

8 months ago

2.35.4

9 months ago

2.37.1

8 months ago

2.35.3

10 months ago

2.35.2

10 months ago

2.40.1

8 months ago

2.30.2

11 months ago

2.36.0

11 months ago

2.31.3

11 months ago

2.31.2

11 months ago

2.35.1

11 months ago

2.31.4

11 months ago

2.29.0

1 year ago

2.29.1

1 year ago

2.25.0

1 year ago

2.23.1

1 year ago

2.24.4

1 year ago

2.24.1

1 year ago

2.24.3

1 year ago

2.24.2

1 year ago

2.6.1

2 years ago

2.6.0

2 years ago

2.19.8

1 year ago

2.19.7

1 year ago

2.19.5

2 years ago

2.19.2

2 years ago

2.9.2

2 years ago

2.9.1

2 years ago

2.15.1

2 years ago

2.20.0

2 years ago

2.20.1

1 year ago

2.5.0

2 years ago

2.10.0

2 years ago

2.7.0

2 years ago

2.7.1

2 years ago

2.18.3

2 years ago

2.18.4

2 years ago

2.18.1

2 years ago

2.4.7

2 years ago

2.18.2

2 years ago

2.4.8

2 years ago

2.21.0

1 year ago

2.21.1

1 year ago

2.3.2

2 years ago

2.3.0

2 years ago

2.2.1

2 years ago

2.1.0

2 years ago

2.0.7

2 years ago

2.0.6

2 years ago

2.0.5

2 years ago

2.0.4

2 years ago

2.0.3

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

0.0.59

2 years ago

0.0.57

2 years ago

0.0.54

2 years ago

0.0.53

2 years ago

0.0.52

2 years ago

0.0.51

2 years ago

0.0.50

2 years ago

0.0.49

2 years ago

0.0.48

2 years ago

0.0.47

2 years ago

0.0.46

2 years ago

0.0.45

2 years ago

0.0.44

2 years ago

0.0.43

2 years ago

0.0.42

2 years ago

0.0.41

2 years ago

0.0.40

2 years ago

0.0.39

2 years ago

0.0.38

2 years ago

0.0.36

2 years ago

0.0.29

2 years ago