-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.tsx
216 lines (190 loc) · 6.93 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
import { MemoryRouter as Router } from 'react-router-dom';
import { CacheProvider, CSSObject, ThemeProvider } from '@emotion/react';
import { create } from 'jss';
import { StylesProvider, jssPreset } from '@mui/styles';
import { Provider } from 'react-redux';
import { StyledEngineProvider } from '@mui/material';
import Theme from './theme/theme';
import store from './store/store';
import SwAuthModal, { AutButton } from './Aut';
import { AttributeCallbackFn, Connector, EthersConnector, S, SwAuthConfig } from './types/d-aut-config';
import { AttributeNames, createShadowElement, extractAttributes, isElement } from './utils/utils';
import { createRoot } from 'react-dom/client';
import { fonts } from './assets/fonts/Fractul/fontsBase64';
import { env } from './services/web3/env';
import { createContext, useCallback, useContext, useEffect, useMemo, useState } from 'react';
export * from './interfaces/autid.model';
export * from './interfaces/hub.model';
function safeDecorator(fn) {
// eslint-disable-next-line func-names
return function (...args) {
try {
return fn.apply(this, args);
} catch (error) {
if (error instanceof DOMException && error.message.includes('has already been used with this registry')) {
return false;
}
throw error;
}
};
}
const AutConnectorContext = createContext<EthersConnector>({
connectors: [],
networks: [],
setStateChangeCallback: (callback: (s: S) => void) => null,
connect: async () => null,
disconnect: async () => null,
state: {
multiSigner: null,
multiSignerId: null,
isConnected: false,
isConnecting: false,
status: 'disconnected',
chainId: null,
address: null,
error: null,
} as S,
});
export const useAutConnectorContext = () => useContext(AutConnectorContext);
export const AutConnectorProvider = ({ connector, children }) => {
const [state, setState] = useState<S | null>(connector.state);
const handleStateChange = (newState: S) => {
setState(newState);
};
const connect = useCallback(
async (c: Connector) => {
const newState = await connector.connect(c);
setState(newState);
return newState;
},
[state]
);
useEffect(() => {
connector.setStateChangeCallback(handleStateChange);
}, []);
const value = useMemo(() => {
return {
...connector,
connect,
state,
};
}, [connector, state]);
return <AutConnectorContext.Provider value={value}>{children}</AutConnectorContext.Provider>;
};
customElements.define = safeDecorator(customElements.define);
export function Init(authConfig: SwAuthConfig<CSSObject> = null) {
const TAG_NAME = 'd-aut';
if (!authConfig) {
throw new Error('Auth Config is required');
}
Object.assign(env, authConfig.envConfig);
const style = document.createElement('style');
style.textContent = fonts;
if (!document.getElementById('dAutFonts')) {
const head = document.head || document.getElementsByTagName('head')[0];
style.id = 'dAutFonts';
style.type = 'text/css';
head.appendChild(style);
}
if (!customElements.get(TAG_NAME)) {
customElements.define(
TAG_NAME,
class extends HTMLElement {
public childAttrCalback: AttributeCallbackFn;
static get observedAttributes() {
// Add all tracked attributes to this array
return [
AttributeNames.hideButton,
AttributeNames.hubAddress,
AttributeNames.menuItems,
AttributeNames.network,
AttributeNames.flowConfig,
AttributeNames.allowedRoleId,
];
}
attributeChangedCallback(name: string, oldValue: string, newValue: string) {
if (this.childAttrCalback) this.childAttrCalback(name, oldValue, newValue);
}
setAttributeChangeCallback = (callBack: AttributeCallbackFn) => {
if (callBack) this.childAttrCalback = callBack;
};
connectedCallback() {
const jss = create(jssPreset());
const attributes = extractAttributes(this);
let content: any = null;
let mountPoint: HTMLElement = null;
if (authConfig?.container) {
if (!isElement(authConfig.container)) {
throw new Error('Container is not of type HTMLElement');
}
Object.assign(authConfig.container.style, {
position: 'absolute',
left: '0',
right: '0',
top: '0',
bottom: '0',
overflow: 'hidden',
...(authConfig.containerStyles || {}),
});
const mConfig = createShadowElement({ container: authConfig.container, className: 'aut-modal' });
// mConfig.shadowRoot.insertB(style);
const bConfig = createShadowElement({ container: this, className: 'aut-button' });
// bConfig.shadowRoot.appendChild(style);
mountPoint = mConfig.mountPoint;
content = (
<>
<CacheProvider value={bConfig.cache}>
<AutButton
config={authConfig && authConfig.config}
container={bConfig.root}
attributes={attributes}
setAttrCallback={this.setAttributeChangeCallback}
/>
</CacheProvider>
<CacheProvider value={mConfig.cache}>
<SwAuthModal rootContainer={authConfig.container} container={mConfig.root} />
</CacheProvider>
</>
);
} else {
const config = createShadowElement({ container: this, className: 'aut' });
// config.shadowRoot.appendChild(style);
mountPoint = config.mountPoint;
content = (
<>
<CacheProvider value={config.cache}>
<AutButton
config={authConfig && authConfig.config}
container={config.root}
attributes={attributes}
setAttrCallback={this.setAttributeChangeCallback}
/>
<SwAuthModal container={config.root} />
</CacheProvider>
</>
);
}
const root = createRoot(mountPoint);
if (authConfig.subscribeToStore) {
store.subscribe(() => {
authConfig.subscribeToStore(store.getState());
});
}
root.render(
<StyledEngineProvider injectFirst>
<ThemeProvider theme={Theme}>
<Provider store={store}>
<Router initialEntries={['/']}>
<AutConnectorProvider connector={authConfig.connector}>
<StylesProvider jss={jss}>{content}</StylesProvider>
</AutConnectorProvider>
</Router>
</Provider>
</ThemeProvider>
</StyledEngineProvider>
);
}
}
);
}
}