AdminX installed theme list updates (#17221)

refs. https://github.com/TryGhost/Product/issues/3349

The installed themes were not sorted and the active theme was not the
first one which made it hard to discover in the list.
This commit is contained in:
Peter Zimon 2023-07-06 13:21:48 +02:00 committed by GitHub
parent a5b62707ef
commit c9f2271665
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 4 deletions

View File

@ -29,7 +29,7 @@ const ListItem: React.FC<ListItemProps> = ({id, title, detail, action, hideActio
const listItemClasses = clsx(
'group flex items-center justify-between',
bgOnHover && 'hover:bg-gradient-to-r hover:from-white hover:to-grey-50',
separator ? 'border-b border-grey-100 last-of-type:border-none hover:border-grey-200' : 'border-b border-transparent hover:border-grey-200',
separator ? 'border-y border-grey-100 last-of-type:border-t hover:border-grey-200' : 'border-y border-transparent hover:border-grey-200 first-of-type:hover:border-t-transparent',
className
);

View File

@ -35,7 +35,7 @@ function getThemeLabel(theme: Theme): React.ReactNode {
if (isActiveTheme(theme)) {
label =
<span className='font-bold'>
<span className="font-bold">
{label} &mdash; <span className='text-green'> Active</span>
</span>;
}
@ -152,6 +152,17 @@ const ThemeList:React.FC<ThemeSettingProps> = ({
themes,
setThemes
}) => {
themes.sort((a, b) => {
if (a.active && !b.active) {
return -1; // a comes before b
} else if (!a.active && b.active) {
return 1; // b comes before a
} else {
// Both have the same active status, sort alphabetically
return a.name.localeCompare(b.name);
}
});
return (
<List pageTitle='Installed themes'>
{themes.map((theme) => {

View File

@ -15,7 +15,7 @@ const OfficialThemes: React.FC<{
return (
<div className='h-[calc(100vh-74px-40px)] overflow-y-auto overflow-x-hidden p-[8vmin] pt-5'>
<Heading>Themes</Heading>
<div className='mt-[6vmin] grid grid-cols-1 gap-[6vmin] sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4'>
<div className='mt-[6vmin] grid grid-cols-1 gap-[6vmin] sm:grid-cols-2 md:grid-cols-3 xl:grid-cols-4'>
{officialThemes.map((theme) => {
return (
<button key={theme.name} className='flex cursor-pointer flex-col gap-3 text-left' type='button' onClick={() => {

View File

@ -105,7 +105,7 @@ const ThemeInstalledModal: React.FC<{
showToast({
type: 'success',
message: `${updatedTheme.name} is now your active theme.`
message: <div><span className='capitalize'>{updatedTheme.name}</span> is now your active theme.</div>
});
}
onActivate?.();