{#
/**
 * 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 Display Group" %}
{% endblock %}

{% block formButtons %}
    {% trans "Cancel" %}, XiboDialogClose()
    {% trans "Save" %}, $("#displayGroupEditForm").submit()
{% endblock %}

{% block formFieldActions %}
    [{
    "field": "isDynamic",
    "trigger": "init",
    "value": false,
    "operation": "is:checked",
    "actions": {
    ".dynamic-fields": { "display": "none" }
    }
    },{
    "field": "isDynamic",
    "trigger": "change",
    "value": false,
    "operation": "is:checked",
    "actions": {
    ".dynamic-fields": { "display": "none" }
    }
    },{
    "field": "isDynamic",
    "trigger": "init",
    "value": true,
    "operation": "is:checked",
    "actions": {
    ".dynamic-fields": { "display": "" }
    }
    },{
    "field": "isDynamic",
    "trigger": "change",
    "value": true,
    "operation": "is:checked",
    "actions": {
    ".dynamic-fields": { "display": "" }
    }
    }]
{% endblock %}

{% block callBack %}displayGroupFormOpen{% endblock %}

{% block formHtml %}
    <div class="row">
        <div class="col-md-12">
            <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="#reference" role="tab" data-toggle="tab"><span>{% trans "Reference" %}</span></a></li>
            </ul>
            <form id="displayGroupEditForm" class="XiboForm form-horizontal displayGroupForm" method="put" action="{{ url_for("displayGroup.edit", {"id": displayGroup.displayGroupId}) }}" data-gettag="{{ url_for("tag.getByName") }}">
                <div class="tab-content">
                    <div class="tab-pane active" id="general">

                        {% if currentUser.featureEnabled('folder.view') %}
                            <div class="form-group row">
                                <label class="col-sm-2 control-label">{% trans "Current Folder" %}</label>
                                <div class="col-sm-10" style="padding-top: 7px">
                                    <span id="originalFormFolder"></span>
                                </div>
                            </div>

                            <div class="form-group row">
                                <label class="col-sm-2 control-label">{% trans "Move to Selected Folder:" %}</label>
                                <div class="col-sm-10">
                                    <button type="button" class="btn btn-info" id="select-folder-button" data-toggle="modal" data-target="#folder-tree-form-modal">{% trans "Select Folder" %}</button>
                                    <span id="selectedFormFolder"></span>
                                </div>
                            </div>
                            {{ forms.hidden('folderId', displayGroup.folderId) }}
                        {% endif %}

                        {% set title %}{% trans "Name" %}{% endset %}
                        {% set helpText %}{% trans "The Name for this Display Group" %}{% endset %}
                        {{ forms.input("displayGroup", title, displayGroup.displayGroup , helpText) }}

                        {% set title %}{% trans "Description" %}{% endset %}
                        {% set helpText %}{% trans "A short description of this Display Group" %}{% endset %}
                        {{ forms.input("description", title, displayGroup.description, helpText) }}


                        {% if currentUser.featureEnabled("tag.tagging") %}
                            {% set title %}{% trans "Tags" %}{% endset %}
                            {% set helpText %}{% trans "Tags for this Display Group - Comma separated string of Tags or Tag|Value format. If you choose a Tag that has associated values, they will be shown for selection below." %}{% endset %}
                            {{ forms.inputWithTags("tags", title, displayGroup.getTagString(), helpText, 'tags-with-value') }}

                            <p id="loadingValues" style="margin-left: 17%"></p>

                            {% set title %}{% trans "Tag value" %}{% endset %}
                            {{ forms.dropdown("tagValue", "single", title, "", options, "key", "value") }}

                            <div id="tagValueContainer">
                                {% set title %}{% trans "Tag value" %}{% endset %}
                                {% set helpText %}{% trans "Please provide the value for this Tag and confirm by pressing enter on your keyboard." %}{% endset %}
                                {{ forms.input("tagValueInput", title, "", helpText) }}
                            </div>

                            <div id="tagValueRequired" class="alert alert-info">
                                <p>{% trans "This tag requires a set value, please select one from the Tag value dropdown or provide Tag value in the dedicated field." %}</p>
                            </div>
                        {% endif %}

                        {% set title %}{% trans "Dynamic Group?" %}{% endset %}
                        {% set helpText %}{% trans "Are the members of this group dynamic?" %}{% endset %}
                        {{ forms.checkbox("isDynamic", title, displayGroup.isDynamic, helpText) }}

                        <div class="widget dynamic-fields">
                            <div class="widget-title">{% trans "Displays" %}</div>
                            <div class="widget-body">
                                <div class="FilterDiv card-body" id="Filter">
                                    {% set title %}{% trans "Criteria" %}{% endset %}
                                    {% set helpText %}{% trans "A comma separated set of regular expressions run against the Display name to determine membership." %}{% endset %}
                                    {{ forms.inputWithLogicalOperator("dynamicCriteria", title, displayGroup.dynamicCriteria, helpText, "dynamic-fields", "", "", displayGroup.dynamicCriteriaLogicalOperator) }}

                                    {% if currentUser.featureEnabled("tag.tagging") %}
                                        {% set title %}{% trans "Criteria Tags" %}{% endset %}
                                        {% set exactTagTitle %}{% trans "Exact match?" %}{% endset %}
                                        {% set logicalOperatorTitle %}{% trans "When filtering by multiple Tags, which logical operator should be used?" %}{% endset %}
                                        {% set helpText %}{% trans "A comma separated set of tags run against the Display tag to determine membership." %}{% endset %}
                                        {{ forms.inputWithTags("dynamicCriteriaTags", title, displayGroup.dynamicCriteriaTags, helpText, "dynamic-fields", null, null, "exactTags", exactTagTitle, logicalOperatorTitle, displayGroup.dynamicCriteriaExactTags, displayGroup.dynamicCriteriaTagsLogicalOperator) }}
                                    {% endif %}
                                    {{ forms.hidden("useRegexForName", 1) }}
                                </div>

                                <div class="XiboData card pt-3">
                                    <table id="displayGroupDisplays" class="table table-striped">
                                        <thead>
                                        <tr>
                                            <th>{% trans "ID" %}</th>
                                            <th>{% trans "Display" %}</th>
                                            <th>{% trans "Tags" %}</th>
                                            <th>{% trans "Status" %}</th>
                                            <th>{% trans "Licence" %}</th>
                                        </tr>
                                        </thead>
                                        <tbody>

                                        </tbody>
                                    </table>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="tab-pane" id="reference">
                        {% set title %}{% trans "Reference 1" %}{% endset %}
                        {{ forms.input("ref1", title, displayGroup.ref1) }}

                        {% set title %}{% trans "Reference 2" %}{% endset %}
                        {{ forms.input("ref2", title, displayGroup.ref2) }}

                        {% set title %}{% trans "Reference 3" %}{% endset %}
                        {{ forms.input("ref3", title, displayGroup.ref3) }}

                        {% set title %}{% trans "Reference 4" %}{% endset %}
                        {{ forms.input("ref4", title, displayGroup.ref4) }}

                        {% set title %}{% trans "Reference 5" %}{% endset %}
                        {{ forms.input("ref5", title, displayGroup.ref5) }}
                    </div>
                </div>
            </form>
        </div>
    </div>
{% endblock %}