mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-21 07:43:50 +02:00
230 lines
7.5 KiB
JavaScript
230 lines
7.5 KiB
JavaScript
import { ArrowUpDown, Info, LogIn, Trash2 } from 'lucide-vue-next';
|
|
|
|
import DisplayName from '../../DisplayName.vue';
|
|
import Location from '../../Location.vue';
|
|
import LocationWorld from '../../LocationWorld.vue';
|
|
import { Button } from '../../ui/button';
|
|
import { i18n } from '../../../plugins';
|
|
import { formatDateFilter } from '../../../shared/utils';
|
|
|
|
const { t } = i18n.global;
|
|
|
|
const sortButton = ({ column, label, descFirst = false }) => (
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
class="-ml-2 h-8 px-2"
|
|
onClick={() => {
|
|
const sorted = column.getIsSorted();
|
|
if (!sorted && descFirst) {
|
|
column.toggleSorting(true);
|
|
return;
|
|
}
|
|
column.toggleSorting(sorted === 'asc');
|
|
}}
|
|
>
|
|
{label}
|
|
<ArrowUpDown class="ml-1 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
|
|
const resolveBool = (maybeRef) => {
|
|
if (maybeRef && typeof maybeRef === 'object' && 'value' in maybeRef) {
|
|
return !!maybeRef.value;
|
|
}
|
|
return !!maybeRef;
|
|
};
|
|
|
|
const baseDateColumn = () => ({
|
|
id: 'created_at',
|
|
accessorFn: (row) => (row?.created_at ? Date.parse(row.created_at) : 0),
|
|
size: 170,
|
|
header: ({ column }) =>
|
|
sortButton({
|
|
column,
|
|
label: t('table.previous_instances.date'),
|
|
descFirst: true
|
|
}),
|
|
cell: ({ row }) => <span>{formatDateFilter(row.original?.created_at, 'long')}</span>
|
|
});
|
|
|
|
const timeColumn = () => ({
|
|
id: 'time',
|
|
accessorFn: (row) => row?.time ?? 0,
|
|
size: 100,
|
|
header: ({ column }) => sortButton({ column, label: t('table.previous_instances.time') }),
|
|
cell: ({ row }) => <span>{row.original?.timer ?? ''}</span>
|
|
});
|
|
|
|
const actionsColumn = ({ shiftHeld, onShowInfo, onDelete, onDeletePrompt, onLaunch }) => ({
|
|
id: 'actions',
|
|
enableSorting: false,
|
|
size: onLaunch ? 140 : 120,
|
|
header: () => t('table.previous_instances.action'),
|
|
meta: {
|
|
thClass: 'text-right',
|
|
tdClass: 'text-right'
|
|
},
|
|
cell: ({ row }) => {
|
|
const original = row.original;
|
|
const isShiftHeld = resolveBool(shiftHeld);
|
|
|
|
return (
|
|
<div class="inline-flex items-center justify-end gap-1">
|
|
{onLaunch ? (
|
|
<Button
|
|
size="icon-sm"
|
|
variant="ghost"
|
|
class="w-6 h-6 text-xs"
|
|
onClick={(event) => {
|
|
event.stopPropagation();
|
|
onLaunch?.(original?.location);
|
|
}}
|
|
>
|
|
<LogIn class="h-4 w-4" />
|
|
</Button>
|
|
) : null}
|
|
|
|
<Button
|
|
size="icon-sm"
|
|
variant="ghost"
|
|
class="w-6 h-6 text-xs"
|
|
onClick={(event) => {
|
|
event.stopPropagation();
|
|
onShowInfo?.(original?.$location?.tag);
|
|
}}
|
|
>
|
|
<Info class="h-4 w-4" />
|
|
</Button>
|
|
|
|
<Button
|
|
size="icon-sm"
|
|
variant="ghost"
|
|
class="w-6 h-6 text-xs"
|
|
style={isShiftHeld ? { color: '#f56c6c' } : undefined}
|
|
onClick={(event) => {
|
|
event.stopPropagation();
|
|
if (isShiftHeld) {
|
|
onDelete?.(original);
|
|
} else {
|
|
onDeletePrompt?.(original);
|
|
}
|
|
}}
|
|
>
|
|
<Trash2 class="h-4 w-4" />
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
export const createPreviousInstancesColumns = (variant, config) => {
|
|
if (variant === 'user') {
|
|
return [
|
|
baseDateColumn(),
|
|
{
|
|
id: 'world',
|
|
accessorFn: (row) => row?.worldName ?? row?.name ?? '',
|
|
header: ({ column }) => sortButton({ column, label: t('table.previous_instances.world') }),
|
|
meta: {
|
|
stretch: true
|
|
},
|
|
cell: ({ row }) => (
|
|
<Location
|
|
location={row.original?.location}
|
|
hint={row.original?.worldName}
|
|
grouphint={row.original?.groupName}
|
|
/>
|
|
)
|
|
},
|
|
{
|
|
id: 'creator',
|
|
accessorFn: (row) => row?.$location?.userId ?? '',
|
|
size: 170,
|
|
header: () => t('table.previous_instances.instance_creator'),
|
|
cell: ({ row }) => (
|
|
<DisplayName
|
|
userid={row.original?.$location?.userId}
|
|
location={row.original?.$location?.tag}
|
|
/>
|
|
)
|
|
},
|
|
timeColumn(),
|
|
actionsColumn({
|
|
shiftHeld: config.shiftHeld,
|
|
onLaunch: config.onLaunch,
|
|
onShowInfo: config.onShowInfo,
|
|
onDelete: config.onDelete,
|
|
onDeletePrompt: config.onDeletePrompt
|
|
})
|
|
];
|
|
}
|
|
|
|
if (variant === 'world') {
|
|
return [
|
|
baseDateColumn(),
|
|
{
|
|
id: 'instance',
|
|
accessorFn: (row) => row?.$location?.tag ?? row?.location ?? '',
|
|
header: () => t('table.previous_instances.instance_name'),
|
|
meta: {
|
|
stretch: true
|
|
},
|
|
cell: ({ row }) => (
|
|
<LocationWorld
|
|
locationobject={row.original?.$location}
|
|
grouphint={row.original?.groupName}
|
|
currentuserid={config.currentUserId}
|
|
/>
|
|
)
|
|
},
|
|
{
|
|
id: 'creator',
|
|
accessorFn: (row) => row?.$location?.userId ?? '',
|
|
size: 170,
|
|
header: () => t('table.previous_instances.instance_creator'),
|
|
cell: ({ row }) => (
|
|
<DisplayName
|
|
userid={row.original?.$location?.userId}
|
|
location={row.original?.$location?.tag}
|
|
forceUpdateKey={config.forceUpdateKey}
|
|
/>
|
|
)
|
|
},
|
|
timeColumn(),
|
|
actionsColumn({
|
|
shiftHeld: config.shiftHeld,
|
|
onShowInfo: config.onShowInfo,
|
|
onDelete: config.onDelete,
|
|
onDeletePrompt: config.onDeletePrompt
|
|
})
|
|
];
|
|
}
|
|
|
|
return [
|
|
baseDateColumn(),
|
|
{
|
|
id: 'instance',
|
|
accessorFn: (row) => row?.worldName ?? row?.name ?? '',
|
|
header: () => t('table.previous_instances.instance_name'),
|
|
meta: {
|
|
stretch: true
|
|
},
|
|
cell: ({ row }) => (
|
|
<Location
|
|
location={row.original?.$location?.tag ?? row.original?.location}
|
|
grouphint={row.original?.groupName}
|
|
hint={row.original?.worldName}
|
|
/>
|
|
)
|
|
},
|
|
timeColumn(),
|
|
actionsColumn({
|
|
shiftHeld: config.shiftHeld,
|
|
onShowInfo: config.onShowInfo,
|
|
onDelete: config.onDelete,
|
|
onDeletePrompt: config.onDeletePrompt
|
|
})
|
|
];
|
|
};
|