<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            padding: 20px;
        }
        
        .release-notes-container {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #0A2333 0%, #004D80 50%, #007BFF 100%);
            color: white;
            padding: 30px 40px;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M0,0 L200,0 L200,200 L0,200 Z" fill="none"/><path d="M0,100 Q50,50 100,100 T200,100" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/><path d="M0,120 Q50,70 100,120 T200,120" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/><path d="M0,80 Q50,30 100,80 T200,80" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>') no-repeat;
            background-size: cover;
            opacity: 0.3;
        }
        
        .header-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .totvs-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .totvs-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        
        .totvs-icon svg {
            width: 32px;
            height: 32px;
        }
        
        .totvs-text {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 2px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .header-title {
            flex: 1;
            margin-left: 20px;
            padding-left: 20px;
            border-left: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .header h1 {
            margin: 0;
            font-size: 32px;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .metadata {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            border-bottom: 1px solid #dee2e6;
        }
        
        .metadata-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }
        
        .metadata-item strong {
            color: #0A2333;
            font-weight: 600;
        }
        
        .metadata-item span {
            color: #495057;
            background: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-weight: 500;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .links {
            padding: 20px 40px;
            background: #f8f9fa;
            border-bottom: 1px solid #dee2e6;
        }
        
        .links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: linear-gradient(135deg, #007BFF 0%, #0052CC 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
        }
        
        .links a:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
            background: linear-gradient(135deg, #0052CC 0%, #003d99 100%);
        }
        
        .widget-container {
            margin: 0;
            border: none;
            border-radius: 0;
            overflow: hidden;
            min-height: 700px;
            background: #ffffff;
        }
        
        .loading {
            text-align: center;
            padding: 60px 20px;
            color: #6c757d;
            font-size: 16px;
        }
        
        .loading::before {
            content: '';
            display: block;
            width: 50px;
            height: 50px;
            margin: 0 auto 20px;
            border: 4px solid #e9ecef;
            border-top-color: #007BFF;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .error {
            background: linear-gradient(135deg, #fee 0%, #fcc 100%);
            color: #c33;
            padding: 20px 40px;
            border-left: 4px solid #dc3545;
            margin: 20px 40px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
        }
        
        .warning {
            background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
            color: #856404;
            padding: 20px 40px;
            border-left: 4px solid #ffc107;
            margin: 20px 40px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(255, 193, 7, 0.1);
        }
        
        #widget-placeholder {
            padding: 0;
        }
        
        #widget-placeholder iframe {
            border-radius: 0;
            box-shadow: none;
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 20px;
            }
            
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .header-title {
                margin-left: 0;
                padding-left: 0;
                border-left: none;
                border-top: 2px solid rgba(255, 255, 255, 0.3);
                padding-top: 15px;
                margin-top: 15px;
            }
            
            .header h1 {
                font-size: 24px;
            }
            
            .metadata {
                padding: 15px 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            
            .links {
                padding: 15px 20px;
            }
        }
    </style>
</head>
<body>
    <div class="release-notes-container">
        <div class="header">
            <div class="header-content">
                <div class="totvs-logo">
                    <div class="totvs-icon">
                        <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
                            <polygon points="50,10 90,30 90,70 50,90 10,70 10,30" 
                                     fill="#007BFF" 
                                     stroke="#0052CC" 
                                     stroke-width="2"/>
                            <path d="M 30 50 L 50 30 L 70 50 L 50 70 Z" 
                                  fill="white" 
                                  opacity="0.9"/>
                        </svg>
                    </div>
                    <div class="totvs-text">TOTVS</div>
                </div>
                <div class="header-title">
                    <h1 id="page-title">Dicionário de Dados</h1>
                </div>
            </div>
        </div>
        
        <div class="metadata">
            <div class="metadata-item">
                <strong>Versão:</strong> <span id="version">Carregando...</span>
            </div>
            <div class="metadata-item">
                <strong>Última atualização:</strong> <span id="last-update">-</span>
            </div>
        </div>
        
        <div class="links" id="links-container">
            <!-- Links serão inseridos aqui -->
        </div>
        
        <div class="widget-container">
            <div id="loading" class="loading">
                Carregando documento...
            </div>
            <div id="error" class="error" style="display: none;"></div>
            <div id="warning" class="warning" style="display: none;"></div>
            <div id="widget-placeholder"></div>
        </div>
    </div>

    <script>
        (function() {
            // Mapeamento de versões para Document IDs do Google Docs e arquivos .txt
            // Gerado automaticamente a partir da pasta: 141aJRhZeYZca4QCBnou6-00WzRLkBYbs
            // Data: 2025-12-16
            // Total: 62 versões (2 Google Docs + 60 arquivos .txt - todos funcionando!)
            const versionToDocId = {
                // Google Docs (2)
                '12.1.2503.14': '13QaSU_lP1_haWnOYl7UjPvsKfi3AaPdKwciYHrceEt4',
                '12.1.2511.2': '1gLo16QDT99iGdaoKyFHBW1n5jF-gt-awBjnSQrBZa3c',
                
                // Arquivos .txt (60) - funcionando diretamente no Widget Connector
                '12.1.2503': '1BRsJyHOHQNOEpAfIm5ndOn6z_0gffbaF',
                '12.1.2503.15': '12ejZuDikegyaH2n16n2Hpas1Z3VEjc5e',
                '12.1.2503.16': '15BkT50wXw7kJccfw4iRB-LVGQyTzQVf1',
                '12.1.2503.17': '1L4FUKbDjnAs29rK0ymfMgRVJPPVtzYdW',
                '12.1.2503.18': '1LNSFua5jsEw9m2D4X7lBVsbk6qXsG3cm',
                '12.1.2507': '1pT42y90cnf2UY2gK5k035jEFVkIs7s-n',
                '12.1.2507.1': '1lo7KiRJGWYJFfH-Xqv-dvNcRoIy6ecj3',
                '12.1.2507.2': '1xe9L8cCurcXIw5tzxe4H9KNzFgpIObA1',
                '12.1.2507.3': '1P9jEM2cgtUkyfdK5bsKlSvFCk_SqpMqU',
                '12.1.2507.4': '12Qk7mEnEe2iIsE-nFUUGOmbt_t8rwjn-',
                '12.1.2507.5': '1ljgI7Re2mT3yv7TgnZLOZv_n0vzzJTxF',
                '12.1.2507.6': '1lwblHVXZUKF8qgdajVB2Va41fxpJkZ9X',
                '12.1.2507.7': '1LWO9GFD8iO6HQEJn_wBybP1EdZ2AZSsD',
                '12.1.2507.8': '1bhB3Pig68EAvmXGoUptLYnJPEnGW4fVr',
                '12.1.2507.9': '1shjpLbeGfQmrV6DMtm4EuIvqdhHTuEIy',
                '12.1.2507.10': '1wU40XkkEMRqw4Ieanf5QrkBz8SwqISzj',
                '12.1.2507.11': '1goM3M1WCXvtdx46fY7ZmeeDtwpnvbld5',
                '12.1.2507.12': '15r-G5LdQpPn9gcktkpYVPQS1exs6Io8t',
                '12.1.2507.13': '1xVHx0mjDewGUVwIGR8GWqTMqX1R_Cj21',
                '12.1.2507.14': '1uFblMZhJaYPFrGKtFCC9bAa-2xxtXmi_',
                '12.1.2507.15': '1vNN6ONnbq1ApNJy6uzGW_hZ27HvhW7Dd',
                '12.1.2507.16': '1g27jhn6ZEliSZhAJ7Co9FUFLtNBfqVHH',
                '12.1.2507.17': '1LkwBvxVy_oykf3gEAwlf2eRn0NMiMnL1',
                '12.1.2507.18': '1he66XmpG6YhgKlxtMv3xik6KccuMKLeS',
                '12.1.2511': '1gPiO2P_mF0wpLX-2g5oFBqi4QS630wKM',
                '12.1.2511.1': '1yv4EZZKrfPgI-RWggMfBANtx6dL8owhA',
                '12.1.2511.3': '14Zd-Npn6VGioc1wsokDL4vfPRVzhb-AY',
                '12.1.2511.4': '1VjoqjmjqCokx4Kv5QDTDa9wZsF1QwICY',
                '12.1.2511.5': '1evpMFJmgDUFX__dC6W83LZqKQXjmy88s',
                '12.1.2511.6': '1_e3AgOsc9Oqy-JoZhus-zyU-961karvw',
                '12.1.2511.7': '19TKZ4fYof03H0pdzldQnV7_ZYjxowkNr',
                '12.1.2511.8': '12ivR5sJUwVwcRJr0Q_aHBT_y4JwlnTd4',
                '12.1.2511.9': '1Exio4F5z2lo6HnEnLpkDquuu8HUiD3C-',
                '12.1.2511.10': '1NRs4aZct5OVmSiXDPgMmUw9iFURlC6Od',
                '12.1.2511.11': '1AAOtpmIahaHaYYUtUFL3OJGJ07dTKLU_',
                '12.1.2511.12': '1c19qwsUQdWb_H58qcamAQ6Fz9Bwg78Bs',
                '12.1.2511.13': '1CS-VXZJLzPSBjov0r4JVAcTPE5daaE4M',
                '12.1.2511.14': '1dei-4_gijuPsGzSQKZpIh9DMCYJ2pw8j',
                '12.1.2511.15': '1qDv9Zm_0CJiKl6iJBzxVxwFCoHNZBky4',
                '12.1.2511.16': '1H51vcp3ierWZE0XB1QEtzUnm0J-0uEVp',
                '12.1.2511.17': '1OwFzjD6j4_OlDi9x7f5xqqoBo_eKY1rd',
                '12.1.2511.18': '1iaMmEP6yDzHR4oTM_SjM2obkaUz1zrBA',
                '12.1.2603.1': '19iieXcJNDoIM8lp09Zd-faD22AWepfTC',
                '12.1.2603.2': '1DFR1cWRUVm3PsPQsVbuJySIjxMIy085L',
                '12.1.2603.3': '1PLCl8hhtuvnW8Q9WDug9NH9F_qO-CUoq',
                '12.1.2603.4': '1qFmELYGulpQizNrXFBCpHdcLOSC5LrsZ',
                '12.1.2603.5': '1Q8ZSMOooNeSgmfdEucEsRO6P8z370enZ',
                '12.1.2603.6': '1P5-nq151raX-NhYufnTRrZMZyeAKsSp2',
                '12.1.2603.7': '1VfNdP7lRvi37ZKSOzX1KyEp6dK_t0I-N',
                '12.1.2603.8': '1pxJPuMKfOWXrkwS7zzmm_3i_GerA44Zi',
                '12.1.2603.9': '1evoXM_3WvL4SGVkwB8EYgwXuD6E4Asmw',
                '12.1.2603.10': '18tytubaH1oywQoWyAycMM-qMq_347CHb',
                '12.1.2603.11': '1ORyeFI8qYQynt20Ud66XLKewYQoVdLA6',
                '12.1.2603.12': '1gDfH7fyZSUGl90ikqO3yXsZGm_EXC4PW',
                '12.1.2607.1': '1ruRPs4fBJrKpLoECMGh0X5Ca4Bc_hfPb',
                '12.1.2607.2': '1njYTB38Ts6_dAZKvkqdvdQcPx99HTRml',
                '12.1.2607.3': '1uQR-2_JLet0Cyo7K6XaClDaXqxBu7udV',
                '12.1.2607.4': '1G41yiKUzoWgIrbQATlhYntb73FSH9U76',
                '12.1.2607.5': '1_BfY0poM0AeAFy39vK-XZmBhEafIzzBf',
                '12.1.2607.6': '1cm7WuMWrQYjGDdeMdmdAqIFX5ugROaHY',
            };
            
            // Função para extrair versão do título "Dicionário de Dados 12.1.2503.14"
            function extractVersionFromTitle() {
                let version = null;
                const versionPattern = /(\d+\.\d+\.\d+(?:\.\d+)?)/;
                
                // Método 1: Título da página (Confluence)
                const pageTitle = document.querySelector('h1#title-text, .page-title, h1, [data-page-title]');
                if (pageTitle) {
                    const titleText = pageTitle.textContent.trim();
                    const match = titleText.match(versionPattern);
                    if (match) {
                        version = match[1];
                    }
                }
                
                // Método 2: Meta tags
                if (!version) {
                    const metaTitle = document.querySelector('meta[property="og:title"], meta[name="title"]');
                    if (metaTitle) {
                        const titleText = metaTitle.getAttribute('content') || '';
                        const match = titleText.match(versionPattern);
                        if (match) {
                            version = match[1];
                        }
                    }
                }
                
                // Método 3: document.title
                if (!version) {
                    const match = document.title.match(versionPattern);
                    if (match) {
                        version = match[1];
                    }
                }
                
                // Método 4: URL (fallback)
                if (!version) {
                    const urlParams = new URLSearchParams(window.location.search);
                    const titleParam = urlParams.get('title');
                    if (titleParam) {
                        const match = decodeURIComponent(titleParam).match(versionPattern);
                        if (match) {
                            version = match[1];
                        }
                    }
                }
                
                return version;
            }
            
            // Função principal
            function init() {
                const version = extractVersionFromTitle();
                
                if (!version) {
                    document.getElementById('error').style.display = 'block';
                    document.getElementById('error').innerHTML = 
                        '❌ <strong>Versão não identificada</strong><br>' +
                        'Certifique-se de que o título da página contém a versão no formato: "Dicionário de Dados 12.1.2503.14"';
                    document.getElementById('loading').style.display = 'none';
                    return;
                }
                
                // Atualizar interface
                document.getElementById('version').textContent = version;
                document.getElementById('page-title').textContent = `Dicionário de Dados ${version}`;
                document.getElementById('last-update').textContent = new Date().toLocaleString('pt-BR');
                
                // Obter Document ID
                const docId = versionToDocId[version];
                
                if (!docId) {
                    showWarning(version);
                    return;
                }
                
                loadDocument(docId, version);
            }
            
            function showWarning(version) {
                document.getElementById('warning').style.display = 'block';
                document.getElementById('warning').innerHTML = 
                    `⚠️ <strong>Documento não encontrado para versão ${version}</strong><br>` +
                    `O documento pode ainda não ter sido criado no Google Drive ou o mapeamento precisa ser atualizado.<br><br>` +
                    `Para adicionar este documento ao mapeamento:<br>` +
                    `1. Certifique-se de que existe um Google Doc ou arquivo .txt com o nome "${version}" ou "${version}.txt" na pasta<br>` +
                    `2. Execute o script: <code>python generate_complete_mapping_with_txt.py</code><br>` +
                    `3. Atualize o objeto <code>versionToDocId</code> neste HTML com o novo Document ID`;
                document.getElementById('loading').style.display = 'none';
            }
            
            function loadDocument(docId, version) {
                // Construir URLs (funciona para Google Docs e arquivos .txt)
                // Para arquivos .txt, o Google Drive permite visualização direta
                const googleDocUrl = `https://docs.google.com/document/d/${docId}/edit?usp=sharing`;
                const previewUrl = `https://docs.google.com/document/d/${docId}/preview`;
                
                // Criar links
                const linksContainer = document.getElementById('links-container');
                linksContainer.innerHTML = `
                    <a href="${googleDocUrl}" target="_blank">📄 Abrir no Google Docs</a>
                `;
                
                // Criar Widget Connector ou iframe
                const placeholder = document.getElementById('widget-placeholder');
                
                // Verificar se está em modo de edição do Confluence
                const isEditMode = window.location.href.includes('editpage.action') || 
                                  window.location.href.includes('edit');
                
                if (isEditMode) {
                    // Modo de edição: mostrar código do macro Widget Connector
                    const widgetCode = `<ac:structured-macro ac:name="widget" ac:schema-version="1">
  <ac:parameter ac:name="url">${googleDocUrl}</ac:parameter>
  <ac:parameter ac:name="width">100%</ac:parameter>
  <ac:parameter ac:name="height">800</ac:parameter>
</ac:structured-macro>`;
                    
                    placeholder.innerHTML = `
                        <div style="background: #f4f5f7; padding: 15px; border-radius: 5px; margin: 10px 0;">
                            <p><strong>📋 Código do Widget Connector:</strong></p>
                            <pre style="background: white; padding: 10px; border-radius: 3px; overflow-x: auto; font-size: 12px;">${widgetCode}</pre>
                            <p style="margin-top: 10px; font-size: 12px; color: #666;">
                                💡 <strong>Instruções:</strong> Copie o código acima e cole no editor do Confluence usando o macro "Widget Connector".
                            </p>
                        </div>
                    `;
                } else {
                    // Modo de visualização: usar iframe
                    // Tenta primeiro o preview do Google Docs, se não funcionar, usa o Drive
                    const iframe = document.createElement('iframe');
                    iframe.src = previewUrl;
                    iframe.width = '100%';
                    iframe.height = '800';
                    iframe.style.border = 'none';
                    iframe.style.borderRadius = '5px';
                    iframe.allow = 'fullscreen';
                    iframe.title = `Dicionário de Dados ${version}`;
                    
                    placeholder.appendChild(iframe);
                }
                
                document.getElementById('loading').style.display = 'none';
            }
            
            // Executar quando a página carregar
            if (document.readyState === 'loading') {
                document.addEventListener('DOMContentLoaded', init);
            } else {
                init();
            }
        })();
    </script>
</body>
</html>