mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 03:16:11 +01:00
chore(react/collections): set up dragging (partially)
This commit is contained in:
@@ -1,10 +1,10 @@
|
|||||||
import Map from "./map";
|
import Map from "./map";
|
||||||
import "./index.css";
|
import "./index.css";
|
||||||
import { ViewModeProps } from "../interface";
|
import { ViewModeProps } from "../interface";
|
||||||
import { useNoteBlob, useNoteLabel, useNoteLabelBoolean, useNoteProperty, useSpacedUpdate, useTriliumEvent } from "../../react/hooks";
|
import { useNoteBlob, useNoteLabel, useNoteLabelBoolean, useNoteProperty, useNoteTreeDrag, useSpacedUpdate, useTriliumEvent } from "../../react/hooks";
|
||||||
import { DEFAULT_MAP_LAYER_NAME } from "./map_layer";
|
import { DEFAULT_MAP_LAYER_NAME } from "./map_layer";
|
||||||
import { divIcon, GPXOptions, LatLng, LeafletMouseEvent } from "leaflet";
|
import { divIcon, GPXOptions, LatLng, LeafletMouseEvent } from "leaflet";
|
||||||
import { useCallback, useEffect, useMemo, useState } from "preact/hooks";
|
import { useCallback, useEffect, useMemo, useRef, useState } from "preact/hooks";
|
||||||
import Marker, { GpxTrack } from "./marker";
|
import Marker, { GpxTrack } from "./marker";
|
||||||
import froca from "../../../services/froca";
|
import froca from "../../../services/froca";
|
||||||
import FNote from "../../../entities/fnote";
|
import FNote from "../../../entities/fnote";
|
||||||
@@ -16,6 +16,7 @@ import openContextMenu, { openMapContextMenu } from "./context_menu";
|
|||||||
import toast from "../../../services/toast";
|
import toast from "../../../services/toast";
|
||||||
import { t } from "../../../services/i18n";
|
import { t } from "../../../services/i18n";
|
||||||
import server from "../../../services/server";
|
import server from "../../../services/server";
|
||||||
|
import branches from "../../../services/branches";
|
||||||
|
|
||||||
const DEFAULT_COORDINATES: [number, number] = [3.878638227135724, 446.6630455551659];
|
const DEFAULT_COORDINATES: [number, number] = [3.878638227135724, 446.6630455551659];
|
||||||
const DEFAULT_ZOOM = 2;
|
const DEFAULT_ZOOM = 2;
|
||||||
@@ -85,9 +86,34 @@ export default function GeoView({ note, noteIds, viewConfig, saveConfig }: ViewM
|
|||||||
openMapContextMenu(note.noteId, e, !isReadOnly);
|
openMapContextMenu(note.noteId, e, !isReadOnly);
|
||||||
}, [ note.noteId, isReadOnly ]);
|
}, [ note.noteId, isReadOnly ]);
|
||||||
|
|
||||||
|
// Dragging
|
||||||
|
const containerRef = useRef<HTMLDivElement>(null);
|
||||||
|
const apiRef = useRef<L.Map>(null);
|
||||||
|
useNoteTreeDrag(containerRef, async (treeData, e) => {
|
||||||
|
const api = apiRef.current;
|
||||||
|
if (!note || !api) return;
|
||||||
|
|
||||||
|
const { noteId } = treeData[0];
|
||||||
|
|
||||||
|
const offset = containerRef.current?.getBoundingClientRect();
|
||||||
|
const x = e.clientX - (offset?.left ?? 0);
|
||||||
|
const y = e.clientY - (offset?.top ?? 0);
|
||||||
|
const latlng = api.containerPointToLatLng([ x, y ]);
|
||||||
|
|
||||||
|
const targetNote = await froca.getNote(noteId, true);
|
||||||
|
const parents = targetNote?.getParentNoteIds();
|
||||||
|
if (parents?.includes(note.noteId)) {
|
||||||
|
await moveMarker(noteId, latlng);
|
||||||
|
} else {
|
||||||
|
await branches.cloneNoteToParentNote(noteId, noteId);
|
||||||
|
await moveMarker(noteId, latlng);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={`geo-view ${state === State.NewNote ? "placing-note" : ""}`}>
|
<div className={`geo-view ${state === State.NewNote ? "placing-note" : ""}`}>
|
||||||
<Map
|
<Map
|
||||||
|
apiRef={apiRef} containerRef={containerRef}
|
||||||
coordinates={viewConfig?.view?.center ?? DEFAULT_COORDINATES}
|
coordinates={viewConfig?.view?.center ?? DEFAULT_COORDINATES}
|
||||||
zoom={viewConfig?.view?.zoom ?? DEFAULT_ZOOM}
|
zoom={viewConfig?.view?.zoom ?? DEFAULT_ZOOM}
|
||||||
layerName={layerName ?? DEFAULT_MAP_LAYER_NAME}
|
layerName={layerName ?? DEFAULT_MAP_LAYER_NAME}
|
||||||
|
|||||||
@@ -2,11 +2,14 @@ import { useEffect, useRef, useState } from "preact/hooks";
|
|||||||
import L, { control, LatLng, Layer, LeafletMouseEvent } from "leaflet";
|
import L, { control, LatLng, Layer, LeafletMouseEvent } from "leaflet";
|
||||||
import "leaflet/dist/leaflet.css";
|
import "leaflet/dist/leaflet.css";
|
||||||
import { MAP_LAYERS } from "./map_layer";
|
import { MAP_LAYERS } from "./map_layer";
|
||||||
import { ComponentChildren, createContext } from "preact";
|
import { ComponentChildren, createContext, RefObject } from "preact";
|
||||||
|
import { useSyncedRef } from "../../react/hooks";
|
||||||
|
|
||||||
export const ParentMap = createContext<L.Map | null>(null);
|
export const ParentMap = createContext<L.Map | null>(null);
|
||||||
|
|
||||||
interface MapProps {
|
interface MapProps {
|
||||||
|
apiRef?: RefObject<L.Map>;
|
||||||
|
containerRef?: RefObject<HTMLDivElement>;
|
||||||
coordinates: LatLng | [number, number];
|
coordinates: LatLng | [number, number];
|
||||||
zoom: number;
|
zoom: number;
|
||||||
layerName: string;
|
layerName: string;
|
||||||
@@ -17,9 +20,9 @@ interface MapProps {
|
|||||||
scale: boolean;
|
scale: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Map({ coordinates, zoom, layerName, viewportChanged, children, onClick, onContextMenu, scale }: MapProps) {
|
export default function Map({ coordinates, zoom, layerName, viewportChanged, children, onClick, onContextMenu, scale, apiRef: _apiRef, containerRef: _containerRef }: MapProps) {
|
||||||
const mapRef = useRef<L.Map>(null);
|
const mapRef = useSyncedRef<L.Map>(_apiRef);
|
||||||
const containerRef = useRef<HTMLDivElement>(null);
|
const containerRef = useSyncedRef<HTMLDivElement>(_containerRef);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!containerRef.current) return;
|
if (!containerRef.current) return;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { useCallback, useContext, useDebugValue, useEffect, useLayoutEffect, useMemo, useRef, useState } from "preact/hooks";
|
import { MutableRef, useCallback, useContext, useDebugValue, useEffect, useLayoutEffect, useMemo, useRef, useState } from "preact/hooks";
|
||||||
import { EventData, EventNames } from "../../components/app_context";
|
import { EventData, EventNames } from "../../components/app_context";
|
||||||
import { ParentComponent } from "./react_utils";
|
import { ParentComponent } from "./react_utils";
|
||||||
import SpacedUpdate from "../../services/spaced_update";
|
import SpacedUpdate from "../../services/spaced_update";
|
||||||
@@ -13,9 +13,10 @@ import FBlob from "../../entities/fblob";
|
|||||||
import NoteContextAwareWidget from "../note_context_aware_widget";
|
import NoteContextAwareWidget from "../note_context_aware_widget";
|
||||||
import { RefObject, VNode } from "preact";
|
import { RefObject, VNode } from "preact";
|
||||||
import { Tooltip } from "bootstrap";
|
import { Tooltip } from "bootstrap";
|
||||||
import { CSSProperties } from "preact/compat";
|
import { CSSProperties, DragEventHandler } from "preact/compat";
|
||||||
import keyboard_actions from "../../services/keyboard_actions";
|
import keyboard_actions from "../../services/keyboard_actions";
|
||||||
import Mark from "mark.js";
|
import Mark from "mark.js";
|
||||||
|
import { DragData } from "../note_tree";
|
||||||
|
|
||||||
export function useTriliumEvent<T extends EventNames>(eventName: T, handler: (data: EventData<T>) => void) {
|
export function useTriliumEvent<T extends EventNames>(eventName: T, handler: (data: EventData<T>) => void) {
|
||||||
const parentComponent = useContext(ParentComponent);
|
const parentComponent = useContext(ParentComponent);
|
||||||
@@ -576,3 +577,37 @@ export function useImperativeSearchHighlighlighting(highlightedTokens: string[]
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function useNoteTreeDrag(containerRef: MutableRef<HTMLElement | null | undefined>, callback: (data: DragData[], e: DragEvent) => void) {
|
||||||
|
useEffect(() => {
|
||||||
|
const container = containerRef.current;
|
||||||
|
if (!container) return;
|
||||||
|
|
||||||
|
function onDragOver(e: DragEvent) {
|
||||||
|
// Allow drag.
|
||||||
|
e.preventDefault();
|
||||||
|
}
|
||||||
|
|
||||||
|
function onDrop(e: DragEvent) {
|
||||||
|
const data = e.dataTransfer?.getData('text');
|
||||||
|
if (!data) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const parsedData = JSON.parse(data) as DragData[];
|
||||||
|
if (!parsedData.length) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
callback(parsedData, e);
|
||||||
|
}
|
||||||
|
|
||||||
|
container.addEventListener("dragover", onDragOver);
|
||||||
|
container.addEventListener("drop", onDrop);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
container.removeEventListener("dragover", onDragOver);
|
||||||
|
container.removeEventListener("drop", onDrop);
|
||||||
|
};
|
||||||
|
}, [ containerRef, callback ]);
|
||||||
|
}
|
||||||
|
|||||||
@@ -10,41 +10,9 @@ import froca from "../../../services/froca.js";
|
|||||||
import branches from "../../../services/branches.js";
|
import branches from "../../../services/branches.js";
|
||||||
|
|
||||||
export function setupDragging($container: JQuery<HTMLElement>, map: Map, mapNoteId: string) {
|
export function setupDragging($container: JQuery<HTMLElement>, map: Map, mapNoteId: string) {
|
||||||
$container.on("dragover", (e) => {
|
|
||||||
// Allow drag.
|
|
||||||
e.preventDefault();
|
|
||||||
});
|
|
||||||
$container.on("drop", async (e) => {
|
$container.on("drop", async (e) => {
|
||||||
if (!e.originalEvent) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const data = e.originalEvent.dataTransfer?.getData('text');
|
|
||||||
if (!data) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const parsedData = JSON.parse(data) as DragData[];
|
|
||||||
if (!parsedData.length) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const { noteId } = parsedData[0];
|
|
||||||
|
|
||||||
const offset = $container.offset();
|
|
||||||
const x = e.originalEvent.clientX - (offset?.left ?? 0);
|
|
||||||
const y = e.originalEvent.clientY - (offset?.top ?? 0);
|
|
||||||
const latlng = map.containerPointToLatLng([ x, y ]);
|
|
||||||
|
|
||||||
const note = await froca.getNote(noteId, true);
|
|
||||||
const parents = note?.getParentNoteIds();
|
|
||||||
if (parents?.includes(mapNoteId)) {
|
|
||||||
await moveMarker(noteId, latlng);
|
|
||||||
} else {
|
|
||||||
await branches.cloneNoteToParentNote(noteId, mapNoteId);
|
|
||||||
await moveMarker(noteId, latlng);
|
|
||||||
}
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.warn(e);
|
console.warn(e);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user