improve AP resource UI

This commit is contained in:
les
2021-06-25 12:11:45 +02:00
parent afee09f010
commit 14fd416727
3 changed files with 46 additions and 17 deletions

View File

@@ -1,6 +1,10 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
### Unreleased ### Unreleased
- fix AP resource removal
- improve AP resource UI
### 1.0 (alpha) ### 1.0 (alpha)
This release is a complete rewrite of frontend UI and many internals, main changes are: This release is a complete rewrite of frontend UI and many internals, main changes are:

View File

@@ -37,6 +37,9 @@ li {
.v-dialog { .v-dialog {
width: 600px; width: 600px;
max-width: 800px; max-width: 800px;
&.v-dialog--fullscreen {
max-width: 100%;
}
} }
.theme--dark.v-list { .theme--dark.v-list {
@@ -116,4 +119,9 @@ li {
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
display: block; display: block;
}
.cursorPointer {
cursor: pointer;
} }

View File

@@ -64,31 +64,33 @@ v-container#event.pa-0.pa-sm-2
//- resources from fediverse //- resources from fediverse
#resources.mt-1(v-if='settings.enable_federation') #resources.mt-1(v-if='settings.enable_federation')
div.float-right(v-if='!settings.hide_boosts') //- div.float-right(v-if='!settings.hide_boosts')
small.mr-3 🔖 {{event.likes.length}} //- small.mr-3 🔖 {{event.likes.length}}
small {{event.boost.length}}<br/> //- small ✊ {{event.boost.length}}<br/>
v-dialog.showResource#resourceDialog(v-model='showResources' fullscreen v-dialog(v-model='showResources'
width='95vw' fullscreen
destroy-on-close destroy-on-close
@keydown.native.right='$refs.carousel.next()' @keydown.native.right='$refs.carousel.next()'
@keydown.native.left='$refs.carousel.prev()') @keydown.native.left='$refs.carousel.prev()')
v-carousel(:interval='10000' ref='carousel' arrow='always') v-carousel.pa-5(:interval='10000' ref='carousel' hide-delimiters height='100%' show-arrows-on-over)
v-carousel-item(v-for='attachment in selectedResource.data.attachment' :key='attachment.url') v-carousel-item(v-for='attachment in selectedResource.data.attachment'
v-img(:src='attachment.url') v-if='isImg(attachment)'
v-list.mb-1(v-if='settings.enable_resources' v-for='resource in event.resources' dark :key='attachment.url')
v-img(:src='attachment.url' contain max-width='100%' max-height='100%')
v-card#resources.mb-1(v-if='settings.enable_resources' v-for='resource in event.resources'
:key='resource.id' :class='{disabled: resource.hidden}') :key='resource.id' :class='{disabled: resource.hidden}')
v-list-item v-card-subtitle
v-list-title
v-menu(v-if='$auth.user && $auth.user.is_admin' offset-y) v-menu(v-if='$auth.user && $auth.user.is_admin' offset-y)
template(v-slot:activator="{ on, attrs }") template(v-slot:activator="{ on }")
v-btn.mr-2(v-on='on' v-attrs='attrs' color='primary' small icon outlined) v-btn.mr-2(v-on='on' color='primary' small icon)
v-icon mdi-dots-vertical v-icon mdi-dots-vertical
v-list v-list
v-list-item(v-if='!resource.hidden' @click='hideResource(resource, true)') v-list-item(v-if='!resource.hidden' @click='hideResource(resource, true)')
v-list-item-title <v-icon left>mdi-eye-off</v-icon> {{$t('admin.hide_resource')}} v-list-item-title <v-icon left>mdi-eye-off</v-icon> {{$t('admin.hide_resource')}}
v-list-item(v-else @click='hideResource(resource, false)') v-list-item(v-else @click='hideResource(resource, false)')
v-list-item-title <v-icon left>mdi-eye-on</v-icon> {{$t('admin.show_resource')}} v-list-item-title <v-icon left>mdi-eye</v-icon> {{$t('admin.show_resource')}}
v-list-item(@click='deleteResource(resource)') v-list-item(@click='deleteResource(resource)')
v-list-item-title <v-icon left>mdi-delete</v-icon> {{$t('admin.delete_resource')}} v-list-item-title <v-icon left>mdi-delete</v-icon> {{$t('admin.delete_resource')}}
v-list-item(@click='blockUser(resource)') v-list-item(@click='blockUser(resource)')
@@ -97,9 +99,16 @@ v-container#event.pa-0.pa-sm-2
a(:href='resource.data.url || resource.data.context') a(:href='resource.data.url || resource.data.context')
small {{resource.data.published|dateFormat('ddd, D MMMM HH:mm')}} small {{resource.data.published|dateFormat('ddd, D MMMM HH:mm')}}
v-card-text
div.mt-1(v-html='resource_filter(resource.data.content)') div.mt-1(v-html='resource_filter(resource.data.content)')
span.previewImage(@click='showResource(resource)') span(v-for='attachment in resource.data.attachment' :key='attachment.url' @click='showResource(resource)')
img(v-for='img in resource.data.attachment' :src='img.url') audio(v-if='isAudio(attachment)' controls)
source(:src='attachment.url')
v-img.cursorPointer(v-if='isImg(attachment)' :src='attachment.url'
max-height="250px"
max-width="250px"
contain :alt='attachment.name')
//- Next/prev arrow //- Next/prev arrow
.text-center.mt-5.mb-5 .text-center.mt-5.mb-5
@@ -243,6 +252,14 @@ export default {
window.removeEventListener('keydown', this.keyDown) window.removeEventListener('keydown', this.keyDown)
}, },
methods: { methods: {
isImg (attachment) {
const type = attachment.mediaType.split('/')[0]
return type === 'image'
},
isAudio (attachment) {
const type = attachment.mediaType.split('/')[0]
return type === 'audio'
},
keyDown (ev) { keyDown (ev) {
if (ev.altKey || ev.ctrlKey || ev.metaKey || ev.shiftKey) { return } if (ev.altKey || ev.ctrlKey || ev.metaKey || ev.shiftKey) { return }
if (ev.key === 'ArrowRight' && this.event.next) { if (ev.key === 'ArrowRight' && this.event.next) {
@@ -255,7 +272,7 @@ export default {
showResource (resource) { showResource (resource) {
this.showResources = true this.showResources = true
this.selectedResource = resource this.selectedResource = resource
document.getElementById('resourceDialog').focus() // document.getElementById('resourceDialog').focus()
}, },
async hideResource (resource, hidden) { async hideResource (resource, hidden) {
await this.$axios.$put(`/resources/${resource.id}`, { hidden }) await this.$axios.$put(`/resources/${resource.id}`, { hidden })