end-drag
설명
태스크 드래그가 완료될 때 발생합니다
사용법
"end-drag":({
target: string | number | null,
dropPosition: "top" | "bottom" | "in" | null,
mode: "move" | "copy"
}) => void;
매개변수
end-drag 이벤트의 callback은 다음 매개변수를 포함하는 객체를 받을 수 있습니다:
target- (필수) 드래그가 완료된 태스크의 IDdropPosition- (필수) 드래그한 태스크가 놓인 위치:top- 대상 태스크 위bottom- 대상 태스크 아래in- 대상 태스크 위에 겹침
mode- (필수) 드래그 앤 드롭 모드:move- 이동 모드copy- 복사 모드
정보
내부 이벤트를 처리하려면 Event Bus 메서드를 사용할 수 있습니다
예제
const { ToDo, Toolbar } = todo;
const {tasks, projects, users} = getData();
const list = new ToDo("#root", {
tasks,
projects,
users
});
const toolbar = new Toolbar("#toolbar", {
api: list.api
});
// "drag" 이벤트 구독
list.api.on("drag", ({ target, dropPosition, mode }) => {
console.log(target, dropPosition, mode);
});
변경 이력: v1.1에서 추가됨
관련 문서: 드래그 앤 드롭