platform/plugins/view-resources/src/components/UpDownNavigator.svelte

49 lines
1.3 KiB
Svelte
Raw Normal View History

<script lang="ts">
import { Doc } from '@hcengineering/core'
2023-01-14 10:54:54 +00:00
import ui, {
Button,
IconNavPrev,
IconDownOutline,
IconUpOutline,
panelstore,
showPanel,
closeTooltip
} from '@hcengineering/ui'
import { tick } from 'svelte'
import { select } from '../actionImpl'
import { focusStore } from '../selection'
export let element: Doc
async function next (evt: Event, pn: boolean): Promise<void> {
select(evt, pn ? 1 : -1, element, 'vertical')
await tick()
if ($focusStore.focus !== undefined && $panelstore.panel !== undefined) {
2022-04-29 05:27:17 +00:00
showPanel(
$panelstore.panel.component,
$focusStore.focus._id,
$focusStore.focus._class,
$panelstore.panel?.element ?? 'content',
$panelstore.panel.rightSection
)
}
}
function goBack () {
closeTooltip()
history.back()
}
2022-04-29 05:27:17 +00:00
$: select(undefined, 0, element, 'vertical')
</script>
2022-04-29 05:27:17 +00:00
<Button icon={IconDownOutline} kind={'secondary'} size={'medium'} on:click={(evt) => next(evt, true)} />
<Button icon={IconUpOutline} kind={'secondary'} size={'medium'} on:click={(evt) => next(evt, false)} />
<Button
2023-01-14 10:54:54 +00:00
showTooltip={{ label: ui.string.Back, direction: 'bottom' }}
icon={IconNavPrev}
kind={'secondary'}
size={'medium'}
on:click={goBack}
/>