Files
wanderer/assets/js/hooks/Mapper/index.tsx
Dmitry Popov 4136aaad76 Initial commit
2024-09-18 01:55:30 +04:00

56 lines
1.4 KiB
TypeScript
Executable File

import { createRoot } from 'react-dom/client';
import Mapper from './MapRoot';
import { decompressToJson } from './utils';
export default {
_rootEl: null,
_errorCount: 0,
mounted() {
// create react root element
const rootEl = document.getElementById(this.el.id);
this._version = this.el.dataset.version;
this._rootEl = createRoot(rootEl!);
const handleError = (error: Error, componentStack: string) => {
this.pushEvent('log_map_error', { error: error.message, componentStack });
};
this.render({
handleEvent: this.handleEventWrapper.bind(this),
pushEvent: this.pushEvent.bind(this),
pushEventAsync: this.pushEventAsync.bind(this),
onError: handleError,
});
this.pushEvent('loaded');
},
handleEventWrapper(event: string, handler: (payload: any) => void) {
this.handleEvent(event, (body: any) => {
if (event === 'map_event') {
const { type, body: data } = body;
handler({ type, body: decompressToJson(data) });
} else {
handler(body);
}
});
},
reconnected() {
this.pushEvent('reconnected');
},
async pushEventAsync(event: string, payload: any) {
return new Promise((accept, reject) => {
this.pushEvent(event, payload, reply => {
accept(reply);
});
});
},
render(hooks) {
this._rootEl.render(<Mapper hooks={hooks} />);
},
};