mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-24 07:03:09 +00:00
381 lines
14 KiB
TypeScript
381 lines
14 KiB
TypeScript
import { Button, Divider, Input, Modal, ModalDialog, Radio, RadioGroup, Textarea } from "@mui/joy";
|
|
import classnames from "classnames";
|
|
import { isUndefined, uniq } from "lodash-es";
|
|
import { useEffect, useState } from "react";
|
|
import { toast } from "react-hot-toast";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useAppSelector } from "@/stores";
|
|
import useLoading from "../hooks/useLoading";
|
|
import { shortcutService } from "../services";
|
|
import Icon from "./Icon";
|
|
|
|
interface Props {
|
|
shortcutId?: ShortcutId;
|
|
initialShortcut?: Partial<Shortcut>;
|
|
onClose: () => void;
|
|
onConfirm?: () => void;
|
|
}
|
|
|
|
interface State {
|
|
shortcutCreate: ShortcutCreate;
|
|
}
|
|
|
|
const visibilities: Visibility[] = ["PRIVATE", "WORKSPACE", "PUBLIC"];
|
|
|
|
const CreateShortcutDialog: React.FC<Props> = (props: Props) => {
|
|
const { onClose, onConfirm, shortcutId, initialShortcut } = props;
|
|
const { t } = useTranslation();
|
|
const { shortcutList } = useAppSelector((state) => state.shortcut);
|
|
const [state, setState] = useState<State>({
|
|
shortcutCreate: {
|
|
name: "",
|
|
link: "",
|
|
title: "",
|
|
description: "",
|
|
visibility: "PRIVATE",
|
|
tags: [],
|
|
openGraphMetadata: {
|
|
title: "",
|
|
description: "",
|
|
image: "",
|
|
},
|
|
...initialShortcut,
|
|
},
|
|
});
|
|
const [showAdditionalFields, setShowAdditionalFields] = useState<boolean>(false);
|
|
const [showOpenGraphMetadata, setShowOpenGraphMetadata] = useState<boolean>(false);
|
|
const [tag, setTag] = useState<string>("");
|
|
const tagSuggestions = uniq(shortcutList.map((shortcut) => shortcut.tags).flat());
|
|
const requestState = useLoading(false);
|
|
const isCreating = isUndefined(shortcutId);
|
|
|
|
useEffect(() => {
|
|
if (shortcutId) {
|
|
const shortcut = shortcutService.getShortcutById(shortcutId);
|
|
if (shortcut) {
|
|
setState({
|
|
...state,
|
|
shortcutCreate: Object.assign(state.shortcutCreate, {
|
|
name: shortcut.name,
|
|
link: shortcut.link,
|
|
title: shortcut.title,
|
|
description: shortcut.description,
|
|
visibility: shortcut.visibility,
|
|
openGraphMetadata: shortcut.openGraphMetadata,
|
|
}),
|
|
});
|
|
setTag(shortcut.tags.join(" "));
|
|
}
|
|
}
|
|
}, [shortcutId]);
|
|
|
|
const setPartialState = (partialState: Partial<State>) => {
|
|
setState({
|
|
...state,
|
|
...partialState,
|
|
});
|
|
};
|
|
|
|
const handleNameInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setPartialState({
|
|
shortcutCreate: Object.assign(state.shortcutCreate, {
|
|
name: e.target.value.replace(/\s+/g, "-"),
|
|
}),
|
|
});
|
|
};
|
|
|
|
const handleLinkInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setPartialState({
|
|
shortcutCreate: Object.assign(state.shortcutCreate, {
|
|
link: e.target.value,
|
|
}),
|
|
});
|
|
};
|
|
|
|
const handleTitleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setPartialState({
|
|
shortcutCreate: Object.assign(state.shortcutCreate, {
|
|
title: e.target.value,
|
|
}),
|
|
});
|
|
};
|
|
|
|
const handleVisibilityInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setPartialState({
|
|
shortcutCreate: Object.assign(state.shortcutCreate, {
|
|
visibility: e.target.value,
|
|
}),
|
|
});
|
|
};
|
|
|
|
const handleDescriptionInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setPartialState({
|
|
shortcutCreate: Object.assign(state.shortcutCreate, {
|
|
description: e.target.value,
|
|
}),
|
|
});
|
|
};
|
|
|
|
const handleTagsInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
const text = e.target.value as string;
|
|
setTag(text);
|
|
};
|
|
|
|
const handleOpenGraphMetadataImageChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setPartialState({
|
|
shortcutCreate: Object.assign(state.shortcutCreate, {
|
|
openGraphMetadata: {
|
|
...state.shortcutCreate.openGraphMetadata,
|
|
image: e.target.value,
|
|
},
|
|
}),
|
|
});
|
|
};
|
|
|
|
const handleOpenGraphMetadataTitleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setPartialState({
|
|
shortcutCreate: Object.assign(state.shortcutCreate, {
|
|
openGraphMetadata: {
|
|
...state.shortcutCreate.openGraphMetadata,
|
|
title: e.target.value,
|
|
},
|
|
}),
|
|
});
|
|
};
|
|
|
|
const handleOpenGraphMetadataDescriptionChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
|
|
setPartialState({
|
|
shortcutCreate: Object.assign(state.shortcutCreate, {
|
|
openGraphMetadata: {
|
|
...state.shortcutCreate.openGraphMetadata,
|
|
description: e.target.value,
|
|
},
|
|
}),
|
|
});
|
|
};
|
|
|
|
const handleTagSuggestionsClick = (suggestion: string) => {
|
|
if (tag === "") {
|
|
setTag(suggestion);
|
|
} else {
|
|
setTag(`${tag} ${suggestion}`);
|
|
}
|
|
};
|
|
|
|
const handleSaveBtnClick = async () => {
|
|
if (!state.shortcutCreate.name || !state.shortcutCreate.link) {
|
|
toast.error("Please fill in required fields.");
|
|
return;
|
|
}
|
|
|
|
try {
|
|
if (shortcutId) {
|
|
await shortcutService.patchShortcut({
|
|
id: shortcutId,
|
|
name: state.shortcutCreate.name,
|
|
link: state.shortcutCreate.link,
|
|
title: state.shortcutCreate.title,
|
|
description: state.shortcutCreate.description,
|
|
visibility: state.shortcutCreate.visibility,
|
|
tags: tag.split(" ").filter(Boolean),
|
|
openGraphMetadata: state.shortcutCreate.openGraphMetadata,
|
|
});
|
|
} else {
|
|
await shortcutService.createShortcut({
|
|
...state.shortcutCreate,
|
|
tags: tag.split(" ").filter(Boolean),
|
|
});
|
|
}
|
|
|
|
if (onConfirm) {
|
|
onConfirm();
|
|
} else {
|
|
onClose();
|
|
}
|
|
} catch (error: any) {
|
|
console.error(error);
|
|
toast.error(error.response.data.message);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Modal open={true}>
|
|
<ModalDialog>
|
|
<div className="flex flex-row justify-between items-center w-80 sm:w-96">
|
|
<span className="text-lg font-medium">{isCreating ? "Create Shortcut" : "Edit Shortcut"}</span>
|
|
<Button variant="plain" onClick={onClose}>
|
|
<Icon.X className="w-5 h-auto text-gray-600" />
|
|
</Button>
|
|
</div>
|
|
<div className="overflow-y-auto overflow-x-hidden">
|
|
<div className="w-full flex flex-col justify-start items-start mb-3">
|
|
<span className="mb-2">
|
|
Name <span className="text-red-600">*</span>
|
|
</span>
|
|
<div className="relative w-full">
|
|
<Input
|
|
className="w-full"
|
|
type="text"
|
|
placeholder="Should be an unique name and will be put in url"
|
|
value={state.shortcutCreate.name}
|
|
onChange={handleNameInputChange}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="w-full flex flex-col justify-start items-start mb-3">
|
|
<span className="mb-2">
|
|
Destination URL <span className="text-red-600">*</span>
|
|
</span>
|
|
<Input
|
|
className="w-full"
|
|
type="text"
|
|
placeholder="https://github.com/boojack/slash"
|
|
value={state.shortcutCreate.link}
|
|
onChange={handleLinkInputChange}
|
|
/>
|
|
</div>
|
|
<div className="w-full flex flex-col justify-start items-start mb-3">
|
|
<span className="mb-2">Tags</span>
|
|
<Input className="w-full" type="text" placeholder="github slash" value={tag} onChange={handleTagsInputChange} />
|
|
{tagSuggestions.length > 0 && (
|
|
<div className="w-full flex flex-row justify-start items-start mt-2">
|
|
<Icon.Asterisk className="w-4 h-auto shrink-0 mx-1 text-gray-400 dark:text-gray-500" />
|
|
<div className="w-auto flex flex-row justify-start items-start flex-wrap gap-x-2 gap-y-1">
|
|
{tagSuggestions.map((tag) => (
|
|
<span
|
|
className="text-gray-600 dark:text-gray-500 cursor-pointer max-w-[6rem] truncate block text-sm flex-nowrap leading-4 hover:text-black dark:hover:text-gray-400"
|
|
key={tag}
|
|
onClick={() => handleTagSuggestionsClick(tag)}
|
|
>
|
|
{tag}
|
|
</span>
|
|
))}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className="w-full flex flex-col justify-start items-start mb-3">
|
|
<span className="mb-2">Visibility</span>
|
|
<div className="w-full flex flex-row justify-start items-center text-base">
|
|
<RadioGroup orientation="horizontal" value={state.shortcutCreate.visibility} onChange={handleVisibilityInputChange}>
|
|
{visibilities.map((visibility) => (
|
|
<Radio key={visibility} value={visibility} label={t(`shortcut.visibility.${visibility.toLowerCase()}.self`)} />
|
|
))}
|
|
</RadioGroup>
|
|
</div>
|
|
<p className="mt-3 text-sm text-gray-500 w-full bg-gray-100 border border-gray-200 dark:bg-zinc-800 dark:border-zinc-700 dark:text-gray-400 px-2 py-1 rounded-md">
|
|
{t(`shortcut.visibility.${state.shortcutCreate.visibility.toLowerCase()}.description`)}
|
|
</p>
|
|
</div>
|
|
<Divider className="text-gray-500">More</Divider>
|
|
<div className="w-full flex flex-col justify-start items-start border rounded-md overflow-hidden my-3 dark:border-zinc-800">
|
|
<div
|
|
className={classnames(
|
|
"w-full flex flex-row justify-between items-center px-2 py-1 cursor-pointer hover:bg-gray-100 dark:hover:bg-zinc-800",
|
|
showAdditionalFields ? "bg-gray-100 border-b dark:bg-zinc-800 dark:border-b-zinc-700" : ""
|
|
)}
|
|
onClick={() => setShowAdditionalFields(!showAdditionalFields)}
|
|
>
|
|
<span className="text-sm">Additional fields</span>
|
|
<button className="w-7 h-7 p-1 rounded-md">
|
|
<Icon.ChevronDown className={classnames("w-4 h-auto text-gray-500", showAdditionalFields ? "transform rotate-180" : "")} />
|
|
</button>
|
|
</div>
|
|
{showAdditionalFields && (
|
|
<div className="w-full px-2 py-1">
|
|
<div className="w-full flex flex-col justify-start items-start mb-3">
|
|
<span className="mb-2 text-sm">Title</span>
|
|
<Input
|
|
className="w-full"
|
|
type="text"
|
|
placeholder="Title"
|
|
size="sm"
|
|
value={state.shortcutCreate.title}
|
|
onChange={handleTitleInputChange}
|
|
/>
|
|
</div>
|
|
<div className="w-full flex flex-col justify-start items-start mb-3">
|
|
<span className="mb-2 text-sm">Description</span>
|
|
<Input
|
|
className="w-full"
|
|
type="text"
|
|
placeholder="Github repo for slash"
|
|
size="sm"
|
|
value={state.shortcutCreate.description}
|
|
onChange={handleDescriptionInputChange}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className="w-full flex flex-col justify-start items-start border rounded-md overflow-hidden dark:border-zinc-800">
|
|
<div
|
|
className={classnames(
|
|
"w-full flex flex-row justify-between items-center px-2 py-1 cursor-pointer hover:bg-gray-100 dark:hover:bg-zinc-800",
|
|
showOpenGraphMetadata ? "bg-gray-100 border-b dark:bg-zinc-800 dark:border-b-zinc-700" : ""
|
|
)}
|
|
onClick={() => setShowOpenGraphMetadata(!showOpenGraphMetadata)}
|
|
>
|
|
<span className="text-sm flex flex-row justify-start items-center">
|
|
Social media metadata
|
|
<Icon.Sparkles className="w-4 h-auto shrink-0 ml-1 text-blue-600 dark:text-blue-500" />
|
|
</span>
|
|
<button className="w-7 h-7 p-1 rounded-md">
|
|
<Icon.ChevronDown className={classnames("w-4 h-auto text-gray-500", showOpenGraphMetadata ? "transform rotate-180" : "")} />
|
|
</button>
|
|
</div>
|
|
{showOpenGraphMetadata && (
|
|
<div className="w-full px-2 py-1">
|
|
<div className="w-full flex flex-col justify-start items-start mb-3">
|
|
<span className="mb-2 text-sm">Image URL</span>
|
|
<Input
|
|
className="w-full"
|
|
type="text"
|
|
placeholder="https://the.link.to/the/image.png"
|
|
size="sm"
|
|
value={state.shortcutCreate.openGraphMetadata.image}
|
|
onChange={handleOpenGraphMetadataImageChange}
|
|
/>
|
|
</div>
|
|
<div className="w-full flex flex-col justify-start items-start mb-3">
|
|
<span className="mb-2 text-sm">Title</span>
|
|
<Input
|
|
className="w-full"
|
|
type="text"
|
|
placeholder="Slash - An open source, self-hosted bookmarks and link sharing platform"
|
|
size="sm"
|
|
value={state.shortcutCreate.openGraphMetadata.title}
|
|
onChange={handleOpenGraphMetadataTitleChange}
|
|
/>
|
|
</div>
|
|
<div className="w-full flex flex-col justify-start items-start mb-3">
|
|
<span className="mb-2 text-sm">Description</span>
|
|
<Textarea
|
|
className="w-full"
|
|
placeholder="An open source, self-hosted bookmarks and link sharing platform."
|
|
size="sm"
|
|
maxRows={3}
|
|
value={state.shortcutCreate.openGraphMetadata.description}
|
|
onChange={handleOpenGraphMetadataDescriptionChange}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<div className="w-full flex flex-row justify-end items-center mt-4 space-x-2">
|
|
<Button color="neutral" variant="plain" disabled={requestState.isLoading} loading={requestState.isLoading} onClick={onClose}>
|
|
{t("common.cancel")}
|
|
</Button>
|
|
<Button color="primary" disabled={requestState.isLoading} loading={requestState.isLoading} onClick={handleSaveBtnClick}>
|
|
{t("common.save")}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</ModalDialog>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default CreateShortcutDialog;
|