0.1.4 • Published 5 months ago

web3-plurality-repconnect-widget v0.1.4

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

Plurality Reputation connect widget

This repo contains the functionality to load the plurality identity oracle as a popup widget.

To run

yarn install && yarn start

To use it in a react project

Here is a basic demo how it can be used in any react project

import PluralityPopupWidget from 'web3-plurality-repconnect-widget';

const App = () => {
    // Handle the data returned from the widget
    const handleDataReturned = (data) => {
        console.log('Received data from widget:', data);
        // Handle the received data in the external webpage
        // ... (perform actions with the received data)
    };

    return (
        <div>
            <PluralityPopupWidget
                options={{ apps: 'facebook,twitter' }}
                onDataReturned={handleDataReturned}
                customization={{ height: '200px', width: '500px'}} //optional
            />
        </div>
    );
};

To publish new version on npm registry

  • Update the version in package.json file
  • Run npm run webpack and verify the ./lib/PluralityPopupWidget.js file if it is updated
  • Run npm version and verify if the version is updated correctly locally
  • Run npm publish to publish it to public npm registry