Atualização automática: 2026-05-18 11:00:54

This commit is contained in:
Hermes
2026-05-18 11:00:54 +00:00
parent 3628719b3b
commit 7e6e105fdb
3 changed files with 37 additions and 24 deletions
+5 -15
View File
@@ -255,7 +255,7 @@ function populateOverview(data) {
if (data.cloneInfo) {
overviewItems.push(
{ label: 'Clone Status', value: data.cloneInfo.success ? '✅ Sucesso' : '❌ Falhou' },
{ label: 'Assets Baixados', value: `${data.cloneInfo.assetsDownloaded}/${data.cloneInfo.totalAssets}` },
{ label: 'Assets Baixados', value: data.cloneInfo.fileCount ? `${data.cloneInfo.fileCount} arquivos (${formatBytes(data.cloneInfo.totalSize || 0)})` : 'verificando...' },
{ label: 'Diretório Local', value: data.cloneInfo.directory }
);
}
@@ -435,18 +435,8 @@ function openCloneFolder(directory) {
}
function openClonedSite(directory) {
// Tentar abrir o index.html do site clonado
fetch('/api/open-site', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ path: directory })
}).then(response => {
if (!response.ok) {
alert('Não foi possível abrir o site automaticamente.\nAbra manualmente: ' + directory + '\\index.html');
}
}).catch(error => {
alert('Não foi possível abrir o site automaticamente.\nAbra manualmente: ' + directory + '\\index.html');
});
// Extract folder name and open site in browser via window.open
const folderName = directory.split('/').pop();
const siteUrl = window.location.protocol + '//' + window.location.host + '/' + folderName + '/index.html';
window.open(siteUrl, '_blank');
}