mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-03 22:38:20 +00:00
148 lines
4.3 KiB
Svelte
148 lines
4.3 KiB
Svelte
<!--
|
|
// Copyright © 2024 Hardcore Engineering Inc.
|
|
//
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License. You may
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
//
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
-->
|
|
<script lang="ts">
|
|
import { AccountRole, Ref, getCurrentAccount, hasAccountRole } from '@hcengineering/core'
|
|
import { type Drive } from '@hcengineering/drive'
|
|
import { createQuery } from '@hcengineering/presentation'
|
|
import { Button, ButtonWithDropdown, IconAdd, IconDropdown, Loading, SelectPopupValueType } from '@hcengineering/ui'
|
|
|
|
import drive from '../plugin'
|
|
import { getFolderIdFromFragment } from '../navigation'
|
|
import { createDrive, createFolder, createFiles } from '../utils'
|
|
|
|
export let currentSpace: Ref<Drive> | undefined
|
|
export let currentFragment: string | undefined
|
|
|
|
const me = getCurrentAccount()
|
|
|
|
const query = createQuery()
|
|
|
|
let loading = true
|
|
let hasDrive = false
|
|
query.query(
|
|
drive.class.Drive,
|
|
{ archived: false, members: me._id },
|
|
(res) => {
|
|
hasDrive = res.length > 0
|
|
loading = false
|
|
},
|
|
{ limit: 1, projection: { _id: 1 } }
|
|
)
|
|
|
|
$: parent = getFolderIdFromFragment(currentFragment ?? '') ?? drive.ids.Root
|
|
|
|
async function handleDropdownItemSelected (res?: SelectPopupValueType['id']): Promise<void> {
|
|
if (res === drive.string.CreateDrive) {
|
|
await handleCreateDrive()
|
|
} else if (res === drive.string.CreateFolder) {
|
|
await handleCreateFolder()
|
|
} else if (res === drive.string.UploadFile) {
|
|
await handleUploadFile()
|
|
}
|
|
}
|
|
|
|
async function handleCreateDrive (): Promise<void> {
|
|
await createDrive()
|
|
}
|
|
|
|
async function handleCreateFolder (): Promise<void> {
|
|
await createFolder(currentSpace, parent, true)
|
|
}
|
|
|
|
async function handleUploadFile (): Promise<void> {
|
|
if (currentSpace !== undefined) {
|
|
inputFile.click()
|
|
}
|
|
}
|
|
|
|
const dropdownItems = hasAccountRole(me, AccountRole.User)
|
|
? [
|
|
{ id: drive.string.CreateDrive, label: drive.string.CreateDrive, icon: drive.icon.Drive },
|
|
{ id: drive.string.CreateFolder, label: drive.string.CreateFolder, icon: drive.icon.Folder },
|
|
{ id: drive.string.UploadFile, label: drive.string.UploadFile, icon: drive.icon.File }
|
|
// { id: drive.string.UploadFolder, label: drive.string.UploadFolder }
|
|
]
|
|
: [
|
|
{ id: drive.string.CreateFolder, label: drive.string.CreateFolder, icon: drive.icon.Folder },
|
|
{ id: drive.string.UploadFile, label: drive.string.UploadFile, icon: drive.icon.File }
|
|
// { id: drive.string.UploadFolder, label: drive.string.UploadFolder }
|
|
]
|
|
|
|
let progress = false
|
|
let inputFile: HTMLInputElement
|
|
|
|
async function fileSelected (): Promise<void> {
|
|
if (currentSpace === undefined) {
|
|
return
|
|
}
|
|
|
|
const list = inputFile.files
|
|
if (list === null || list.length === 0) {
|
|
return
|
|
}
|
|
|
|
progress = true
|
|
|
|
await createFiles(list, currentSpace, parent)
|
|
|
|
inputFile.value = ''
|
|
progress = false
|
|
}
|
|
</script>
|
|
|
|
{#if loading}
|
|
<Loading shrink />
|
|
{:else}
|
|
<input
|
|
bind:this={inputFile}
|
|
multiple
|
|
type="file"
|
|
name="file"
|
|
id="file"
|
|
style="display: none"
|
|
on:change={fileSelected}
|
|
/>
|
|
|
|
<div class="antiNav-subheader">
|
|
{#if hasDrive}
|
|
<ButtonWithDropdown
|
|
icon={IconAdd}
|
|
justify={'left'}
|
|
kind={'primary'}
|
|
label={drive.string.UploadFile}
|
|
mainButtonId={'new-document'}
|
|
dropdownIcon={IconDropdown}
|
|
{dropdownItems}
|
|
disabled={currentSpace === undefined || progress}
|
|
on:click={handleUploadFile}
|
|
on:dropdown-selected={(ev) => {
|
|
void handleDropdownItemSelected(ev.detail)
|
|
}}
|
|
/>
|
|
{:else}
|
|
<Button
|
|
icon={IconAdd}
|
|
label={drive.string.CreateDrive}
|
|
justify={'left'}
|
|
width={'100%'}
|
|
kind={'primary'}
|
|
gap={'large'}
|
|
disabled={progress}
|
|
on:click={handleCreateDrive}
|
|
/>
|
|
{/if}
|
|
</div>
|
|
{/if}
|