feat: open file option on preview

pull/1515/head
Ramires Viana 2021-08-06 15:05:32 +00:00 committed by Oleg Lobanov
parent c63cc5a2d2
commit 76add9e527
3 changed files with 55 additions and 7 deletions

View File

@ -205,6 +205,34 @@ main .spinner .bounce2 {
height: 100%; height: 100%;
} }
#previewer .preview .info {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 1.5em;
color: #fff;
}
#previewer .preview .info .title {
margin-bottom: 1em;
}
#previewer .preview .info .title i {
display: block;
margin-bottom: .1em;
font-size: 4em;
}
#previewer .preview .info .button {
display: inline-block;
}
#previewer .preview .info .button:hover {
background-color: rgba(255, 255, 255, 0.2)
}
#previewer .preview .info .button i {
display: block;
margin-bottom: 4px;
font-size: 1.3em;
}
#previewer .pdf { #previewer .pdf {
width: 100%; width: 100%;
height: 100%; height: 100%;

View File

@ -63,7 +63,8 @@
"size": "Size", "size": "Size",
"sortByLastModified": "Sort by last modified", "sortByLastModified": "Sort by last modified",
"sortByName": "Sort by name", "sortByName": "Sort by name",
"sortBySize": "Sort by size" "sortBySize": "Sort by size",
"noPreview": "Preview is not available for this file."
}, },
"help": { "help": {
"click": "select file or directory", "click": "select file or directory",

View File

@ -89,12 +89,31 @@
class="pdf" class="pdf"
:data="raw" :data="raw"
></object> ></object>
<a v-else-if="req.type == 'blob'" :href="downloadUrl"> <div v-else-if="req.type == 'blob'" class="info">
<h2 class="message"> <div class="title">
{{ $t("buttons.download") }} <i class="material-icons">feedback</i>
<i class="material-icons">file_download</i> {{ $t("files.noPreview") }}
</h2> </div>
</a> <div>
<a target="_blank" :href="downloadUrl" class="button button--flat">
<div>
<i class="material-icons">file_download</i
>{{ $t("buttons.download") }}
</div>
</a>
<a
target="_blank"
:href="downloadUrl + '&inline=true'"
class="button button--flat"
v-if="!req.isDir"
>
<div>
<i class="material-icons">open_in_new</i
>{{ $t("buttons.openFile") }}
</div>
</a>
</div>
</div>
</div> </div>
</template> </template>