123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <style lang="scss" scoped>
- @import '../../styles/_colors.scss';
- .item-move {
- transition: all .25s cubic-bezier(.55,0,.1,1);
- -webkit-transition: all .25s cubic-bezier(.55,0,.1,1);
- }
- div.actions {
- opacity: 0;
- -webkit-transition: opacity 0.1s linear;
- -moz-transition: opacity 0.1s linear;
- -ms-transition: opacity 0.1s linear;
- -o-transition: opacity 0.1s linear;
- transition: opacity 0.1s linear;
- position: absolute;
- top: 0px;
- left: 0px;
- width: 100%;
- height: calc(100% - 6px);
- background: rgba(0, 0, 0, 0.5);
- display: flex;
- justify-content: center;
- align-items: center;
- span {
- padding: 3px;
- &:nth-child(1), &:nth-child(2) {
- align-items: flex-end;
- }
- &:nth-child(1), &:nth-child(3) {
- justify-content: flex-end;
- }
- a {
- width: 30px;
- height: 30px;
- color: white;
- justify-content: center;
- align-items: center;
- display: flex;
- &:before {
- content: '';
- width: 30px;
- height: 30px;
- border: 1px solid white;
- border-radius: 50%;
- position: absolute;
- }
- }
- }
- &.fixed {
- position: relative;
- opacity: 1;
- background: none;
- a {
- width: auto;
- height: auto;
- color: $defaultTextColor;
- &:before {
- display: none;
- }
- }
- }
- }
- </style>
- <style lang="scss">
- .waterfall-item:hover {
- div.actions {
- opacity: 1
- }
- }
- </style>
- <template>
- <Waterfall
- :gutterWidth="10"
- :gutterHeight="4">
- <WaterfallItem v-for="(item, index) in files"
- v-if="showWaterfall && item.thumb"
- :key="index"
- :width="width"
- move-class="item-move">
- <template v-if="isPublic">
- <a :href="`${item.url}`"
- target="_blank">
- <img :src="`${item.thumb}`">
- </a>
- </template>
- <template v-else>
- <img :src="`${item.thumb}`">
- <div v-if="!isPublic"
- :class="{ fixed }"
- class="actions">
- <b-tooltip label="Link"
- position="is-top">
- <a :href="`${item.url}`"
- target="_blank">
- <i class="icon-web-code"/>
- </a>
- </b-tooltip>
- <b-tooltip label="Albums"
- position="is-top">
- <a @click="manageAlbums(item)">
- <i class="icon-interface-window"/>
- </a>
- </b-tooltip>
- <b-tooltip label="Tags"
- position="is-top">
- <a @click="manageTags(item)">
- <i class="icon-ecommerce-tag-c"/>
- </a>
- </b-tooltip>
- <b-tooltip label="Delete"
- position="is-top">
- <a @click="deleteFile(item, index)">
- <i class="icon-editorial-trash-a-l"/>
- </a>
- </b-tooltip>
- </div>
- </template>
- </WaterfallItem>
- </Waterfall>
- </template>
- <script>
- import Waterfall from './waterfall/Waterfall.vue';
- import WaterfallItem from './waterfall/WaterfallItem.vue';
- export default {
- components: {
- Waterfall,
- WaterfallItem
- },
- props: {
- files: {
- type: Array,
- default: null
- },
- fixed: {
- type: Boolean,
- default: false
- },
- isPublic: {
- type: Boolean,
- default: false
- },
- width: {
- type: Number,
- default: 150
- }
- },
- data() {
- return { showWaterfall: true };
- },
- methods: {
- deleteFile(file, index) {
- this.$dialog.confirm({
- title: 'Deleting file',
- message: 'Are you sure you want to <b>delete</b> this file?',
- confirmText: 'Delete File',
- type: 'is-danger',
- hasIcon: true,
- onConfirm: async () => {
- try {
- const response = await this.axios.delete(`${this.$config.baseURL}/file/${file.id}`);
- this.showWaterfall = false;
- this.files.splice(index, 1);
- this.$nextTick(() => {
- this.showWaterfall = true;
- });
- return this.$toast.open(response.data.message);
- } catch (error) {
- return this.$onPromiseError(error);
- }
- }
- });
- }
- }
- };
- </script>
|