mirror of
https://github.com/Instadapp/assembly.git
synced 2024-07-29 22:37:06 +00:00
32 lines
763 B
TypeScript
32 lines
763 B
TypeScript
import { useWeb3 } from "@kabbouchi/vue-web3";
|
|
import { injected } from "../connectors";
|
|
import { onMounted, ref, watch } from "@nuxtjs/composition-api";
|
|
|
|
export function useEagerConnect() {
|
|
const { activate, active } = useWeb3();
|
|
|
|
const tried = ref(false);
|
|
|
|
onMounted(() => {
|
|
injected.isAuthorized().then((isAuthorized: boolean) => {
|
|
if (isAuthorized) {
|
|
activate(injected, undefined, true).catch(() => {
|
|
tried.value = true;
|
|
});
|
|
} else {
|
|
tried.value = true;
|
|
}
|
|
});
|
|
});
|
|
|
|
// if the connection worked, wait until we get confirmation of that to flip the flag
|
|
watch([tried, active], () => {
|
|
if (!tried.value && active.value) {
|
|
tried.value = true;
|
|
}
|
|
});
|
|
|
|
return {
|
|
tried
|
|
};
|
|
} |