0.1.83 • Published 5 months ago

@finagraph/strongbox-finconnect-react v0.1.83

Weekly downloads
-
License
MIT License
Repository
github
Last release
5 months ago

Overview

This package contains a React Component (Widget) that makes it simple for a consuming application to use Finagraph Strongbox for connecting to a customer's accounting system and securely importing information from multiple systems into a normalized model. You can then benefit from the strong analysis and SDK provided by Strongbox for interacting with this data.

This document assumes and in fact requires some familiarity with the Finagraph Strongbox SDK (SDK). To fully use the Widget, you will need to register as an SDK customer and be in possession of a Client ID and Secret that allow the Widget to interact with the SDK on your behalf.

More information about the SDK can be found in Strongbox Developer Portal

Getting started

This document assumes that you have the Strongbox Sample Application that demonstrates using the Strongbox React Widget. In addition to simply illustrating how to use the Widget, the Sample Application is fully documented in comments and clearly demonstrates how to use the SDK to generate security tokens required to use the Widget.

This is by far the easiest way to get started using the Widget. If you don't already have the Sample Application, you can download it here.

Therefore, this document focuses primarily on a few details specific to using the Widget. These are:

  • Using general options that control what financial data is imported.
  • Customizing the accounting packages that are available to the end user.
  • Theming or changing the appearance of the Widget such as which colors are used.
  • Content Customization or changing the content of descriptions to be more specific to your company.

As with the basic use of the Widget, the easiest way to understand theming and content customization is to use the Sample Application. The Sample Application includes a comment containing a sample theme and customized content that you can experiment with to see how the Widget is affected.

Using the Widget

Install the Widget into your project:

npm install @finagraph/strongbox-finconnect-react

import Strongbox from '@finagraph/strongbox-finconnect-react';

Finally add it to your application's render function:

    <Strongbox
        accessToken={<access token>}
        disabled={<boolean>}
        language={'<language code'>}
        orgId={'<Provide an ID that uniquely identifies the customer/business to you>'}
        orgName={'<Provide a name that you will recognize>'}
        onJobCreated={<function that receives a financialRecordId that identifies the job for importing financials and generating a spreadsheet>}
        partnerName={<Consumer's (i.e. your) organization name.) For example, 'XYZ Bank'>}
        showConnectionDialog={<boolean>}
        financialImportOptions={see below}
    >
        {(props) => {
            return undefined;
        }}
    </Strongbox>
PropertyRequiredDescription
accessTokentrueAs mentioned earlier, details of obtaining the accessToken property are beyond the scope of this document and better understood by using the Strongbox Sample Application or reading the Authorization section in the Strongbox Developer's guide.
disabledfalseDisable the Widget when it is in button mode, i.e. prior to the user clicking "Link With My AccountingPackage" to open the controls that allow them to load their financial data.
languagefalsean ISO 639-1 language code. Any value is accepted, however, the only supported languages at present are Spanish and English. Each language has only one variant supported so 'es-ar' and 'es-bo' for instance, result in the same content being shown. Values recognized: Spanish: 'es'English: 'en'If the language code is not supported or not provided, English is used.
orgIdtrueThis should be an ID that has meaning to your system. If you wish to use Strongbox API's that allow you to, for example, access the Excel spreadsheet produced for a customer, you would identify the customer by this ID. It is the key for your customer.
orgNamefalseIf you plan to use the Finagraph Strongbox Lender Portal, this will be the name that shows up in the list of businesses that have linked financial information. This is likely to be of much higher use to you than the ID which will be used if the name is not provided.
onJobCreatedfalseA function with the following signature: onJobCreated(financialRecordId: string): void;The Widget does not actually wait for a job to complete. It can take a very long time and there is generally no reason for the user to wait for it to complete. If you as the consumer of this functionality want to poll the status of the job to understand when it completes, you can use this id to retrieve the financial record import status and take action accordingly. For example, perhaps you want to copy the generated Excel spreadsheet out of Strongbox storage and place it into your own storage when the job is completed. You can use this id to call an SDK API that will let you know if the spreadsheet is ready.
partnerNametrueThis is different than orgName, this is the name of your organization and will show up in the terms of use. So for example, if you are writing an app for 'XYZ Bank' and consuming this Widget you would pass in 'XYZ Bank' for this property.
showConnectionDialogfalseControls the first thing that happens when the user presses a button to connect to an accounting package. By default, after pressing the button the user will be taken to a browser popup that allows them to enter their credentials for the accounting package. If this value is true, the user will first be taken to a 'feel good' dialog that describes what's going on and gives them an accounting package specific button to launch into the browser popup.
financialImportOptionsfalseControls certain parameters related to the importing of financial data. If this value is not provided, default values are used. Specifically, financial data imported will included for the current fiscal year-to-date plus an additional 2 full fiscal years. If a financial workbook is generated, customers and vendors will NOT be anonymized.It is defined here and exported as type FinancialImportOptions for typescript users.

FinancialImportOptions

type FinancialImportOptions = {       
	mostRecentDate?: {
		month: number;
		day: number;
		year: number;
	};
	anonymizeCustomersAndVendors: boolean;
	financialStatementsPeriod?: {
		reportingPeriod: "Months" | "FiscalQuarters" | "FiscalYears";
		numberOfPeriods: number;
	},
	transactionsPeriod?: {
		reportingPeriod: "Months" | "FiscalQuarters" | "FiscalYears";
		numberOfPeriods: number;
	},
	payablesPeriod?: {
		reportingPeriod: "Months" | "FiscalQuarters" | "FiscalYears";
		numberOfPeriods: number;
	},
	receivablesPeriod?: {
		reportingPeriod: "Months" | "FiscalQuarters" | "FiscalYears";
		numberOfPeriods: number;
	}
PropertyRequiredDescription
mostRecentDatefalseControls the last day for which accounting data will be gathered. The date provided should not be greater than the current date. If it is not provided, the current date is used.month is required if mostRecentDate is provided and represents the 0 based month, i.e. January = 0 and December = 11.day is required if mostRecentDate is provided. For convenience, if you simply want to represent the end of a month, you can pass 0 for the day. For example, if you want to collect information through the end of April 2021, you can pass 3 for the month (months are zero based recall), 0 for the day and 2021 for the year. Otherwise, this is the 1 based day of the month representing the last full day of imported information.year is required if mostRecentDate is provided and is simply the full year, e.g. 2021.
anonymizeCustomersAndVendorsfalseIf a financial workbook is generated as a result of this import, should the customer and vendor names contained in the workbook be anonymized.
financialStatementsPeriodtransactionsPeriodpayablesPeriodreceivablesPeriodfalseThese values control how much data to import for their respective types (financial statements, transactions, payables and receivables.) These values are reasonably self-explanatory but are more fully discussed in the SDK documentation.If any of these values are not provided, the corresponding financial data type will NOT be imported.

Customizing available accounting packages

By default, the Strongbox Widget will show all the accounting packages it is capable of showing when the user chooses to connect with their accounting system. Further, for some packages that have multiple 'types' a small descriptor is shown under the package icon that describes more specifically which package it applies to. An example would be QuickBooks where the user may have either QuickBooks Online or QuickBooks Desktop.

The packages displayed and the descriptor that shows under the icons are configured through the accountingPackages property.

If no value is provided, all available accounting packages are shown using their default descriptors.

Use the accountingPackages property to configure which accounting packages are shown to the user and what descriptors are used. accountingPackages is an array of JSON objects. For Typescript users, the elements are of type AccountingPackageToShow. The full definition is as follows:

type AccountingPackageToShow = {
    package: SupportedAccountingPackages;
    descriptor?: string;
}
PropertyRequiredDescription
packagetrueName of the accounting package. This is a case-insensitive string with one of the following values:QuickBooksOnlineQuickBooksDesktop
descriptorfalseThe text to show below the icon for the package. If this value is not provided the default value is used. Please note that undefined and empty string ("") are not equivalent. If the package has a default descriptor and this value is undefined, the default descriptor is used. If the package has a default descriptor and this value is an empty string, the descriptor will be blank.

Using the 'theme' property

The Strongbox Widget has an optional property called theme. This is how you pass settings that will change the appearance of the Widget.

The theme property is a JSON object. The type for theme is exported from the module as Theme. The full definition is as follows:

type Theme = {
    palette?: ThemePalette;
    font?: ThemeFont;
    container?: ThemeContainer;
    controls?: ThemeControls;
}
PropertyRequiredDescription
palettefalseUsed for changing the colors associated with various aspects of the Widget.
fontfalseControls various aspects of the fonts used within the Widget. For example, these settings allow for controlling aspects of the font used in the accounting package connection dialogs as opposed to the font used for describing what is happening during a particular step.
containerfalseControls aspects such as padding of the container that opens up when the user presses the button to link to a financial package.
controlsfalseControls the appearance of user input elements like buttons. This is limited at the moment providing only the ability to adjust the radius.

ThemePalette

Controls what colors are used for various aspects of the Widget.

type ThemePalette = {
    windowBackground?: string;
    borrowerInteractionBackground?: string;
    controlBackground?: string;
    controlForeground?: string;
    progressBarForeground?: string;
    modalBackground?: string;
    modalText?: string;
    modalTitle?: string;
}
PropertyRequiredDescription
windowBackgroundfalseThe background color of the window that is exposed when the user clicks the button to link to an accounting package. There are actually two background colors. This is the region surrounding the area where all the user interaction takes place, so essentially it is margin and any padding.
borrowerInteractionBackgroundfalsethe background color of the window containing the actual borrower interaction elements exposed within windowBackground.
controlBackground, controlForegroundfalseUsed for the colors of input and information elements on the Widget other than simple text. Buttons and progress bars for example. For progress bars, controlForeground is not used. Use progressBarForeground instead.
progressBarForegroundfalseThe foreground color of progress bars.
modalBackground, modalText, modalTitlefalseThe colors used for the modal dialog that comes up when the user chooses to link to an accounting package.

ThemeFont

Defines the appearance of fonts in the Widget.

type ThemeFont = {
    family?: string;
    size?: string;
    controlSize?: string;
    size_h1?: string;
    weight?: string;
    controlWeight?: string;
    weight_h1?: string;
    modalFamily?: string;
    modalTitleSize?: string;
    modalTitleWeight?: string;
    modalRegularSize?: string;
    modalRegularWeight?: string;
    modalSecuritySize?: string;
    modalSecurityWeight?: string;
}
PropertyRequiredDescription
familyfalseFamily of the font used throughout the Widget. This can be a value that you would use for font-family in CSS.
size, weightfalseThe size and font weight of common text such as that used to describe what's happening in a given step. These can be values you would use for font-size and font-weight in CSS.
controlSize, controlWeightfalseThe size and weight of fonts used within user input and information controls such as buttons. These can be values you would use for font-size and font-weight in CSS.
size_h1falseThe size used for titles on the steps of the Widget. So for example the title 'Securely Submit Financial Data' on the step where a user chooses an accounting package. This can be a value you would use for font-size in CSS.
modalFamilyfalseThe font family used in the modal dialog that comes up when the user chooses to link an accounting package. This can be a value that you would use for font-family in CSS.
modalTitleSize, modalTitleWeightfalseThe size and weight of text used on the titles of the modal dialog that comes up when the user chooses to link an accounting package. These can be values you would use for font-size and font-weight in CSS.
modalRegularSize, modalRegularWeightfalseThe size and weight of text used in paragraphs on the modal dialog that comes up when the user chooses to link an accounting package. These can be values you would use for font-size and font-weight in CSS.
modalSecuritySize, modalSecurityWeightfalsethe size and weight of text used in the text explaining to the borrower that their transaction is secure on the modal dialog that comes up when the user chooses to link an accounting package. These can be values you would use for font-size and font-weight in CSS.

ThemeContainer

Defines aspects of the appearance of the region that contains the Widget when it opens up after the user has pressed the button to link an accounting package.

type ThemeContainer = {
    paddingLeft?: string;
    paddingTop?: string;
    paddingBottom?: string;
    paddingRight?: string;
    height?: string;
    width?: string;
}
PropertyRequiredDescription
paddingLeft, paddingTop, paddingBottom, paddingRightfalseControl the padding surrounding the area containing all of the text and user input used in the Widget. These can be values used for padding in CSS.
height, widthfalseUsed for the dimensions of the container containing the text and user input used in the Widget. These can be values used for width and height in CSS. The default values are 'auto'.

ThemeControls

Defines aspects of the user input elements displayed to the user in the Widget such as buttons and progress bars.

type ThemeControls = {
    borderRadius?: string;
}
PropertyRequiredDescription
borderRadiusfalseThe radius used on the borders of the elements. This can be values used for border-radius in CSS.

Content Customization

You can customize most of the content that appears during the various steps of the Widget. This would allow you to change the messsaging to be more specific to your organization for instance.

A sample of using the Widget earlier in this document is:

<Strongbox
    orgId={'<Provide an ID that uniquely identifies the end user to you>'}
    orgName={'<Provide a name that you will recognize>'}
    accessToken={<access token>}
>
    {(props) => {
        return undefined;
    }}
</Strongbox>

Content customization is accomplished by replacing the child block and returning something other than undefined. When undefined is returned default content is used. So for example if you replace it with:

{(props) => {
        return (<p>I like pie.</p>);
}}

The result would be that you would see "I like pie" on every step. It isn't likely that it would be tremendously useful to have the same content displayed on every step so there is a mechanism for handling this. The type definitions for props are as follows:

enum BorrowerSteps {
    choosePackage,
    configureAccounting,
    progress,
    congratulations,
}

type SBLinkAccountingPackageChildProps = {
    step: BorrowerSteps;
    pctComplete?: number;
};

As you might expect step is the current step the user is on. pctComplete is valid when step is equal to progress. This helps you customize the content shown while the progress bar is moving. A more realistic example for replacing this content would be:

{(props) => {
    if (props.step === BorrowerSteps.choosePackage) {
        return (
            <div style={{ marginTop: '15px' }}>
                <p>Submitting your documents to us electronically will</p>
                <p>really make it faster and easier to process your application</p>
            </div>
        );
    } else if (props.step === BorrowerSteps.progress) {
        return (
            <div>
                <p>Setting up a secure connection to our servers</p>
                <p>We'll be getting back to you shortly</p>
            </div>
        )
    } else if (props.step === BorrowerSteps.congratulations) {
        return (
            <p>You're all done.  Thank you for considering us.</p>
        )
    } else {
        return undefined;
    }
}}
0.1.83

5 months ago

0.1.83-beta

5 months ago

0.1.82-beta

5 months ago

0.1.81

6 months ago

0.1.80-beta

6 months ago

0.1.81-beta

6 months ago

0.1.66-beta

10 months ago

0.1.77-beta

8 months ago

0.1.71-beta

8 months ago

0.1.68-beta

10 months ago

0.1.76-beta

8 months ago

0.1.70-beta

8 months ago

0.1.75

8 months ago

0.1.79

7 months ago

0.1.67-beta

10 months ago

0.1.75-beta

8 months ago

0.1.72-beta

8 months ago

0.1.71

8 months ago

0.1.78-beta

7 months ago

0.1.73

8 months ago

0.1.69-beta

10 months ago

0.1.74-beta

8 months ago

0.1.67

10 months ago

0.1.69

10 months ago

0.1.73-beta

8 months ago

0.1.79-beta

7 months ago

0.1.62-beta

1 year ago

0.1.64-beta

1 year ago

0.1.65

1 year ago

0.1.65-beta

1 year ago

0.1.56

1 year ago

0.1.58

1 year ago

0.1.60-beta

1 year ago

0.1.55-beta

1 year ago

0.1.58-beta

1 year ago

0.1.54-beta

1 year ago

0.1.59-beta

1 year ago

0.1.61-beta

1 year ago

0.1.56-beta

1 year ago

0.1.61

1 year ago

0.1.53

1 year ago

0.1.53-beta

1 year ago

0.1.52-beta

1 year ago

0.1.50-beta

2 years ago

0.1.51

2 years ago

0.1.49-beta

2 years ago

0.1.49

2 years ago

0.1.47

2 years ago

0.1.47-beta

2 years ago

0.1.51-beta

2 years ago

0.1.46-beta

2 years ago

0.1.45-beta

2 years ago

0.1.48-beta

2 years ago

0.1.44-beta

2 years ago

0.1.44

2 years ago

0.1.43-beta

2 years ago

0.1.41-beta

2 years ago

0.1.42

2 years ago

0.1.42-beta

2 years ago

0.1.37-beta

2 years ago

0.1.37

2 years ago

0.1.40-beta

2 years ago

0.1.39-beta

2 years ago

0.1.36-beta

2 years ago

0.1.40

2 years ago

0.1.35

2 years ago

0.1.35-beta

2 years ago

0.1.32-beta

2 years ago

0.1.33-beta

2 years ago

0.1.34-beta

2 years ago

0.1.30

3 years ago

0.1.30-beta

3 years ago

0.1.29-beta

3 years ago

0.1.28-beta

3 years ago

0.1.27-beta

3 years ago

0.1.26

3 years ago

0.1.26-beta

3 years ago

0.1.25-beta

3 years ago

0.1.24

3 years ago

0.1.24-beta

3 years ago

0.1.23-beta

3 years ago

0.1.22-beta

3 years ago

0.1.21-beta

3 years ago

0.1.20

3 years ago