1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00
anytype-ts/extension/lib/util.ts
2025-01-07 16:29:57 +01:00

91 lines
No EOL
2 KiB
TypeScript

import { S, U, J, C, dispatcher } from 'Lib';
const INDEX_POPUP = '/popup/index.html';
const INDEX_IFRAME = '/iframe/index.html';
const INDEX_AUTH = '/auth/index.html';
class Util {
isExtension () {
return (
(location.protocol == 'chrome-extension:') &&
J.Extension.clipper.ids.includes(location.hostname)
);
};
isPopup () {
return this.isExtension() && (location.pathname == INDEX_POPUP);
};
isIframe () {
return this.isExtension() && (location.pathname == INDEX_IFRAME);
};
isAuth () {
return this.isExtension() && (location.pathname == INDEX_AUTH);
};
fromPopup (url: string) {
return url.match(INDEX_POPUP);
};
fromIframe (url: string) {
return url.match(INDEX_IFRAME);
};
sendMessage (msg: any, callBack: (response) => void) {
/* @ts-ignore */
chrome.runtime.sendMessage(msg, callBack);
};
getCurrentTab (callBack: (tab) => void) {
/* @ts-ignore */
chrome.tabs.query({ active: true, lastFocusedWindow: true }, tabs => callBack(tabs[0]));
};
init (serverPort: string, gatewayPort: string) {
S.Extension.serverPort = serverPort;
S.Extension.gatewayPort = gatewayPort;
dispatcher.init(`http://127.0.0.1:${serverPort}`);
S.Common.gatewaySet(`http://127.0.0.1:${gatewayPort}`);
};
authorize (appKey: string, onSuccess?: () => void, onError?: (error) => void) {
S.Auth.appKeySet(appKey);
U.Data.createSession('', appKey, (message: any) => {
if (message.error.code) {
if (onError) {
onError(message.error);
};
return;
};
C.AccountSelect(message.accountId, '', 0, '', (message: any) => {
if (message.error.code) {
if (onError) {
onError(message.error);
};
return;
};
S.Auth.accountSet(message.account);
S.Common.configSet(message.account.config, false);
S.Common.showVaultSet(false);
U.Data.onInfo(message.account.info);
if (onSuccess) {
onSuccess();
};
});
});
};
optionMapper (it: any) {
return it._empty_ ? null : { ...it, object: it };
};
};
export default new Util();