Files
huly-platform/plugins/card-resources/src/components/settings/view/ViewSettingButton.svelte
T
2026-03-29 15:49:08 +05:00

68 lines
2.0 KiB
Svelte

<!--
// Copyright © 2025 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 { ButtonIcon, closeTooltip, showPopup } from '@hcengineering/ui'
import view, { Viewlet } from '@hcengineering/view'
import { Data } from '@hcengineering/core'
import { AttributeConfig, Config } from '@hcengineering/view-resources'
import ViewOptionsButton from './ViewOptionsButton.svelte'
import ViewletSetting from './ViewSetting.svelte'
export let kind: 'primary' | 'secondary' | 'tertiary' | 'negative' = 'secondary'
export let viewlet: Data<Viewlet> | undefined = undefined
export let disabled: boolean = false
const dispatch = createEventDispatcher()
let btn: HTMLButtonElement
let pressed: boolean = false
function clickHandler (): void {
pressed = true
closeTooltip()
showPopup(
ViewletSetting,
{ viewlet },
btn,
() => {
pressed = false
},
(result: (Config | AttributeConfig)[]) => {
dispatch('save', result)
}
)
}
</script>
{#if viewlet}
{#if viewlet?.viewOptions !== undefined}
<ViewOptionsButton {viewlet} {kind} />
{/if}
<ButtonIcon
icon={view.icon.Configure}
{disabled}
{kind}
size={'small'}
{pressed}
tooltip={{ label: view.string.CustomizeView, direction: 'bottom' }}
dataId={'btn-viewSetting'}
bind:element={btn}
on:click={clickHandler}
/>
{/if}