2023-05-17 02:03:52 +10:00
|
|
|
import './public-path';
|
|
|
|
import axios from 'axios';
|
|
|
|
|
2023-05-24 01:15:17 +10:00
|
|
|
import ready from '../mastodon/ready';
|
|
|
|
|
2023-05-17 02:03:52 +10:00
|
|
|
ready(() => {
|
|
|
|
setInterval(() => {
|
|
|
|
axios.get('/api/v1/emails/check_confirmation').then((response) => {
|
|
|
|
if (response.data) {
|
|
|
|
window.location = '/start';
|
|
|
|
}
|
|
|
|
}).catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|
|
|
|
}, 5000);
|
2023-08-03 09:51:10 +10:00
|
|
|
|
|
|
|
document.querySelectorAll('.timer-button').forEach(button => {
|
|
|
|
let counter = 30;
|
|
|
|
|
|
|
|
const container = document.createElement('span');
|
|
|
|
|
|
|
|
const updateCounter = () => {
|
|
|
|
container.innerText = ` (${counter})`;
|
|
|
|
};
|
|
|
|
|
|
|
|
updateCounter();
|
|
|
|
|
|
|
|
const countdown = setInterval(() => {
|
|
|
|
counter--;
|
|
|
|
|
|
|
|
if (counter === 0) {
|
|
|
|
button.disabled = false;
|
|
|
|
button.removeChild(container);
|
|
|
|
clearInterval(countdown);
|
|
|
|
} else {
|
|
|
|
updateCounter();
|
|
|
|
}
|
|
|
|
}, 1000);
|
|
|
|
|
|
|
|
button.appendChild(container);
|
|
|
|
});
|
2023-05-17 02:03:52 +10:00
|
|
|
});
|