RSS Git Download  Clone
Raw Blame History
{% extends 'layout-page.twig' %}

{% set page = 'files' %}

{% block title %}P3X GitList{% endblock %}

{% block content %}

    {% embed 'breadcrumb.twig' with {breadcrumbs: breadcrumbs} %}

        {% block left %}
            {% if results %}
                <span class="label label-info">File: {{ results | length }}</span>
            {% endif %}
        {%  endblock %}

    {% endembed %}


    {% if results %}

        <div class="p3x-gitlist-overlay">
            <div>
                <i class="fas fa-cog fa-spin fa-4x"></i>
            </div>
            <br/>
            <div>
                Hang on, we are loading a big search...
            </div>
        </div>

        {% for result in results %}

            <div class="panel panel-default p3x-gitlist-file-fragment-panel" data-index="{{ loop.index0 }}" data-mode="{{ result.type }}">
                <div class="panel-heading">
                    <table style="width: 100%; background-color: transparent;" id="p3x-gitlilst-file-fragment-heading-table-{{ loop.index0 }}">
                        <tr>
                            <td>
                                <span class="far fa-file-alt"></span>&nbsp;&nbsp;<a href="{{ path('blob', {repo: repo, branch: branch, file: result.file, commitishPath: branch ~ '/' ~ result.file}) }}&codemirror=1&query={{ search_query }}#L{{ result.line }}">{{ result.file }}</a> on line {{ result.line }}
                            </td>
                            <td style="text-align: right;" class="p3x-gitlist-button">

                                <button class="btn btn-sm btn-primary" id="p3x-gitlilst-file-fragment-heading-button-edit-{{ loop.index0 }}" data-url="{{ path('blob', {repo: repo, branch: branch, file: result.file, commitishPath: branch ~ '/' ~ result.file}) }}&codemirror=1&query={{ search_query }}#L{{ result.line }}" style=" text-transform: capitalize;">
                                    <span class="fas fa-edit"></span>&nbsp; Edit
                                </button>
                                &nbsp;&nbsp;
                                <button class="btn btn-sm btn-primary" id="p3x-gitlilst-file-fragment-heading-button-codemirror-{{ loop.index0 }}" style=" text-transform: capitalize;">
                                    <span class="fas fa-eye"></span>&nbsp; {{ result.type }}
                                </button>
                            </td>
                        </tr>
                    </table>

                </div>
                <div class="panel-body">
                    <div class="p3x-gitlist-file-fragment-text" id="p3x-gitlist-file-fragment-text-{{ loop.index0 }}">{{ result.match }}</div>
                    <textarea class="hidden" id="p3x-gitlist-file-fragment-codemirror-{{ loop.index0 }}">{{ result.match }}</textarea>
                </div>

            </div>
        {% endfor %}
    {% else %}
        <h4>
            No result.
        </h4>
    {% endif %}


{% endblock %}