mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-04-25 20:37:52 +00:00
177 lines
6.5 KiB
TypeScript
177 lines
6.5 KiB
TypeScript
import React, { useEffect, useMemo, useRef, useState } from 'react';
|
|
import { DndContext, closestCenter } from '@dnd-kit/core';
|
|
import { arrayMove, SortableContext, sortableKeyboardCoordinates, useSortable } from '@dnd-kit/sortable';
|
|
import { KeyboardSensor, PointerSensor, TouchSensor, useSensor, useSensors } from '@dnd-kit/core';
|
|
import { CSS } from '@dnd-kit/utilities';
|
|
import { Avatar, ButtonBase } from '@mui/material';
|
|
import { AppCircle, AppCircleContainer, AppCircleLabel } from './Apps-styles';
|
|
import { getBaseApiReact } from '../../App';
|
|
import { executeEvent } from '../../utils/events';
|
|
import { settingsLocalLastUpdatedAtom, sortablePinnedAppsAtom } from '../../atoms/global';
|
|
import { useRecoilState, useSetRecoilState } from 'recoil';
|
|
import { saveToLocalStorage } from './AppsNavBar';
|
|
import { ContextMenuPinnedApps } from '../ContextMenuPinnedApps';
|
|
|
|
const SortableItem = ({ id, name, app, isDesktop }) => {
|
|
const { attributes, listeners, setNodeRef, transform, transition } = useSortable({ id });
|
|
const style = {
|
|
transform: CSS.Transform.toString(transform),
|
|
transition,
|
|
padding: '10px',
|
|
border: '1px solid #ccc',
|
|
marginBottom: '5px',
|
|
borderRadius: '4px',
|
|
backgroundColor: '#f9f9f9',
|
|
cursor: 'grab',
|
|
color: 'black'
|
|
};
|
|
|
|
return (
|
|
<ContextMenuPinnedApps app={app} isMine={!!app?.isMine}>
|
|
<ButtonBase
|
|
ref={setNodeRef} {...attributes} {...listeners}
|
|
sx={{
|
|
height: "80px",
|
|
width: "60px",
|
|
transform: CSS.Transform.toString(transform),
|
|
transition,
|
|
}}
|
|
onClick={()=> {
|
|
executeEvent("addTab", {
|
|
data: app
|
|
})
|
|
}}
|
|
>
|
|
<AppCircleContainer sx={{
|
|
border: "none",
|
|
gap: isDesktop ? '10px': '5px'
|
|
}}>
|
|
<AppCircle
|
|
sx={{
|
|
border: "none",
|
|
}}
|
|
>
|
|
<Avatar
|
|
sx={{
|
|
height: "31px",
|
|
width: "31px",
|
|
'& img': {
|
|
objectFit: 'fill',
|
|
}
|
|
}}
|
|
alt={app?.metadata?.title || app?.name}
|
|
src={`${getBaseApiReact()}/arbitrary/THUMBNAIL/${
|
|
app?.name
|
|
}/qortal_avatar?async=true`}
|
|
>
|
|
<img
|
|
style={{
|
|
width: "31px",
|
|
height: "auto",
|
|
}}
|
|
// src={LogoSelected}
|
|
alt="center-icon"
|
|
/>
|
|
</Avatar>
|
|
</AppCircle>
|
|
<AppCircleLabel>
|
|
{app?.metadata?.title || app?.name}
|
|
</AppCircleLabel>
|
|
</AppCircleContainer>
|
|
</ButtonBase>
|
|
</ContextMenuPinnedApps>
|
|
);
|
|
};
|
|
|
|
export const SortablePinnedApps = ({ isDesktop, myWebsite, myApp, availableQapps = [] }) => {
|
|
const [pinnedApps, setPinnedApps] = useRecoilState(sortablePinnedAppsAtom);
|
|
const setSettingsLocalLastUpdated = useSetRecoilState(settingsLocalLastUpdatedAtom);
|
|
|
|
const transformPinnedApps = useMemo(() => {
|
|
|
|
// Clone the existing pinned apps list
|
|
let pinned = [...pinnedApps];
|
|
|
|
// Function to add or update `isMine` property
|
|
const addOrUpdateIsMine = (pinnedList, appToCheck) => {
|
|
if (!appToCheck) return pinnedList;
|
|
|
|
const existingIndex = pinnedList.findIndex(
|
|
(item) => item?.service === appToCheck?.service && item?.name === appToCheck?.name
|
|
);
|
|
|
|
if (existingIndex !== -1) {
|
|
// If the app is already in the list, update it with `isMine: true`
|
|
pinnedList[existingIndex] = { ...pinnedList[existingIndex], isMine: true };
|
|
} else {
|
|
// If not in the list, add it with `isMine: true` at the beginning
|
|
pinnedList.unshift({ ...appToCheck, isMine: true });
|
|
}
|
|
|
|
return pinnedList;
|
|
};
|
|
|
|
// Update or add `myWebsite` and `myApp` while preserving their positions
|
|
pinned = addOrUpdateIsMine(pinned, myWebsite);
|
|
pinned = addOrUpdateIsMine(pinned, myApp);
|
|
|
|
// Update pinned list based on availableQapps
|
|
pinned = pinned.map((pin) => {
|
|
const findIndex = availableQapps?.findIndex(
|
|
(item) => item?.service === pin?.service && item?.name === pin?.name
|
|
);
|
|
if (findIndex !== -1) return {
|
|
...availableQapps[findIndex],
|
|
...pin
|
|
}
|
|
|
|
return pin;
|
|
});
|
|
|
|
return pinned;
|
|
}, [myApp, myWebsite, pinnedApps, availableQapps]);
|
|
|
|
|
|
const sensors = useSensors(
|
|
useSensor(PointerSensor, {
|
|
activationConstraint: {
|
|
distance: 10, // Set a distance to avoid triggering drag on small movements
|
|
},
|
|
}),
|
|
useSensor(TouchSensor, {
|
|
activationConstraint: {
|
|
distance: 10, // Also apply to touch
|
|
},
|
|
}),
|
|
useSensor(KeyboardSensor, {
|
|
coordinateGetter: sortableKeyboardCoordinates,
|
|
})
|
|
);
|
|
|
|
const handleDragEnd = (event) => {
|
|
const { active, over } = event;
|
|
|
|
if (!over) return; // Make sure the drop target exists
|
|
|
|
if (active.id !== over.id) {
|
|
const oldIndex = transformPinnedApps.findIndex((item) => `${item?.service}-${item?.name}` === active.id);
|
|
const newIndex = transformPinnedApps.findIndex((item) => `${item?.service}-${item?.name}` === over.id);
|
|
|
|
const newOrder = arrayMove(transformPinnedApps, oldIndex, newIndex);
|
|
setPinnedApps(newOrder);
|
|
saveToLocalStorage('ext_saved_settings','sortablePinnedApps', newOrder)
|
|
setSettingsLocalLastUpdated(Date.now())
|
|
}
|
|
};
|
|
return (
|
|
<DndContext sensors={sensors} collisionDetection={closestCenter} onDragEnd={handleDragEnd}>
|
|
<SortableContext items={transformPinnedApps.map((app) => `${app?.service}-${app?.name}`)}>
|
|
{transformPinnedApps.map((app) => (
|
|
<SortableItem isDesktop={isDesktop} key={`${app?.service}-${app?.name}`} id={`${app?.service}-${app?.name}`} name={app?.name} app={app} />
|
|
))}
|
|
</SortableContext>
|
|
</DndContext>
|
|
);
|
|
};
|
|
|