Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | 28x 28x 2x 28x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { memo } from "react";
import { Link } from "@tanstack/react-router";
import {
FileText,
Edit,
Send,
Archive,
ArchiveRestore,
ExternalLink,
MoreVertical,
BookOpen,
Trash2,
} from "lucide-react";
import { Button } from "../ui/button";
import { DropdownMenu } from "../ui/dropdown-menu";
import type { Blog } from "../../lib/api/blogs";
import { ResponsiveImage } from "../ui/ResponsiveImage";
import { formatRelativeDate } from "../../lib/format-date";
import { MARKETPLACE_URL } from "../../lib/env";
export interface BlogListItemProps {
blog: Blog;
onPublish: (blogId: string) => void;
onArchive: (blogId: string) => void;
onUnarchive: (blogId: string) => void;
/** #587: drafts can be deleted from the list — handler shown only for drafts. */
onDelete?: (blogId: string) => void;
}
function getStatusBadge(status: string) {
const styles: Record<string, string> = {
draft: "bg-warning-light text-warning",
published: "bg-success-light text-success",
archived: "bg-background-muted text-foreground-muted",
};
return (
<span
className={`px-2 py-0.5 text-xs font-medium rounded-full shrink-0 ${styles[status] || styles.draft}`}
>
{status.charAt(0).toUpperCase() + status.slice(1)}
</span>
);
}
export const BlogListItem = memo(function BlogListItem({
blog,
onPublish,
onArchive,
onUnarchive,
onDelete,
}: BlogListItemProps) {
return (
<div className="flex items-center gap-3 sm:gap-4 p-3 border border-border-default rounded-lg bg-background-elevated hover:bg-background-muted/50 transition-colors">
{/* Thumbnail */}
<Link to={`/blogs/${blog.id}/edit`} className="shrink-0">
<div className="h-12 w-12 rounded bg-background-muted flex items-center justify-center overflow-hidden">
{blog.featuredImageUrl ? (
<ResponsiveImage
storageKey={blog.featuredImageUrl}
alt={blog.featuredImageAlt || blog.title}
width={600}
height={400}
className="w-full h-full object-cover"
/>
) : (
<FileText className="h-5 w-5 text-foreground-subtle" />
)}
</div>
</Link>
{/* Title + Status */}
<div className="flex items-center gap-2 min-w-0 flex-1">
<Link
to={`/blogs/${blog.id}/edit`}
className="font-semibold text-sm text-foreground-default hover:text-primary-600 transition-colors truncate max-w-[200px]"
title={blog.title}
>
{blog.title}
</Link>
{getStatusBadge(blog.status)}
</div>
{/* Right section: metadata + actions — fixed width for alignment */}
<div className="hidden sm:flex items-center gap-2 shrink-0 w-[240px] justify-end">
<span className="flex items-center gap-1 text-xs text-foreground-subtle w-16 text-right">
{formatRelativeDate(blog.dateUpdated)}
</span>
{blog.readTimeMinutes ? (
<span className="flex items-center gap-1 text-xs text-foreground-subtle w-10">
<BookOpen className="h-3 w-3" />
{blog.readTimeMinutes}m
</span>
) : (
<span className="w-10" />
)}
<div className="flex items-center gap-1 w-[104px] justify-end">
<Link to={`/blogs/${blog.id}/edit`}>
<Button variant="ghost" size="sm" title="Edit" className="p-2">
<Edit className="h-4 w-4" />
</Button>
</Link>
{blog.status === "draft" && (
<Button
variant="ghost"
size="sm"
onClick={() => onPublish(blog.id)}
title="Publish"
className="p-2"
>
<Send className="h-4 w-4" />
</Button>
)}
{blog.status === "draft" && onDelete && (
<Button
variant="ghost"
size="sm"
onClick={() => onDelete(blog.id)}
title="Delete"
className="p-2 text-foreground-muted hover:text-error"
>
<Trash2 className="h-4 w-4" />
</Button>
)}
{blog.status === "published" && (
<>
<a
href={`${MARKETPLACE_URL}/blog/${blog.slug}`}
target="_blank"
rel="noopener noreferrer"
>
<Button
variant="ghost"
size="sm"
title="View Live"
className="p-2"
>
<ExternalLink className="h-4 w-4" />
</Button>
</a>
<Button
variant="ghost"
size="sm"
onClick={() => onArchive(blog.id)}
title="Archive"
className="p-2"
>
<Archive className="h-4 w-4" />
</Button>
</>
)}
{blog.status === "archived" && (
<Button
variant="ghost"
size="sm"
onClick={() => onUnarchive(blog.id)}
title="Restore"
className="p-2"
>
<ArchiveRestore className="h-4 w-4" />
</Button>
)}
</div>
</div>
{/* Mobile overflow menu */}
<div className="flex sm:hidden shrink-0">
<DropdownMenu
trigger={
<Button variant="ghost" size="sm" className="p-2">
<MoreVertical className="h-4 w-4" />
</Button>
}
items={[
{
label: "Edit",
icon: <Edit className="h-4 w-4" />,
onClick: () => {
window.location.href = `/blogs/${blog.id}/edit`;
},
},
...(blog.status === "draft"
? [
{
label: "Publish",
icon: <Send className="h-4 w-4" />,
onClick: () => onPublish(blog.id),
},
]
: []),
...(blog.status === "draft" && onDelete
? [
{
label: "Delete",
icon: <Trash2 className="h-4 w-4" />,
onClick: () => onDelete(blog.id),
},
]
: []),
...(blog.status === "published"
? [
{
label: "View Live",
icon: <ExternalLink className="h-4 w-4" />,
onClick: () => {
window.open(
`${MARKETPLACE_URL}/blog/${blog.slug}`,
"_blank",
);
},
},
{
label: "Archive",
icon: <Archive className="h-4 w-4" />,
onClick: () => onArchive(blog.id),
},
]
: []),
...(blog.status === "archived"
? [
{
label: "Restore",
icon: <ArchiveRestore className="h-4 w-4" />,
onClick: () => onUnarchive(blog.id),
},
]
: []),
]}
/>
</div>
</div>
);
});
|