feat: sort files in explorer

This commit is contained in:
Hamzat Victor 2024-10-14 12:09:17 +01:00
parent fa5d1e9a57
commit 6e14f676cf
2 changed files with 32 additions and 4 deletions

View File

@ -11,7 +11,7 @@ import {
import SidebarFile from "./file"
import SidebarFolder from "./folder"
import { Sandbox, TFile, TFolder, TTab } from "@/lib/types"
import { useEffect, useRef, useState } from "react"
import { useEffect, useMemo, useRef, useState } from "react"
import New from "./new"
import { Socket } from "socket.io-client"
import { Switch } from "@/components/ui/switch"
@ -22,6 +22,7 @@ import {
} from "@atlaskit/pragmatic-drag-and-drop/element/adapter"
import Button from "@/components/ui/customButton"
import { Skeleton } from "@/components/ui/skeleton"
import { sortFileExplorer } from "@/lib/utils"
export default function Sidebar({
sandboxData,
@ -55,7 +56,9 @@ export default function Sidebar({
const [creatingNew, setCreatingNew] = useState<"file" | "folder" | null>(null)
const [movingId, setMovingId] = useState("")
console.log(files)
const sortedFiles = useMemo(() => {
return sortFileExplorer(files)
}, [files])
useEffect(() => {
const el = ref.current
@ -136,7 +139,7 @@ export default function Sidebar({
isDraggedOver ? "bg-secondary/50" : ""
} rounded-sm w-full mt-1 flex flex-col`}
> */}
{files.length === 0 ? (
{sortedFiles.length === 0 ? (
<div className="w-full flex flex-col justify-center">
{new Array(6).fill(0).map((_, i) => (
<Skeleton key={i} className="h-[1.625rem] mb-0.5 rounded-sm" />
@ -144,7 +147,7 @@ export default function Sidebar({
</div>
) : (
<>
{files.map((child) =>
{sortedFiles.map((child) =>
child.type === "file" ? (
<SidebarFile
key={child.id}

View File

@ -98,3 +98,28 @@ export const deepMerge = (target: any, source: any) => {
const isObject = (item: any) => {
return item && typeof item === "object" && !Array.isArray(item)
}
export function sortFileExplorer(
items: (TFile | TFolder)[]
): (TFile | TFolder)[] {
return items
.sort((a, b) => {
// First, sort by type (folders before files)
if (a.type !== b.type) {
return a.type === "folder" ? -1 : 1
}
// Then, sort alphabetically by name
return a.name.localeCompare(b.name, undefined, { sensitivity: "base" })
})
.map((item) => {
// If it's a folder, recursively sort its children
if (item.type === "folder") {
return {
...item,
children: sortFileExplorer(item.children),
}
}
return item
})
}