{#
/**
 * Copyright (C) 2020 Xibo Signage Ltd
 *
 * Xibo - Digital Signage - http://www.xibo.org.uk
 *
 * This file is part of Xibo.
 *
 * Xibo is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * any later version.
 *
 * Xibo 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with Xibo.  If not, see <http://www.gnu.org/licenses/>.
 */
#}

{% extends "form-base.twig" %}
{% import "forms.twig" as forms %}

{% block formTitle %}
    {% trans "Edit Embedded" %}
{% endblock %}

{% block formHtml %}
    <div class="row">
        <ul class="nav nav-tabs" role="tablist">
            <li class="nav-item"><a class="nav-link active" href="#general" role="tab" data-toggle="tab"><span>{% trans "General" %}</span></a></li>
            <li class="nav-item"><a class="nav-link" href="#configurationTab" role="tab" data-toggle="tab"><span>{% trans "Configuration" %}</span></a></li>
            <li class="nav-item dropdown">
                <a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
                    {% trans "Templates" %}<span class="caret"></span>
                </a>
                <div class="dropdown-menu">
                    <a class="dropdown-item" href="#htmlTab" role="tab" data-toggle="tab"><span>{% trans "HTML to Embed" %}</span></a>
                    <a class="dropdown-item" href="#customStyleSheetTab" role="tab" data-toggle="tab"><span>{% trans "Custom Style Sheet" %}</span></a>
                    <a class="dropdown-item" href="#headContentTab" role="tab" data-toggle="tab"><span>{% trans "HEAD content to Embed" %}</span></a>
                </div>
            </li>
        </ul>
        <div class="col-md-12">
            <form id="embeddedFormEdit" class="XiboForm form-horizontal" method="put" action="{{ url_for("module.widget.edit", {id: module.widget.widgetId}) }}">
                <div class="tab-content">
                    <div class="tab-pane active" id="general">
                        {% set title %}{% trans "Name" %}{% endset %}
                        {% set helpText %}{% trans "An optional name for this widget" %}{% endset %}
                        {{ forms.input("name", title, module.getOption("name"), helpText) }}

                        {% set title %}{% trans "Set a duration?" %}{% endset %}
                        {% set helpText %}{% trans "Select to provide a specific duration for this Widget" %}{% endset %}
                        {{ forms.checkbox("useDuration", title, module.getUseDuration(), helpText) }}

                        {% set title %}{% trans "Duration" %}{% endset %}
                        {% set helpText %}{% trans "The duration in seconds this should be displayed" %}{% endset %}
                        {{ forms.number("duration", title, module.getDuration(), helpText, "duration-fields", "required") }}

                        {% set title %}{% trans "Enable Stats Collection?" %}{% endset %}
                        {% set helpText %}{% trans "Enable the collection of Proof of Play statistics for this Widget. Ensure that ‘Enable Stats Collection’ is set to ‘On’ in the Display Settings." %}{% endset %}

                        {% set offOption %}{% trans "Off" %}{% endset %}
                        {% set onOption %}{% trans "On" %}{% endset %}
                        {% set inheritOption %}{% trans "Inherit" %}{% endset %}
                        {% set options = [
                            { id: "Off", value: offOption },
                            { id: "On", value: onOption },
                            { id: "Inherit", value: inheritOption }
                        ] %}
                        {{ forms.dropdown("enableStat", "single", title, module.getOption("enableStat", theme.getSetting("WIDGET_STATS_ENABLED_DEFAULT")), options, "id", "value", helpText) }}
                    </div>

                    <div class="tab-pane" id="configurationTab">
                        {% set title %}{% trans "Background transparent?" %} {{ forms.playerCompat("", "", "", "", "v2 R253+") }}{% endset %}
                        {% set helpText %}{% trans "Should the Widget be shown with a transparent background? Also requires the embedded content to have a transparent background." %}{% endset %}
                        {{ forms.checkbox("transparency", title, module.getOption("transparency"), helpText) }}

                        {% set title %}{% trans "Scale Content?" %}{% endset %}
                        {% set helpText %}{% trans "Should the embedded content be scaled along with the layout?" %}{% endset %}
                        {{ forms.checkbox("scaleContent", title, module.getOption("scaleContent"), helpText) }}

                        {% set title %}{% trans "Preload?" %} {{ forms.playerCompat("v2 R207+") }}{% endset %}
                        {% set helpText %}{% trans "Should this Widget be loaded entirely off screen so that it is ready when shown? Dynamic content will start running off screen." %}{% endset %}
                        {{ forms.checkbox("isPreNavigate", title, module.getOption("isPreNavigate"), helpText) }}
                    </div>

                    <div class="tab-pane" id="htmlTab">
                        <div class="form-content-title row">
                            <h4 class="col-6 text-left">{% trans "HTML to Embed" %}</h4>
                            <div class="col-6 text-right">
                                <input type="checkbox" class="bootstrap-switch-target" id="embedHtml_advanced" name="embedHtml_advanced" {% if module.getOption("embedHtml_advanced", 0) == 1 %}checked{% endif %} 
                                    data-size="small" 
                                    data-label-text="{% trans "Visual editor" %}" 
                                    data-label-width="80px" 
                                    data-on-text="{% trans "On" %}" 
                                    data-off-text="{% trans "Off" %}">
                            </div>
                        </div>

                        <div class="editor-messages">
                            {% set simpleTextEditorMessage %}
                                {% trans "Enter text or HTML in the box below." %}<br>
                            {% endset %}
                            {{ forms.message(simpleTextEditorMessage, 'embedHtml-advanced-editor-hide inline-editor-hide') }}

                            {# Layout Designer messages #}
                            {% set layoutDesignerMessage %}
                                {% trans "Enter text to display using the inline editor which can be opened by clicking in the preview on the left." %}
                                {% trans "When using the inline editor Shift+Enter will drop a single line. Enter alone starts a new paragraph." %}
                            {% endset %}
                            {{ forms.message(layoutDesignerMessage, 'layout-designer-message inline-editor-show') }}

                            {# Playlist Editor messages #}
                            {% set playlistEditorMessage %}
                                {% trans "Enter the text to display. The red rectangle reflects the size of the region you are editing." %}
                                {% trans "Shift+Enter will drop a single line. Enter alone starts a new paragraph." %}
                            {% endset %}
                            {{ forms.message(playlistEditorMessage, 'playlist-editor-message embedHtml-advanced-editor-show') }}
                        </div>

                        {{ forms.textarea("embedHtml", "", module.getRawNode('embedHtml'), "", "inline-editor-hide", "", 10) }}
                    </div>

                    <div class="tab-pane" id="customStyleSheetTab">
                        <div class="form-content-title">
                            <h4>{% trans "Custom Style Sheets" %}</h4>
                        </div>
                        
                        {{ forms.textarea("embedStyle", "", module.getRawNode('embedStyle'), "", "", "", 10) }}
                    </div>

                    <div class="tab-pane" id="headContentTab">
                        <div class="form-content-title">
                            <h4>{% trans "HEAD content to Embed" %}</h4>
                        </div>

                        {% set helpText %}{% trans "HEAD content to Embed (including script tags)" %}{% endset %}
                        {{ forms.textarea("embedScript", "", module.getRawNode('embedScript'), helpText, "", "", 10) }}
                    </div>

                </div>
            </form>
        </div>
    </div>
{% endblock %}