* Add next suggestions and remove console logs * Add pomodoro timer * Add pomodoro switch in settings * Fix pomodoro setting * Add timezones to settings * Fix an issue with password reset * Cleanup * Sort tags alphabetically * Clean up today's view * Add an indicator for repeatedly added to today * Refactor tags * Add due date today item * Move recurrence to the subtitle area * Fix today layout * Add a badge to Inbox items * Move inbox badge to sidebar * Add quotes and progress bar * Add translations for quotes * Fix test issues * Add helper script for docker local * Set up overdue tasks * Add linux/arm/v7 build to deploy script * Add linux/arm/v7 build to deploy script pt2 * Fix an issue with helmet and SSL * Add volume db persistence * Fix cog icon issues
220 lines
7.3 KiB
TypeScript
220 lines
7.3 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { InboxItem } from '../../entities/InboxItem';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { format } from 'date-fns';
|
|
import { TrashIcon, PencilIcon, DocumentTextIcon, FolderIcon, ClipboardDocumentListIcon } from '@heroicons/react/24/outline';
|
|
import { Task } from '../../entities/Task';
|
|
import { Project } from '../../entities/Project';
|
|
import { Note } from '../../entities/Note';
|
|
import { useToast } from '../Shared/ToastContext';
|
|
import ConfirmDialog from '../Shared/ConfirmDialog';
|
|
|
|
interface InboxItemDetailProps {
|
|
item: InboxItem;
|
|
onProcess: (id: number) => void;
|
|
onDelete: (id: number) => void;
|
|
onUpdate?: (id: number, content: string) => Promise<void>;
|
|
openTaskModal: (task: Task, inboxItemId?: number) => void;
|
|
openProjectModal: (project: Project | null, inboxItemId?: number) => void;
|
|
openNoteModal: (note: Note | null, inboxItemId?: number) => void;
|
|
}
|
|
|
|
const InboxItemDetail: React.FC<InboxItemDetailProps> = ({
|
|
item,
|
|
onProcess,
|
|
onDelete,
|
|
onUpdate,
|
|
openTaskModal,
|
|
openProjectModal,
|
|
openNoteModal
|
|
}) => {
|
|
const { t } = useTranslation();
|
|
const { showSuccessToast, showErrorToast } = useToast();
|
|
const [showConfirmDialog, setShowConfirmDialog] = useState(false);
|
|
const [loading, setLoading] = useState(false);
|
|
const [isHovered, setIsHovered] = useState(false);
|
|
|
|
const handleConvertToTask = () => {
|
|
const newTask: Task = {
|
|
name: item.content,
|
|
status: 'not_started',
|
|
priority: 'medium'
|
|
};
|
|
|
|
if (item.id !== undefined) {
|
|
openTaskModal(newTask, item.id);
|
|
} else {
|
|
openTaskModal(newTask);
|
|
}
|
|
};
|
|
|
|
const handleConvertToProject = () => {
|
|
const newProject: Project = {
|
|
name: item.content,
|
|
description: '',
|
|
active: true
|
|
};
|
|
|
|
if (item.id !== undefined) {
|
|
openProjectModal(newProject, item.id);
|
|
} else {
|
|
openProjectModal(newProject);
|
|
}
|
|
};
|
|
|
|
const handleConvertToNote = async () => {
|
|
let title = item.content.split('\n')[0] || item.content.substring(0, 50);
|
|
let content = item.content;
|
|
let isBookmark = false;
|
|
|
|
try {
|
|
const { isUrl, extractUrlTitle } = await import("../../utils/urlService");
|
|
|
|
if (isUrl(item.content.trim())) {
|
|
setLoading(true);
|
|
try {
|
|
// Add a timeout to prevent infinite loading
|
|
const timeoutPromise = new Promise((_, reject) =>
|
|
setTimeout(() => reject(new Error('Timeout')), 10000) // 10 second timeout
|
|
);
|
|
|
|
const result = await Promise.race([
|
|
extractUrlTitle(item.content.trim()),
|
|
timeoutPromise
|
|
]) as any;
|
|
|
|
if (result && result.title) {
|
|
title = result.title;
|
|
content = item.content;
|
|
isBookmark = true;
|
|
}
|
|
} catch (titleError) {
|
|
console.error("Error extracting URL title:", titleError);
|
|
// Continue with default title if URL title extraction fails
|
|
// Still mark as bookmark if it's a URL
|
|
isBookmark = true;
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
}
|
|
} catch (error) {
|
|
console.error("Error checking URL or extracting title:", error);
|
|
setLoading(false);
|
|
}
|
|
|
|
// Simple array of tag objects for the note
|
|
const tagObjects = isBookmark ? [{ name: "bookmark" }] : [];
|
|
|
|
const newNote: Note = {
|
|
title: title,
|
|
content: content,
|
|
tags: tagObjects
|
|
};
|
|
|
|
if (item.id !== undefined) {
|
|
openNoteModal(newNote, item.id);
|
|
} else {
|
|
openNoteModal(newNote);
|
|
}
|
|
};
|
|
|
|
const formattedDate = item.created_at
|
|
? format(new Date(item.created_at), 'MMM dd, yyyy HH:mm')
|
|
: '';
|
|
|
|
const handleDelete = () => {
|
|
setShowConfirmDialog(true);
|
|
};
|
|
|
|
const confirmDelete = () => {
|
|
if (item.id !== undefined) {
|
|
onDelete(item.id);
|
|
}
|
|
setShowConfirmDialog(false);
|
|
};
|
|
|
|
return (
|
|
<div
|
|
className="rounded-lg shadow-sm bg-white dark:bg-gray-900 mt-1"
|
|
onMouseEnter={() => setIsHovered(true)}
|
|
onMouseLeave={() => setIsHovered(false)}
|
|
>
|
|
<div className="flex items-center justify-between px-4 py-2">
|
|
<div className="flex-1 mr-4">
|
|
<p className="text-base font-medium text-gray-900 dark:text-gray-300 break-words">
|
|
{item.content}
|
|
<span className="ml-3 text-xs text-gray-500 dark:text-gray-600">
|
|
{formattedDate}
|
|
</span>
|
|
<span className="ml-2 text-xs bg-blue-100 dark:bg-blue-900 text-blue-800 dark:text-blue-100 rounded p-1">
|
|
{item.source}
|
|
</span>
|
|
</p>
|
|
</div>
|
|
|
|
<div className="flex items-center space-x-1">
|
|
{loading && <div className="spinner" />}
|
|
|
|
{/* Edit Button */}
|
|
<button
|
|
onClick={() => {
|
|
if (onUpdate && item.id !== undefined) {
|
|
onUpdate(item.id, item.content);
|
|
}
|
|
}}
|
|
className={`p-2 text-gray-600 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-full transition-opacity ${isHovered ? 'opacity-100' : 'opacity-0'}`}
|
|
title={t('common.edit')}
|
|
>
|
|
<PencilIcon className="h-4 w-4" />
|
|
</button>
|
|
|
|
{/* Convert to Task Button */}
|
|
<button
|
|
onClick={handleConvertToTask}
|
|
className={`p-2 text-blue-600 dark:text-blue-400 hover:bg-blue-100 dark:hover:bg-blue-900 rounded-full transition-opacity ${isHovered ? 'opacity-100' : 'opacity-0'}`}
|
|
title={t('inbox.createTask')}
|
|
>
|
|
<ClipboardDocumentListIcon className="h-4 w-4" />
|
|
</button>
|
|
|
|
{/* Convert to Project Button */}
|
|
<button
|
|
onClick={handleConvertToProject}
|
|
className={`p-2 text-green-600 dark:text-green-400 hover:bg-green-100 dark:hover:bg-green-900 rounded-full transition-opacity ${isHovered ? 'opacity-100' : 'opacity-0'}`}
|
|
title={t('inbox.createProject')}
|
|
>
|
|
<FolderIcon className="h-4 w-4" />
|
|
</button>
|
|
|
|
{/* Convert to Note Button */}
|
|
<button
|
|
onClick={handleConvertToNote}
|
|
className={`p-2 text-purple-600 dark:text-purple-400 hover:bg-purple-100 dark:hover:bg-purple-900 rounded-full transition-opacity ${isHovered ? 'opacity-100' : 'opacity-0'}`}
|
|
title={t('inbox.createNote', 'Create Note')}
|
|
>
|
|
<DocumentTextIcon className="h-4 w-4" />
|
|
</button>
|
|
|
|
{/* Delete Button */}
|
|
<button
|
|
onClick={handleDelete}
|
|
className={`p-2 text-red-600 dark:text-red-400 hover:bg-red-100 dark:hover:bg-red-900 rounded-full transition-opacity ${isHovered ? 'opacity-100' : 'opacity-0'}`}
|
|
title={t('common.delete')}
|
|
>
|
|
<TrashIcon className="h-4 w-4" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{showConfirmDialog && (
|
|
<ConfirmDialog
|
|
title={t('inbox.deleteConfirmTitle', 'Delete Item')}
|
|
message={t('inbox.deleteConfirmMessage', 'Are you sure you want to delete this inbox item? This action cannot be undone.')}
|
|
onConfirm={confirmDelete}
|
|
onCancel={() => setShowConfirmDialog(false)}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default InboxItemDetail;
|