move-task
Description
Fires when moving a taskUsage
"move-task": ({
id: string | number,
mode: "before" | "after" | "up" | "down" | "child",
target?: string | number,
source?: string | number,
inProgress?: boolean
}) => boolean|void;
Parameters
The callback of the move-task action can take an object with the following parameters:
id- (required) the task IDmode- (required) specifies where to move a task with the next values:- up - move up
- down - move down
- before - move before the target task if the target task id is specified
- after - move after the target task if the target task id is specified
- child - move to a new parent
target- (optional) the id of a task before/after which to move the current tasksource- (optional) the id of a source task that is movedinProgress- (optional) true marks that the process of moving a task is still in progress (a task is being dragged by user); false specified that a user has released a mouse after after dragging a task.
info
For handling the actions you can use the Event Bus methods. Returning false from the action handler will block the action (see Preventing actions)
Example
Use the api.exec() method to trigger the action:
<script>
import { getData } from "./common/data";
import { Gantt } from "@svar-ui/svelte-gantt";
import { Button } from "@svar-ui/svelte-wx";
const data = getData();
let api;
function handleMove(mode) {
const selected = api.getState().selected;
api.exec("move-task", { id: selected, mode });
}
</script>
<Button
type="primary"
onclick={() => {
handleMove('up');
}}>
Move task up
</Button>
<Gantt
tasks={data.tasks}
bind:this={api} />
Related articles: