mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 19:46:36 +00:00
73 lines
1.7 KiB
Svelte
73 lines
1.7 KiB
Svelte
<script>
|
|
/**
|
|
* @event {null} cancel
|
|
*/
|
|
|
|
/**
|
|
* Override the total items selected text
|
|
* @type {(totalSelected: number) => string}
|
|
*/
|
|
export let formatTotalSelected = (totalSelected) =>
|
|
`${totalSelected} item${totalSelected === 1 ? "" : "s"} selected`;
|
|
|
|
import { onMount, getContext, createEventDispatcher } from "svelte";
|
|
import Button from "../Button/Button.svelte";
|
|
|
|
let batchSelectedIds = [];
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
$: showActions = batchSelectedIds.length > 0;
|
|
|
|
const ctx = getContext("DataTable");
|
|
|
|
function cancel() {
|
|
const shouldContinue = dispatch("cancel", null, { cancelable: true });
|
|
|
|
if (shouldContinue) {
|
|
ctx.resetSelectedRowIds();
|
|
}
|
|
}
|
|
|
|
const unsubscribe = ctx.batchSelectedIds.subscribe((value) => {
|
|
batchSelectedIds = value;
|
|
});
|
|
|
|
let overflowVisible = false;
|
|
|
|
const ctxToolbar = getContext("Toolbar");
|
|
const unsubscribeOverflow = ctxToolbar.overflowVisible.subscribe((value) => {
|
|
overflowVisible = value;
|
|
});
|
|
|
|
onMount(() => {
|
|
return () => {
|
|
unsubscribe();
|
|
unsubscribeOverflow();
|
|
};
|
|
});
|
|
</script>
|
|
|
|
{#if !overflowVisible}
|
|
<div
|
|
class:bx--batch-actions="{true}"
|
|
class:bx--batch-actions--active="{showActions}"
|
|
{...$$restProps}
|
|
>
|
|
<div class:bx--batch-summary="{true}">
|
|
<p class:bx--batch-summary__para="{true}">
|
|
<span> {formatTotalSelected(batchSelectedIds.length)} </span>
|
|
</p>
|
|
</div>
|
|
<div class:bx--action-list="{true}">
|
|
<slot />
|
|
<Button
|
|
class="bx--batch-summary__cancel"
|
|
tabindex="{showActions ? '0' : '-1'}"
|
|
on:click="{cancel}"
|
|
>
|
|
<slot name="cancel">Cancel</slot>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
{/if}
|