FileManager.vue 33.9 KB
Newer Older
1
<template lang="pug">
2
q-layout.fileman(view='hHh lpR lFr', container)
3 4 5 6 7
  q-header.card-header
    q-toolbar(dark)
      q-icon(name='img:/_assets/icons/fluent-folder.svg', left, size='md')
      span {{t(`fileman.title`)}}
    q-toolbar(dark)
8 9 10
      q-btn.q-mr-sm.acrylic-btn(
        flat
        color='white'
11 12
        :label='commonStore.locale'
        :aria-label='commonStore.locale'
13 14
        style='height: 40px;'
        )
15
        locale-selector-menu
16 17 18 19 20 21 22
      q-input(
        dark
        v-model='state.search'
        standout='bg-white text-dark'
        dense
        ref='searchField'
        style='width: 100%;'
23
        :label='t(`fileman.searchFolder`)'
24
        :debounce='500'
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
        )
        template(v-slot:prepend)
          q-icon(name='las la-search')
        template(v-slot:append)
          q-icon.cursor-pointer(
            name='las la-times'
            @click='state.search=``'
            v-if='state.search.length > 0'
            :color='$q.dark.isActive ? `blue` : `grey-4`'
            )
    q-toolbar(dark)
      q-space
      q-btn(
        flat
        dense
40 41
        no-caps
        color='red-3'
42 43 44 45 46
        :aria-label='t(`common.actions.close`)'
        icon='las la-times'
        @click='close'
        )
        q-tooltip(anchor='bottom middle', self='top middle') {{t(`common.actions.close`)}}
47
  q-drawer.fileman-left(:model-value='true', :width='350')
48 49 50 51
    q-scroll-area(
      :thumb-style='thumbStyle'
      :bar-style='barStyle'
      style='height: 100%;'
52
      )
53 54 55 56 57 58 59 60 61 62
      .q-px-md.q-pb-sm
        tree(
          ref='treeComp'
          :nodes='state.treeNodes'
          :roots='state.treeRoots'
          v-model:selected='state.currentFolderId'
          @lazy-load='treeLazyLoad'
          :use-lazy-load='true'
          @context-action='treeContextAction'
          :display-mode='state.displayMode'
63
        )
64 65 66 67 68 69 70 71 72
  q-drawer.fileman-right(:model-value='$q.screen.gt.md', :width='350', side='right')
    q-scroll-area(
      :thumb-style='thumbStyle'
      :bar-style='barStyle'
      style='height: 100%;'
      )
      .q-pa-md
        template(v-if='currentFileDetails')
          q-img.rounded-borders.q-mb-md(
73
            :src='currentFileDetails.thumbnail'
74 75 76 77
            width='100%'
            fit='cover'
            :ratio='16/10'
            no-spinner
78
          )
79 80 81 82 83
          .fileman-details-row(
            v-for='item of currentFileDetails.items'
            )
            label {{item.label}}
            span {{item.value}}
84 85 86 87 88 89 90 91 92 93
          template(v-if='insertMode')
            q-separator.q-my-md
            q-btn.full-width(
              @click='insertItem()'
              :label='t(`common.actions.insert`)'
              color='primary'
              icon='las la-plus-circle'
              push
              padding='sm'
              )
94
  q-page-container
95
    q-page.fileman-center.column
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 133 134 135
      //- TOOLBAR -----------------------------------------------------
      q-toolbar.fileman-toolbar
        template(v-if='state.isUploading')
          .fileman-progressbar
            div(:style='`width: ` + state.uploadPercentage + `%`') {{state.uploadPercentage}}%
          q-btn.acrylic-btn.q-ml-sm(
            flat
            dense
            no-caps
            color='negative'
            :aria-label='t(`common.actions.cancel`)'
            icon='las la-square'
            @click='uploadCancel'
            v-if='state.uploadPercentage < 100'
            )
        template(v-else)
          q-space
          q-btn.q-mr-sm(
            flat
            dense
            no-caps
            color='grey'
            :aria-label='t(`fileman.viewOptions`)'
            icon='las la-th-list'
            @click=''
            )
            q-tooltip(anchor='bottom middle', self='top middle') {{t(`fileman.viewOptions`)}}
            q-menu(
              transition-show='jump-down'
              transition-hide='jump-up'
              anchor='bottom right'
              self='top right'
              )
              q-card.q-pa-sm
                .text-center
                  small.text-grey {{t(`fileman.viewOptions`)}}
                q-list(dense)
                  q-separator.q-my-sm
                  q-item(clickable)
                    q-item-section(side)
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
                      q-icon(name='las la-list', color='grey', size='xs')
                    q-item-section.q-pr-sm Browse using...
                    q-item-section(side)
                      q-icon(name='las la-angle-right', color='grey', size='xs')
                    q-menu(
                      anchor='top end'
                      self='top start'
                      )
                      q-list.q-pa-sm(dense)
                        q-item(clickable, @click='state.displayMode = `path`')
                          q-item-section(side)
                            q-icon(
                              :name='state.displayMode === `path` ? `las la-check-circle` : `las la-circle`'
                              :color='state.displayMode === `path` ? `positive` : `grey`'
                              size='xs'
                              )
                          q-item-section.q-pr-sm Browse Using Paths
                        q-item(clickable, @click='state.displayMode = `title`')
                          q-item-section(side)
                            q-icon(
                              :name='state.displayMode === `title` ? `las la-check-circle` : `las la-circle`'
                              :color='state.displayMode === `title` ? `positive` : `grey`'
                              size='xs'
                              )
                          q-item-section.q-pr-sm Browse Using Titles
161
                  q-item(clickable, @click='state.isCompact = !state.isCompact')
162
                    q-item-section(side)
163 164 165 166 167
                      q-icon(
                        :name='state.isCompact ? `las la-check-square` : `las la-stop`'
                        :color='state.isCompact ? `positive` : `grey`'
                        size='xs'
                      )
168
                    q-item-section.q-pr-sm Compact List
169
                  q-item(clickable, @click='state.shouldShowFolders = !state.shouldShowFolders')
170
                    q-item-section(side)
171 172 173 174 175
                      q-icon(
                        :name='state.shouldShowFolders ? `las la-check-square` : `las la-stop`'
                        :color='state.shouldShowFolders ? `positive` : `grey`'
                        size='xs'
                      )
176 177 178 179 180 181 182 183
                    q-item-section.q-pr-sm Show Folders
          q-btn.q-mr-sm(
            flat
            dense
            no-caps
            color='grey'
            :aria-label='t(`common.actions.refresh`)'
            icon='las la-redo-alt'
184
            @click='reloadFolder(state.currentFolderId)'
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
            )
            q-tooltip(anchor='bottom middle', self='top middle') {{t(`common.actions.refresh`)}}
          q-separator.q-mr-sm(inset, vertical)
          q-btn.q-mr-sm(
            flat
            dense
            no-caps
            color='blue'
            :label='t(`common.actions.new`)'
            :aria-label='t(`common.actions.new`)'
            icon='las la-plus-circle'
            @click=''
            )
            new-menu(
              :hide-asset-btn='true'
              :show-new-folder='true'
              @new-folder='() => newFolder(state.currentFolderId)'
202 203
              @new-page='() => close()'
              :base-path='folderPath'
204 205 206 207 208 209 210 211 212 213 214
              )
          q-btn(
            flat
            dense
            no-caps
            color='positive'
            :label='t(`common.actions.upload`)'
            :aria-label='t(`common.actions.upload`)'
            icon='las la-cloud-upload-alt'
            @click='uploadFile'
            )
215 216 217 218 219 220 221

      .row(style='flex: 1 1 100%;')
        .col
          q-scroll-area(
            :thumb-style='thumbStyle'
            :bar-style='barStyle'
            style='height: 100%;'
222
            )
223 224 225 226 227 228
            .fileman-loadinglist(v-if='state.fileListLoading')
              q-spinner.q-mr-sm(color='primary', size='64px', :thickness='1')
              span.text-primary Fetching folder contents...
            .fileman-emptylist(v-else-if='files.length < 1')
              img(src='/_assets/icons/carbon-copy-empty-box.svg')
              span This folder is empty.
229 230 231 232 233 234 235 236 237 238 239
            q-list.fileman-filelist(
              v-else
              :class='state.isCompact && `is-compact`'
              )
              q-item(
                v-for='item of files'
                :key='item.id'
                clickable
                active-class='active'
                :active='item.id === state.currentFileId'
                @click.native='selectItem(item)'
240
                @dblclick.native='doubleClickItem(item)'
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
                )
                q-item-section.fileman-filelist-icon(avatar)
                  q-icon(:name='item.icon', :size='state.isCompact ? `md` : `xl`')
                q-item-section.fileman-filelist-label
                  q-item-label {{usePathTitle ? item.fileName : item.title}}
                  q-item-label(caption, v-if='!state.isCompact') {{item.caption}}
                q-item-section.fileman-filelist-side(side, v-if='item.side')
                  .text-caption {{item.side}}
                //- RIGHT-CLICK MENU
                q-menu(
                  touch-position
                  context-menu
                  auto-close
                  transition-show='jump-down'
                  transition-hide='jump-up'
                  )
                  q-card.q-pa-sm
                    q-list(dense, style='min-width: 150px;')
259
                      q-item(clickable, v-if='insertMode && item.type !== `folder`', @click='insertItem(item)')
260 261 262
                        q-item-section(side)
                          q-icon(name='las la-plus-circle', color='primary')
                        q-item-section {{ t(`common.actions.insert`) }}
263
                      q-item(clickable, v-if='item.type === `page`', @click='editItem(item)')
264 265
                        q-item-section(side)
                          q-icon(name='las la-edit', color='orange')
266
                        q-item-section {{ t(`common.actions.edit`) }}
267 268 269
                      q-item(clickable, v-if='item.type !== `folder`', @click='openItem(item)')
                        q-item-section(side)
                          q-icon(name='las la-eye', color='primary')
270
                        q-item-section {{ t(`common.actions.view`) }}
271 272 273 274 275 276 277 278 279
                      template(v-if='item.type === `asset` && item.imageEdit')
                        q-item(clickable)
                          q-item-section(side)
                            q-icon(name='las la-edit', color='orange')
                          q-item-section Edit Image...
                        q-item(clickable)
                          q-item-section(side)
                            q-icon(name='las la-crop', color='orange')
                          q-item-section Resize Image...
280 281 282
                      q-item(clickable, v-if='item.type !== `folder`', @click='copyItemURL(item)')
                        q-item-section(side)
                          q-icon(name='las la-clipboard', color='primary')
283
                        q-item-section {{ t(`common.actions.copyURL`) }}
284
                      q-item(clickable, v-if='item.type !== `folder`', @click='downloadItem(item)')
285 286
                        q-item-section(side)
                          q-icon(name='las la-download', color='primary')
287
                        q-item-section {{ t(`common.actions.download`) }}
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
                      q-item(clickable)
                        q-item-section(side)
                          q-icon(name='las la-copy', color='teal')
                        q-item-section Duplicate...
                      q-item(clickable, @click='renameItem(item)')
                        q-item-section(side)
                          q-icon(name='las la-redo', color='teal')
                        q-item-section Rename...
                      q-item(clickable)
                        q-item-section(side)
                          q-icon(name='las la-arrow-right', color='teal')
                        q-item-section Move to...
                      q-item(clickable, @click='delItem(item)')
                        q-item-section(side)
                          q-icon(name='las la-trash-alt', color='negative')
303
                        q-item-section.text-negative {{ t(`common.actions.delete`) }}
304
  q-footer
305
    q-bar.fileman-path
306
      small.text-caption.text-grey-7 {{folderPath}}
307 308 309 310 311 312 313 314

  input(
    type='file'
    ref='fileIpt'
    multiple
    @change='uploadNewFiles'
    style='display: none'
    )
315 316 317 318
</template>

<script setup>
import { useI18n } from 'vue-i18n'
319
import { computed, defineAsyncComponent, nextTick, onMounted, reactive, ref, toRaw, watch } from 'vue'
320 321 322
import { filesize } from 'filesize'
import { useQuasar } from 'quasar'
import { DateTime } from 'luxon'
323
import { cloneDeep, dropRight, find, findKey, initial, last, nth } from 'lodash-es'
324
import { useRoute, useRouter } from 'vue-router'
325
import gql from 'graphql-tag'
326
import Fuse from 'fuse.js/dist/fuse.basic.esm'
327

328 329 330
import NewMenu from './PageNewMenu.vue'
import Tree from './TreeNav.vue'

331 332
import fileTypes from '../helpers/fileTypes'

333
import { useCommonStore } from 'src/stores/common'
334
import { usePageStore } from 'src/stores/page'
335 336
import { useSiteStore } from 'src/stores/site'

337
import FolderCreateDialog from 'src/components/FolderCreateDialog.vue'
338
import FolderDeleteDialog from 'src/components/FolderDeleteDialog.vue'
339
import FolderRenameDialog from 'src/components/FolderRenameDialog.vue'
340
import LocaleSelectorMenu from 'src/components/LocaleSelectorMenu.vue'
341 342 343 344 345

// QUASAR

const $q = useQuasar()

346 347
// STORES

348
const commonStore = useCommonStore()
349
const pageStore = usePageStore()
350 351
const siteStore = useSiteStore()

352 353 354 355 356
// ROUTER

const router = useRouter()
const route = useRoute()

357 358 359 360 361 362 363 364
// I18N

const { t } = useI18n()

// DATA

const state = reactive({
  loading: 0,
365
  isFetching: false,
366
  search: '',
367 368
  currentFolderId: null,
  currentFileId: null,
369 370
  treeNodes: {},
  treeRoots: [],
371
  displayMode: 'title',
372 373
  isCompact: false,
  shouldShowFolders: true,
374 375 376
  isUploading: false,
  shouldCancelUpload: false,
  uploadPercentage: 0,
377 378
  fileList: [],
  fileListLoading: false
379 380
})

381 382 383 384 385 386 387 388 389 390 391 392 393
const thumbStyle = {
  right: '2px',
  borderRadius: '5px',
  backgroundColor: '#000',
  width: '5px',
  opacity: 0.15
}
const barStyle = {
  backgroundColor: '#FAFAFA',
  width: '9px',
  opacity: 1
}

394 395 396
// REFS

const fileIpt = ref(null)
397
const treeComp = ref(null)
398 399 400

// COMPUTED

401 402
const insertMode = computed(() => siteStore.overlayOpts?.insertMode ?? false)

403 404 405 406 407 408 409 410 411
const folderPath = computed(() => {
  if (!state.currentFolderId) {
    return '/'
  } else {
    const folderNode = state.treeNodes[state.currentFolderId] ?? {}
    return folderNode.folderPath ? `/${folderNode.folderPath}/${folderNode.fileName}/` : `/${folderNode.fileName}/`
  }
})

412 413
const usePathTitle = computed(() => state.displayMode === 'path')

414 415 416 417 418 419 420 421 422 423 424 425 426 427
const filteredFiles = computed(() => {
  if (state.search) {
    const fuse = new Fuse(state.fileList, {
      keys: [
        'title',
        'fileName'
      ]
    })
    return fuse.search(state.search).map(n => n.item)
  } else {
    return state.fileList
  }
})

428
const files = computed(() => {
429 430 431 432 433 434 435
  return filteredFiles.value.filter(f => {
    // -> Show Folders Filter
    if (f.type === 'folder' && !state.shouldShowFolders) {
      return false
    }
    return true
  }).map(f => {
436 437 438
    switch (f.type) {
      case 'folder': {
        f.icon = fileTypes.folder.icon
439
        f.caption = t('fileman.folderChildrenCount', { count: f.children }, f.children)
440 441 442 443 444 445 446
        break
      }
      case 'page': {
        f.icon = fileTypes.page.icon
        f.caption = t(`fileman.${f.pageType}PageType`)
        break
      }
447
      case 'asset': {
448 449
        f.icon = fileTypes[f.fileExt]?.icon ?? ''
        f.side = filesize(f.fileSize, { round: 0 })
450
        f.imageEdit = fileTypes[f.fileExt]?.imageEdit
451
        if (fileTypes[f.fileExt]) {
452
          f.caption = t(`fileman.${f.fileExt}FileType`)
453
        } else {
454
          f.caption = t('fileman.unknownFileType', { type: f.fileExt.toUpperCase() })
455 456 457
        }
        break
      }
458
    }
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
    return f
  })
})

const currentFileDetails = computed(() => {
  if (state.currentFileId) {
    const item = find(state.fileList, ['id', state.currentFileId])
    if (item.type === 'folder') {
      return null
    }

    const items = [
      {
        label: t('fileman.detailsTitle'),
        value: item.title
      }
    ]
476
    let thumbnail = ''
477 478
    switch (item.type) {
      case 'page': {
479
        thumbnail = '/_assets/illustrations/fileman-page.svg'
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
        items.push({
          label: t('fileman.detailsPageType'),
          value: t(`fileman.${item.pageType}PageType`)
        })
        items.push({
          label: t('fileman.detailsPageEditor'),
          value: item.pageType
        })
        items.push({
          label: t('fileman.detailsPageUpdated'),
          value: DateTime.fromISO(item.updatedAt).toFormat('yyyy-MM-dd \'at\' h:mm ZZZZ')
        })
        items.push({
          label: t('fileman.detailsPageCreated'),
          value: DateTime.fromISO(item.updatedAt).toFormat('yyyy-MM-dd \'at\' h:mm ZZZZ')
        })
        break
      }
498
      case 'asset': {
499
        thumbnail = `/_thumb/${item.id}.webp`
500 501
        items.push({
          label: t('fileman.detailsAssetType'),
502
          value: fileTypes[item.fileExt] ? t(`fileman.${item.fileExt}FileType`) : t('fileman.unknownFileType', { type: item.fileExt.toUpperCase() })
503 504 505 506 507 508 509 510 511
        })
        items.push({
          label: t('fileman.detailsAssetSize'),
          value: filesize(item.fileSize)
        })
        break
      }
    }
    return {
512
      thumbnail,
513 514 515 516 517 518 519 520 521
      items
    }
  } else {
    return null
  }
})

// WATCHERS

522
watch(() => state.currentFolderId, async (newValue) => {
523
  await loadTree({ parentId: newValue })
524 525 526 527 528 529 530 531
})

// METHODS

function close () {
  siteStore.overlay = null
}

532 533 534 535 536 537 538 539
function insertItem (item) {
  if (!item) {
    item = find(state.fileList, ['id', state.currentFileId])
  }
  EVENT_BUS.emit('insertAsset', toRaw(item))
  close()
}

540 541
async function treeLazyLoad (nodeId, isCurrent, { done, fail }) {
  await loadTree({ parentId: nodeId, types: isCurrent ? null : ['folder'] })
542 543 544
  done()
}

545
async function loadTree ({ parentId = null, parentPath = null, types, initLoad = false }) {
546 547
  if (state.isFetching) { return }
  state.isFetching = true
548 549 550 551 552 553 554 555
  if (!parentId) {
    parentId = null
  }
  if (parentId === state.currentFolderId) {
    state.fileListLoading = true
    state.currentFileId = null
    state.fileList = []
  }
556 557 558 559 560 561
  try {
    const resp = await APOLLO_CLIENT.query({
      query: gql`
        query loadTree (
          $siteId: UUID!
          $parentId: UUID
562
          $parentPath: String
563
          $types: [TreeItemType]
564 565
          $includeAncestors: Boolean
          $includeRootFolders: Boolean
566 567 568 569
        ) {
          tree (
            siteId: $siteId
            parentId: $parentId
570
            parentPath: $parentPath
571
            types: $types
572 573
            includeAncestors: $includeAncestors
            includeRootFolders: $includeRootFolders
574 575
          ) {
            __typename
576 577 578 579
            id
            folderPath
            fileName
            title
580 581
            ... on TreeItemFolder {
              childrenCount
582
              isAncestor
583 584 585 586
            }
            ... on TreeItemPage {
              createdAt
              updatedAt
587
              editor
588 589 590 591 592
            }
            ... on TreeItemAsset {
              createdAt
              updatedAt
              fileSize
593 594
              fileExt
              mimeType
595 596 597 598 599 600 601
            }
          }
        }
      `,
      variables: {
        siteId: siteStore.id,
        parentId,
602 603 604 605
        parentPath,
        types,
        includeAncestors: initLoad,
        includeRootFolders: initLoad
606 607 608 609 610 611 612 613 614
      },
      fetchPolicy: 'network-only'
    })
    const items = cloneDeep(resp?.data?.tree)
    if (items?.length > 0) {
      const newTreeRoots = []
      for (const item of items) {
        switch (item.__typename) {
          case 'TreeItemFolder': {
615
            // -> Tree Nodes
616 617 618 619 620
            state.treeNodes[item.id] = {
              folderPath: item.folderPath,
              fileName: item.fileName,
              title: item.title,
              children: state.treeNodes[item.id]?.children ?? []
621
            }
622

623 624
            // -> Set Ancestors / Tree Roots
            if (item.folderPath) {
625 626 627 628 629 630 631 632
              let folderParentId = parentId
              if (!folderParentId) {
                const parentFolderParts = item.folderPath.split('/')
                const parentFolder = find(items, { folderPath: parentFolderParts.length > 1 ? initial(parentFolderParts).join('/') : '', fileName: last(parentFolderParts) })
                folderParentId = parentFolder.id
              }
              if (item.id !== folderParentId && !state.treeNodes[folderParentId]?.children?.includes(item.id)) {
                state.treeNodes[folderParentId]?.children?.push(item.id)
633 634
              }
            } else {
635
              newTreeRoots.push(item.id)
636 637 638
            }

            // -> File List
639
            if (parentId === state.currentFolderId && !item.isAncestor) {
640 641 642 643
              state.fileList.push({
                id: item.id,
                type: 'folder',
                title: item.title,
644
                fileName: item.fileName,
645
                children: item.childrenCount || 0
646 647 648 649 650 651 652 653 654 655
              })
            }
            break
          }
          case 'TreeItemAsset': {
            if (parentId === state.currentFolderId) {
              state.fileList.push({
                id: item.id,
                type: 'asset',
                title: item.title,
656 657 658
                fileExt: item.fileExt,
                fileSize: item.fileSize,
                mimeType: item.mimeType,
659 660
                folderPath: item.folderPath,
                fileName: item.fileName
661 662 663 664 665 666 667 668 669 670 671
              })
            }
            break
          }
          case 'TreeItemPage': {
            if (parentId === state.currentFolderId) {
              state.fileList.push({
                id: item.id,
                type: 'page',
                title: item.title,
                pageType: 'markdown',
672 673 674
                updatedAt: '2022-11-24T18:27:00Z',
                folderPath: item.folderPath,
                fileName: item.fileName
675
              })
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691
            }
            break
          }
        }
      }
      if (newTreeRoots.length > 0) {
        state.treeRoots = newTreeRoots
      }
    }
  } catch (err) {
    $q.notify({
      type: 'negative',
      message: 'Failed to load folder tree.',
      caption: err.message
    })
  }
692 693 694 695 696
  if (parentId === state.currentFolderId) {
    nextTick(() => {
      state.fileListLoading = false
    })
  }
697 698 699
  if (parentId) {
    treeComp.value.setLoaded(parentId)
  }
700
  state.isFetching = false
701 702
}

703 704 705 706 707 708
function treeContextAction (nodeId, action) {
  switch (action) {
    case 'newFolder': {
      newFolder(nodeId)
      break
    }
709 710 711 712
    case 'rename': {
      renameFolder(nodeId)
      break
    }
713 714 715 716
    case 'del': {
      delFolder(nodeId)
      break
    }
717 718 719
  }
}

720 721 722 723
// --------------------------------------
// FOLDER METHODS
// --------------------------------------

724 725 726 727 728 729 730
function newFolder (parentId) {
  $q.dialog({
    component: FolderCreateDialog,
    componentProps: {
      parentId
    }
  }).onOk(() => {
731
    loadTree({ parentId })
732 733 734
  })
}

735 736 737 738 739 740
function renameFolder (folderId) {
  $q.dialog({
    component: FolderRenameDialog,
    componentProps: {
      folderId
    }
741
  }).onOk(async () => {
742
    treeComp.value.resetLoaded()
743 744 745 746 747 748 749 750 751 752 753 754
    // // -> Delete current folder and children from cache
    // const fPath = [state.treeNodes[folderId].folderPath, state.treeNodes[folderId].fileName].filter(p => !!p).join('/')
    // delete state.treeNodes[folderId]
    // for (const [nodeId, node] of Object.entries(state.treeNodes)) {
    //   if (node.folderPath.startsWith(fPath)) {
    //     delete state.treeNodes[nodeId]
    //   }
    // }
    // -> Reload tree
    await loadTree({ parentId: folderId, types: ['folder'], initLoad: true }) // Update tree
    // -> Reload current view (in case current folder is included)
    await loadTree({ parentId: state.currentFolderId })
755 756 757
  })
}

758
function delFolder (folderId, mustReload = false) {
759 760 761 762 763 764 765 766 767 768 769 770 771
  $q.dialog({
    component: FolderDeleteDialog,
    componentProps: {
      folderId,
      folderName: state.treeNodes[folderId].title
    }
  }).onOk(() => {
    for (const nodeId in state.treeNodes) {
      if (state.treeNodes[nodeId].children.includes(folderId)) {
        state.treeNodes[nodeId].children = state.treeNodes[nodeId].children.filter(c => c !== folderId)
      }
    }
    delete state.treeNodes[folderId]
772 773 774 775
    if (state.treeRoots.includes(folderId)) {
      state.treeRoots = state.treeRoots.filter(n => n !== folderId)
    }
    if (mustReload) {
776
      loadTree({ parentId: state.currentFolderId })
777
    }
778 779 780 781
  })
}

function reloadFolder (folderId) {
782
  loadTree({ parentId: folderId })
783 784 785
  treeComp.value.resetLoaded()
}

786 787 788 789 790 791 792 793 794 795 796 797 798 799 800
// PAGE METHODS
// --------------------------------------

function delPage (pageId, pageName) {
  $q.dialog({
    component: defineAsyncComponent(() => import('src/components/PageDeleteDialog.vue')),
    componentProps: {
      pageId,
      pageName
    }
  }).onOk(() => {
    loadTree(state.currentFolderId, null)
  })
}

801 802 803
// --------------------------------------
// UPLOAD METHODS
// --------------------------------------
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827

function uploadFile () {
  fileIpt.value.click()
}

async function uploadNewFiles () {
  if (!fileIpt.value.files?.length) {
    return
  }

  state.isUploading = true
  state.uploadPercentage = 0

  state.loading++

  nextTick(() => {
    setTimeout(async () => {
      try {
        const totalFiles = fileIpt.value.files.length
        let idx = 0
        for (const fileToUpload of fileIpt.value.files) {
          idx++
          state.uploadPercentage = totalFiles > 1 ? Math.round(idx / totalFiles * 100) : 90
          const resp = await APOLLO_CLIENT.mutate({
828 829 830
            context: {
              uploadMode: true
            },
831 832
            mutation: gql`
              mutation uploadAssets (
833 834 835
                $folderId: UUID
                $locale: String
                $siteId: UUID
836 837 838
                $files: [Upload!]!
              ) {
                uploadAssets (
839 840
                  folderId: $folderId
                  locale: $locale
841 842 843 844 845 846 847 848 849 850 851
                  siteId: $siteId
                  files: $files
                ) {
                  operation {
                    succeeded
                    message
                  }
                }
              }
            `,
            variables: {
852
              folderId: state.currentFolderId,
853
              siteId: siteStore.id,
854
              locale: 'en', // TODO: use current locale
855 856 857 858 859 860 861 862
              files: [fileToUpload]
            }
          })
          if (!resp?.data?.uploadAssets?.operation?.succeeded) {
            throw new Error(resp?.data?.uploadAssets?.operation?.message || 'An unexpected error occured.')
          }
        }
        state.uploadPercentage = 100
863
        loadTree({ parentId: state.currentFolderId })
864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889
        $q.notify({
          type: 'positive',
          message: t('fileman.uploadSuccess')
        })
      } catch (err) {
        $q.notify({
          type: 'negative',
          message: 'Failed to upload file.',
          caption: err.message
        })
      }
      state.loading--
      fileIpt.value.value = null
      setTimeout(() => {
        state.isUploading = false
        state.uploadPercentage = 0
      }, 1500)
    }, 400)
  })
}

function uploadCancel () {
  state.isUploading = false
  state.uploadPercentage = 0
}

890 891 892 893
// --------------------------------------
// ITEM LIST ACTIONS
// --------------------------------------

894 895 896 897 898 899 900 901 902
function selectItem (item) {
  if (item.type === 'folder') {
    state.currentFolderId = item.id
    treeComp.value.setOpened(item.id)
  } else {
    state.currentFileId = item.id
  }
}

903 904 905 906 907 908 909 910
function doubleClickItem (item) {
  if (insertMode.value) {
    insertItem(item)
  } else {
    openItem(item)
  }
}

911
function openItem (item) {
912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938
  switch (item.type) {
    case 'folder': {
      return
    }
    case 'page': {
      const pagePath = item.folderPath ? `${item.folderPath}/${item.fileName}` : item.fileName
      router.push(`/${pagePath}`)
      close()
      break
    }
    case 'asset': {
      // TODO: Open asset
      close()
      break
    }
  }
}

async function copyItemURL (item) {
  try {
    switch (item.type) {
      case 'page': {
        const pagePath = item.folderPath ? `${item.folderPath}/${item.fileName}` : item.fileName
        await navigator.clipboard.writeText(`${window.location.origin}/${pagePath}`)
        break
      }
      case 'asset': {
939 940
        const assetPath = item.folderPath ? `${item.folderPath}/${item.fileName}` : item.fileName
        await navigator.clipboard.writeText(`${window.location.origin}/${assetPath}`)
941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959
        break
      }
      default: {
        throw new Error('Invalid Item Type')
      }
    }
    $q.notify({
      type: 'positive',
      message: t('fileman.copyURLSuccess')
    })
  } catch (err) {
    $q.notify({
      type: 'negative',
      message: 'Failed to copy URL to clipboard.',
      caption: err.message
    })
  }
}

960 961 962 963 964 965 966 967 968
async function editItem (item) {
  router.push(item.folderPath ? `/_edit/${item.folderPath}/${item.fileName}` : `/_edit/${item.fileName}`)
  close()
}

function downloadItem (item) {

}

969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986
function renameItem (item) {
  console.info(item)
  switch (item.type) {
    case 'folder': {
      renameFolder(item.id)
      break
    }
    case 'page': {
      // TODO: Rename page
      break
    }
    case 'asset': {
      // TODO: Rename asset
      break
    }
  }
}

987 988 989 990 991 992
function delItem (item) {
  switch (item.type) {
    case 'folder': {
      delFolder(item.id, true)
      break
    }
993 994 995 996
    case 'page': {
      delPage(item.id, item.title)
      break
    }
997
  }
998 999 1000 1001
}

// MOUNTED

1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
onMounted(async () => {
  const pathParts = pageStore.path.split('/')
  const parentPath = initial(pathParts).join('/')

  await loadTree({
    parentPath,
    initLoad: true
  })

  // -> Open tree up to current folder
  const folderFolderPath = dropRight(pathParts, 2).join('/')
  const folderFileName = nth(pathParts, -2)

  for (const [id, node] of Object.entries(state.treeNodes)) {
    if (parentPath.startsWith(node.folderPath ? `${node.folderPath}/${node.fileName}` : node.fileName)) {
      treeComp.value.setOpened(id)
    }
  }

  // -> Switch to current folder (from page path)
  const currentNodeId = findKey(state.treeNodes, n => n.folderPath === folderFolderPath && n.fileName === folderFileName)
  if (currentNodeId) {
    state.currentFolderId = currentNodeId
  }
1026 1027
})

1028 1029 1030 1031
</script>

<style lang="scss">
.fileman {
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
  &-left {
    @at-root .body--light & {
      background-color: $blue-grey-1;
    }
    @at-root .body--dark & {
      background-color: $dark-4;
    }
  }

  &-center {
1042

1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
    @at-root .body--light & {
      background-color: #FFF;
    }
    @at-root .body--dark & {
      background-color: $dark-6;
    }
  }

  &-right {
    @at-root .body--light & {
      background-color: $grey-1;
    }
    @at-root .body--dark & {
      background-color: $dark-5;
    }
  }

  &-toolbar {
    @at-root .body--light & {
      background-color: $grey-1;
    }
    @at-root .body--dark & {
      background-color: $dark-5;
    }
  }

  &-path {
    @at-root .body--light & {
      background-color: $blue-grey-1 !important;
    }
    @at-root .body--dark & {
      background-color: $dark-4 !important;
    }
  }

1078 1079 1080 1081
  &-main {
    height: 100%;
  }

1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
  &-loadinglist {
    padding: 16px;
    font-style: italic;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    > span {
      margin-top: 16px;
    }
  }

1095 1096 1097
  &-emptylist {
    padding: 16px;
    font-style: italic;
1098 1099
    font-size: 1.5em;
    font-weight: 300;
1100
    display: flex;
1101 1102
    flex-direction: column;
    justify-content: center;
1103 1104
    align-items: center;

1105 1106 1107 1108 1109
    > img {
      opacity: .25;
      width: 200px;
    }

1110 1111 1112 1113
    @at-root .body--light & {
      color: $grey-6;
    }
    @at-root .body--dark & {
1114 1115 1116 1117 1118
      color: $grey-7;

      > img {
        filter: invert(1);
      }
1119 1120 1121
    }
  }

1122 1123 1124 1125
  &-filelist {
    padding: 8px 12px;

    > .q-item {
1126
      padding: 4px 6px;
1127
      border-radius: 8px;
1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141

      &.active {
        background-color: var(--q-primary);
        color: #FFF;

        .fileman-filelist-label .q-item__label--caption {
          color: rgba(255,255,255,.7);
        }

        .fileman-filelist-side .text-caption {
          color: rgba(255,255,255,.7);
        }
      }
    }
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153

    &.is-compact {
      > .q-item {
        padding: 0 6px;
        min-height: 36px;
      }

      .fileman-filelist-icon {
        padding-right: 6px;
        min-width: 0;
      }
    }
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
  }
  &-details-row {
    display: flex;
    flex-direction: column;
    padding: 5px 0;

    label {
      font-size: .7rem;
      font-weight: 500;

      @at-root .body--light & {
        color: $grey-6;
      }
      @at-root .body--dark & {
        color: $blue-grey-4;
      }
    }
    span {
      font-size: .85rem;

      @at-root .body--light & {
        color: $grey-8;
      }
      @at-root .body--dark & {
        color: $blue-grey-2;
      }
1180
    }
1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236

    & + .fileman-details-row {
      margin-top: 5px;
    }
  }

  &-progressbar {
    width: 100%;
    flex: 1;
    height: 12px;
    border-radius: 3px;

    @at-root .body--light & {
      background-color: $blue-grey-2;
    }
    @at-root .body--dark & {
      background-color: $dark-4 !important;
    }

    > div {
      height: 12px;
      background-color: $positive;
      border-radius: 3px 0 0 3px;
      background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.3) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.3) 75%,
        transparent 75%,
        transparent
      );
      background-size: 50px 50px;
      background-position: 0 0;
      animation: fileman-progress 2s linear infinite;
      box-shadow: 0 0 5px 0 $positive;
      font-size: 9px;
      letter-spacing: 2px;
      font-weight: 700;
      color: #FFF;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      transition: all 1s ease;
    }
  }
}

@keyframes fileman-progress {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -50px -50px;
1237 1238 1239
  }
}
</style>