aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/views/files.rocker.html
blob: 8e75ac20cbee4814187f1300feae06275c9a79a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
@import java.util.ArrayList
@import io.javalin.*
@args (ArrayList files, String path, Boolean isShared, Context ctx)

@css => {
<link href="/css/files.css" rel="stylesheet">
}

@js => {
<script>
    const path = "@path";
    const isShared = "@isShared";
</script>
<script src="/js/imagePreview.js"></script>
<script src="/js/files.js"></script>
}

@layout.template(files.size() + " Files", ctx, css, js) -> {
<div class="drop" id="drop">
    <h2 class="navigation">
        <i class="icon ion-md-home"></i>
        @if (!isShared) {
        @for (int i = 0; i < path.split("/").length - 1; i++) {
        <a href='@(new String(new char[path.split("/").length - i - 1]).replace("\0", "../"))'>@path.split("/")[i]</a>
        <i class='icon ion-ios-arrow-forward'></i>
        }
        @if (path.split("/").length > 0) {
        <a href="">@(path.split("/")[path.split("/").length - 1])</a>
        }
        } else {
        <a href="">@(path.split("/")[path.split("/").length - 1])</a>
        }
    </h2>

    <table id="table">
        <colgroup>
            <col/>
            <col/>
            <col/>
            <col/>
            <col/>
            <col/>
        </colgroup>

        <thead>
        <tr>
            <th data-asc="true"></th>
            <th data-asc="true">Name</th>
            <th data-asc="true">Size</th>
            <th data-asc="true">Last modified</th>
            @if (!isShared) {
            <th data-asc="true">Share</th>
            <th data-asc="true">Download</th>
            <th data-asc="true">Delete</th>
            } else {
            <th></th>
            <th></th>
            <th></th>
            }
        </tr>
        <tr data-href="/../">
            <td></td>
            <td>../</td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
        </tr>
        </thead>

        <tbody>
        @for (String[] fileArray : files) {
        @if (fileArray[3] == "true") {
        <tr data-href="@fileArray[0]">
            } else {
        <tr data-path="@fileArray[0]">
            }

            <!-- TODO: Add more icons (more specific file types) -->
            @if (fileArray[4] == "true") {
            <td>
                <i class="icon ion-md-folder"></i>
            </td>
            } else if (fileArray[3] == "false") {
            <td>
                <i class="icon ion-md-code"></i>
            </td>
            } else {
            <td>
                <i class="icon ion-md-document"></i>
            </td>
            }

            <td>
                @fileArray[0]
            </td>

            <td data-size="@fileArray[5]">
                @fileArray[1]
            </td>

            <td data-date="@fileArray[6]">
                @fileArray[2]
            </td>

            @if (!isShared) {
            <td>
                <button class="share"><i class="icon ion-md-share"></i></button>
            </td>

            <!-- TODO: Fix download of shared files -->
            <td>
                <button class="downloadButton">
                    <a class="download" download="@fileArray[0]" href="@fileArray[0]?raw"><i class="icon ion-md-download"></i></a>
                </button>
            </td>

            <td>
                <button class="delete"><i class="icon ion-md-trash"></i></button>
            </td>
            } else {
            <td></td>
            <td></td>
            <td></td>
            }
        </tr>
        }
        </tbody>
    </table>
</div>
}