check one time

This commit is contained in:
tavo 2024-09-22 11:00:40 -06:00
parent 849e7086be
commit b71eaa949e
2 changed files with 40 additions and 26 deletions

View file

@ -1,4 +1,5 @@
const PayPalSDK = "https://sandbox.paypal.com/sdk/js?client-id=AUm4S44vdasfvVjG6oaQBc9ivbI92ofrfvL8-ItRjwSgtxuJyzkRRhKLabXMbehC7t-nxGdqhD58qasD&components=buttons&enable-funding=card&disable-funding=paylater,venmo" const PayPalSDK = "https://sandbox.paypal.com/sdk/js?client-id=AcCW43LI1S6lLQgtLkF4V8UOPfmXcqXQ8xfEl41hRuMxSskR2jkWNwQN6Ab1WK7E2E52GNaoYBHqgIKd&components=buttons&enable-funding=card&disable-funding=paylater,venmo"
// const PayPalSDK = "https://paypal.com/sdk/js?client-id=AUm4S44vdasfvVjG6oaQBc9ivbI92ofrfvL8-ItRjwSgtxuJyzkRRhKLabXMbehC7t-nxGdqhD58qasD&components=buttons&enable-funding=card&disable-funding=paylater,venmo"
const EditorJSComponents = [ const EditorJSComponents = [
"https://cdn.jsdelivr.net/npm/@editorjs/header@latest", "https://cdn.jsdelivr.net/npm/@editorjs/header@latest",
@ -117,15 +118,44 @@ function initializeEventListeners() {
// // Mode switching // // Mode switching
document.getElementById('buyModeButton').addEventListener('click', openBuyModeDialog); document.getElementById('buyModeButton').addEventListener('click', openBuyModeDialog);
document.getElementById('editModeButton').addEventListener('click', openEditModeDialog); document.getElementById('editModeButton').addEventListener('click', openEditModeDialog);
document.getElementById("continueToBuyModeButton").addEventListener('click', async () => { document.getElementById("continueToBuyModeButton").addEventListener('click', async () => {
const directory = sanitizeDirectoryTitle(document.getElementById("buyModeDirectoryInput").value); const button = document.getElementById("continueToBuyModeButton");
const exists = await checkDirectoryExists(directory); const directoryInput = document.getElementById("buyModeDirectoryInput");
if (exists) { const errorMessage = document.getElementById("checkdir-error-message");
document.getElementById("checkdir-error-message").style.display = "block"; const directory = sanitizeDirectoryTitle(directoryInput.value);
document.getElementById("checkdir-error-message").innerHTML = `El sitio https://conex.one/${directory} ya existe.`;
} else {
document.getElementById("checkdir-error-message").style.display = "none"; const originalBuyButtonHTML = button.innerHTML;
buyMode(directory); button.innerHTML = '<span class="loader"></span>';
button.disabled = true;
let timeout = setTimeout(() => {
button.innerHTML = originalBuyButtonHTML;
button.disabled = false;
errorMessage.style.display = "block";
errorMessage.innerHTML = `Revisar la disponibilidad del sitio tardó mucho tiempo, intentalo más tarde.`;
}, 10000);
try {
const exists = await checkDirectoryExists(directory);
clearTimeout(timeout);
if (exists) {
errorMessage.style.display = "block";
errorMessage.innerHTML = `El sitio https://conex.one/${directory} ya existe.`;
} else {
errorMessage.style.display = "none";
buyMode(directory);
}
} catch (error) {
clearTimeout(timeout);
errorMessage.style.display = "block";
errorMessage.innerHTML = `Error: Could not check the site. Please try again.`;
} finally {
button.innerHTML = originalBuyButtonHTML;
button.disabled = false;
} }
}); });
@ -166,14 +196,6 @@ function initializeEventListeners() {
console.error('Invalid code. Please enter a 6-digit number.'); console.error('Invalid code. Please enter a 6-digit number.');
} }
}); });
const titleElement = document.getElementById('buyModeDirectoryInput');
titleElement.addEventListener('input', debounce(function() {
const directory = titleElement.value.trim();
if (directory.length > 0) {
validateDirectory(directory);
}
}, 500)); // 500ms debounce
} }
function openDialog(content) { function openDialog(content) {
@ -183,14 +205,6 @@ function openDialog(content) {
floatingButtons.style.display = "none"; floatingButtons.style.display = "none";
} }
function debounce(func, delay) {
let timeout;
return function(...args) {
clearTimeout(timeout);
timeout = setTimeout(() => func.apply(this, args), delay);
};
}
function closeDialog() { function closeDialog() {
checkoutDialog.style.display = "none"; checkoutDialog.style.display = "none";
editDialog.style.display = "none"; editDialog.style.display = "none";

View file

@ -131,7 +131,7 @@ func main() {
http.HandleFunc("/api/directory/", VerifyDirectoryHandler(db)) http.HandleFunc("/api/directory/", VerifyDirectoryHandler(db))
http.HandleFunc("/api/fetch/", FetchSiteHandler(db)) http.HandleFunc("/api/fetch/", FetchSiteHandler(db))
http.HandleFunc("/api/upload", UploadFileHandler(s3Client, endpoint, apiEndpoint, apiToken, bucketName, publicEndpoint)) http.HandleFunc("/api/upload", UploadFileHandler(s3Client, endpoint, apiEndpoint, apiToken, bucketName, publicEndpoint))
http.Handle("/", http.FileServer(http.Dir("./public"))) // http.Handle("/", http.FileServer(http.Dir("./public")))
stop := make(chan os.Signal, 1) stop := make(chan os.Signal, 1)
signal.Notify(stop, syscall.SIGINT, syscall.SIGTERM) signal.Notify(stop, syscall.SIGINT, syscall.SIGTERM)