platform/plugins/contact-resources/src/components/EditAvatarPopup.svelte
Vyacheslav Tumanov 36bc394e7a
Use logo for workspaces (#4828)
Signed-off-by: Vyacheslav Tumanov <me@slavatumanov.me>
2024-02-29 21:40:00 +07:00

123 lines
3.2 KiB
Svelte

<!--
// Copyright © 2021, 2022 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 { createEventDispatcher } from 'svelte'
import { getResource } from '@hcengineering/platform'
import { Button } from '@hcengineering/ui'
import imageCropper from '@hcengineering/image-cropper'
import presentation from '@hcengineering/presentation'
export let file: Blob
export let lessCrop: boolean = false
let inputRef: HTMLInputElement
const targetMimes = ['image/png', 'image/jpg', 'image/jpeg']
const dispatch = createEventDispatcher()
const CropperP = getResource(imageCropper.component.Cropper)
let cropper: any
function onSelect (e: any) {
const newFile = e.target?.files[0] as File | undefined
if (newFile === undefined || !targetMimes.includes(newFile.type)) {
return
}
file = newFile
e.target.value = null
}
async function onCrop () {
const res = await cropper.crop()
dispatch('close', res)
}
async function remove () {
dispatch('close', null)
}
function selectAnother () {
inputRef.click()
}
</script>
<input style="display: none;" type="file" bind:this={inputRef} on:change={onSelect} accept={targetMimes.join(',')} />
<!-- svelte-ignore a11y-click-events-have-key-events -->
<!-- svelte-ignore a11y-no-static-element-interactions -->
<div
class="overlay"
on:click={() => {
dispatch('close')
}}
/>
<div class="editavatar-container">
{#await CropperP then Cropper}
<div class="cropper">
<Cropper bind:this={cropper} image={file} {lessCrop} />
</div>
<div class="footer">
<Button label={presentation.string.Save} kind={'primary'} size={'large'} on:click={onCrop} />
<div class="mx-3 clear-mins">
<Button label={presentation.string.Change} size={'large'} on:click={selectAnother} />
</div>
<Button label={presentation.string.Remove} size={'large'} on:click={remove} />
</div>
{/await}
</div>
<style lang="scss">
.overlay {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: var(--theme-overlay-color);
touch-action: none;
}
.editavatar-container {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: auto;
width: 75vw;
height: 75vh;
transform: translate(-50%, -50%);
background: var(--theme-popup-color);
border-radius: 1.25rem;
box-shadow: var(--theme-popup-shadow);
display: grid;
grid-template-rows: minmax(min-content, 1fr) auto;
.cropper {
width: inherit;
}
.footer {
display: flex;
flex-direction: row-reverse;
padding: 1rem 1.5rem;
}
}
</style>