Skip to content
Snippets Groups Projects
Commit 65e96f4c authored by Voltair's avatar Voltair
Browse files

modify sendOperations to redirect to callback after success

parent 2a72400b
No related branches found
No related tags found
2 merge requests!20Merge develop into master for deployment (hivesigner support),!19HiveSigner integration
This commit is part of merge request !19. Comments created here will be created in the context of that merge request.
import { isLoggedIn, extractLoginData } from 'app/utils/UserUtil'; import { isLoggedIn, extractLoginData } from 'app/utils/UserUtil';
import hivesigner from 'hivesigner'; import hivesigner from 'hivesigner';
import { APP_URL, HIVE_SIGNER_APP } from 'app/client_config'; import { APP_URL, HIVE_SIGNER_APP } from 'app/client_config';
import { encodeOps } from 'hive-uri';
const HOST_URL = const isBrowser = () => typeof window !== 'undefined' && window;
typeof window !== 'undefined'
? window.location.protocol + '//' + window.location.host const HOST_URL = isBrowser()
: APP_URL; ? window.location.protocol + '//' + window.location.host
: APP_URL;
const HIVE_SIGNER_URL = 'https://hivesigner.com';
export const hiveSignerClient = new hivesigner.Client({ export const hiveSignerClient = new hivesigner.Client({
app: HIVE_SIGNER_APP, app: HIVE_SIGNER_APP,
...@@ -43,4 +47,15 @@ export const setHiveSignerAccessToken = ( ...@@ -43,4 +47,15 @@ export const setHiveSignerAccessToken = (
hiveSignerClient.setAccessToken(access_token); hiveSignerClient.setAccessToken(access_token);
}; };
export const sendOperationsWithHiveSigner = hivesigner.sendOperations; export const sendOperationsWithHiveSigner = (ops, params, cb) => {
if (!params) params = {};
if (!params.callback) {
params.callback = window.location.href;
}
const uri = encodeOps(ops, params);
const webUrl = uri.replace('hive://', `${HIVE_SIGNER_URL}/`);
if (cb && isBrowser()) {
window.location = webUrl;
}
return webUrl;
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment