<!--
    This Source Code Form is subject to the terms of the GNU General Public License:

    Copyright (C) 2021-2024 PokeTube (https://codeberg.org/Ashley/poketube)
    
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program. If not, see https://www.gnu.org/licenses/.
-->
 <!doctype html>
<html lang="en">

<head>
    <title>PokeTranslate</title>
    <link rel="icon" href="/static/yt-ukraine.svg">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta content="PokeTranslate" property=og:title>
    <meta content="Translate text - Anonymously!" property=twitter:description>
    <meta content="https://cdn.glitch.global/d68d17bb-f2c0-4bc3-993f-50902734f652/aa70111e-5bcd-4379-8b23-332a33012b78.image.png?v=1701898829884" property="og:image" />
    <meta content=summary_large_image name=twitter:card>
    <meta charset="UTF-8">
    <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline'">
    <meta name="referrer" content="no-referrer">
    <link rel="manifest" href="/manifest.json">
    <style>
        .center {
            text-align: center;
        }

        .wrap {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 10px 0;
        }

        .wrap.languages {
            margin-bottom: 30px;
        }

        .item {
            width: 100%;
            height: 150px;
            border-radius: 0.5em;
        }

        .item-wrapper {
            display: flex;
            justify-content: center;
            width: 450px;
            margin: 5px 10px;
        }

        button,
        select,
        input,
        textarea {
            border-radius: 1em;
            padding: 10px;
            background-color: #131618;
            border: 2px solid #495057;
            color: #f8f9fa;
        }

        body {
            justify-content: center;
            font-family: sans-serif;
            background-color: #2c2f33;
            color: #f8f9fa;
        }

        #translation-form {
            background-color: #1f2023;
            border-radius: 1em;
            padding: 20px;
            width: 90%;
            max-width: 800px;
            margin: auto;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        }

        h1 {
            color: #5bc0de;
            font-size: 2rem;
        }

        #definitions_and_translations {
            display: grid;
            width: 100%;
            grid-template-areas: "definitions translations";
            gap: 20px;
        }

        @media screen and (max-width: 1200px) {
            #definitions_and_translations {
                display: grid;
                grid-template-areas:
                    "definitions definitions"
                    "translations translations";
            }
        }

        div.definitions,
        div.translations {
            padding: 10px;
            background-color: #3a3f44;
            border-radius: 0.5em;
        }

        textarea:focus,
        input:focus,
        button:focus {
            border-color: #478061;
            outline: 1px solid #478061;
        }

        a {
            color: #599bf6;
        }

        /* Additional styles to match the calendar page */
        header {
            margin-bottom: 20px;
        }

        #switchbutton {
            white-space: nowrap;
        }

        button {
            font-size: 1rem;
        }

        .center button {
            margin-top: 15px;
        }

        /* Responsive design */
        @media screen and (max-width: 768px) {
            #translation-form {
                padding: 10px;
            }

            .wrap {
                flex-direction: column;
            }

            .item-wrapper {
                width: 100%;
            }
        }
    </style>

    <% if (isMobile) { %>
    <style>
        body {
            overflow: auto;
        }
    </style>
    <% } %>

    <% if (!isMobile) { %>
    <style>
        body {
            overflow: hidden;
        }
    </style>
    <% } %>
</head>

<body>
    <div id="translation-form">
        <header class="center">
            <h1>PokeTranslate</h1>
        </header>
             
               <% const languageOptions = [
  { code: 'autodetect', name: 'Autodetect' },
  { code: 'af', name: 'Afrikaans' },
  { code: 'sq', name: 'Albanian' },
  { code: 'am', name: 'Amharic' },
  { code: 'ar', name: 'Arabic' },
  { code: 'hy', name: 'Armenian' },
  { code: 'as', name: 'Assamese' },
  { code: 'ay', name: 'Aymara' },
  { code: 'az', name: 'Azerbaijani' },
  { code: 'bm', name: 'Bambara' },
  { code: 'eu', name: 'Basque' },
  { code: 'be', name: 'Belarusian' },
  { code: 'bn', name: 'Bengali' },
  { code: 'bh', name: 'Bhojpuri' },
  { code: 'bs', name: 'Bosnian' },
  { code: 'bg', name: 'Bulgarian' },
  { code: 'ca', name: 'Catalan' },
  { code: 'ceb', name: 'Cebuano' },
  { code: 'ny', name: 'Chichewa' },
  { code: 'zh-cn', name: 'Chinese (Simplified)' },
  { code: 'zh-tw', name: 'Chinese (Traditional)' },
  { code: 'co', name: 'Corsican' },
  { code: 'hr', name: 'Croatian' },
  { code: 'cs', name: 'Czech' },
  { code: 'da', name: 'Danish' },
  { code: 'dv', name: 'Dhivehi' },
  { code: 'doi', name: 'Dogri' },
  { code: 'nl', name: 'Dutch' },
  { code: 'en', name: 'English' },
  { code: 'eo', name: 'Esperanto' },
  { code: 'et', name: 'Estonian' },
  { code: 'ee', name: 'Ewe' },
  { code: 'tl', name: 'Filipino' },
  { code: 'fi', name: 'Finnish' },
  { code: 'fr', name: 'French' },
  { code: 'fy', name: 'Frisian' },
  { code: 'gl', name: 'Galician' },
  { code: 'ka', name: 'Georgian' },
  { code: 'de', name: 'German' },
  { code: 'el', name: 'Greek' },
  { code: 'gn', name: 'Guarani' },
  { code: 'gu', name: 'Gujarati' },
  { code: 'ht', name: 'Haitian Creole' },
  { code: 'ha', name: 'Hausa' },
  { code: 'haw', name: 'Hawaiian' },
  { code: 'he', name: 'Hebrew' },
  { code: 'hi', name: 'Hindi' },
  { code: 'hmn', name: 'Hmong' },
  { code: 'hu', name: 'Hungarian' },
  { code: 'is', name: 'Icelandic' },
  { code: 'ig', name: 'Igbo' },
  { code: 'ilo', name: 'Ilocano' },
  { code: 'id', name: 'Indonesian' },
  { code: 'ga', name: 'Irish' },
  { code: 'it', name: 'Italian' },
  { code: 'ja', name: 'Japanese' },
  { code: 'jv', name: 'Javanese' },
  { code: 'kn', name: 'Kannada' },
  { code: 'kk', name: 'Kazakh' },
  { code: 'km', name: 'Khmer' },
  { code: 'rw', name: 'Kinyarwanda' },
  { code: 'kok', name: 'Konkani' },
  { code: 'ko', name: 'Korean (PROK)' },
  { code: 'kri', name: 'Krio' },
  { code: 'ku', name: 'Kurdish (Kurmanji)' },
  { code: 'sd', name: 'Sindhi' },
  { code: 'si', name: 'Sinhala' },
  { code: 'sk', name: 'Slovak' },
  { code: 'sl', name: 'Slovenian' },
  { code: 'so', name: 'Somali' },
  { code: 'es', name: 'Spanish' },
  { code: 'su', name: 'Sundanese' },
  { code: 'sw', name: 'Swahili' },
  { code: 'sv', name: 'Swedish' },
  { code: 'tg', name: 'Tajik' },
  { code: 'ta', name: 'Tamil' },
  { code: 'tt', name: 'Tatar' },
  { code: 'te', name: 'Telugu' },
  { code: 'th', name: 'Thai' },
  { code: 'ti', name: 'Tigrinya' },
  { code: 'ts', name: 'Tsonga' },
  { code: 'tr', name: 'Turkish' },
  { code: 'tk', name: 'Turkmen' },
  { code: 'twi', name: 'Twi' },
  { code: 'uk', name: 'Ukrainian' },
  { code: 'ur', name: 'Urdu' },
  { code: 'ug', name: 'Uyghur' },
  { code: 'uz', name: 'Uzbek' },
  { code: 'vi', name: 'Vietnamese' },
  { code: 'cy', name: 'Welsh' },
  { code: 'xh', name: 'Xhosa' },
  { code: 'yi', name: 'Yiddish' },
  { code: 'yo', name: 'Yoruba' },
  { code: 'zu', name: 'Zulu' }
]; %> 
        <form action="/translate" method="GET" id="translation-form">
            <!-- from and to language -->
            <div class="wrap languages">
                <div class="language">
                    <select name="from_language" id="from_language">
                        <% languageOptions.forEach(language => { %>
                        <option value="<%= language.code %>" <%= language.code === (from_language || 'autodetect') ? 'selected' : '' %>>
                            <%= language.name %>
                        </option>
                        <% }); %>
                    </select>

                    <select name="to_language" id="to_language">
                        <% languageOptions.slice(1).forEach(language => { %>
                        <option value="<%= language.code %>" <%= language.code === to_language ? 'selected' : '' %>>
                            <%= language.name %>
                        </option>
                        <% }); %>
                    </select>
                </div>
            </div>

            <!-- text boxes -->
            <div class="wrap">
                <div class="item-wrapper">
                    <textarea autofocus class="item" id="input" name="input" dir="auto" placeholder="<%- text %>">
                        <%- text %>
                    </textarea>
                </div>

                <div class="item-wrapper">
                    <textarea id="output" class="translation item" dir="auto" placeholder="Translation" readonly>
                        <%- translation %>
                    </textarea>
                </div>
            </div>

            <div class="center">
                <button type="submit">Translate :3</button>
            </div>
        </form>
    </div>

    <script>
        document.getElementById("input").addEventListener("keydown", function (event) {
            if (event.keyCode === 13 && (event.metaKey || event.ctrlKey)) {
                document.getElementById("translation-form").submit();
            }
        });

        var input = document.getElementById("input");
        var output = document.getElementById("output");
        input.setAttribute("style", "height:" + output.scrollHeight + "px;overflow-y:scroll;");
        output.setAttribute("style", "height:" + output.scrollHeight + "px;overflow-y:scroll;");
        input.addEventListener("input", function (e) {
            this.style.height = 150 + "px";
            this.style.height = this.scrollHeight + "px";
        });
    </script>
    <script src="/static/custom-css.js"></script>
</body>

</html>