mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 09:04:55 +00:00
* fix: clicking users in table in app takes you to blank page instead of website * fix: wrong loader icon on server panel * fix: surface var misalignment * fix: password managers still detecting username field as something to autofill * feat: show users on backupitem components * feat: seperators for filter sections * fix: lint + change remove -> revoke * fix: copy * feat: align copy
125 lines
3.0 KiB
TypeScript
125 lines
3.0 KiB
TypeScript
import type { Archon } from '@modrinth/api-client'
|
|
import type { Meta, StoryObj } from '@storybook/vue3-vite'
|
|
|
|
import BackupItem from '../../components/servers/backups/BackupItem.vue'
|
|
|
|
const meta = {
|
|
title: 'Servers/BackupItem',
|
|
component: BackupItem,
|
|
args: {
|
|
preview: false,
|
|
showCopyIdAction: false,
|
|
showDebugInfo: false,
|
|
restoreDisabled: undefined,
|
|
},
|
|
} satisfies Meta<typeof BackupItem>
|
|
|
|
export default meta
|
|
type Story = StoryObj<typeof meta>
|
|
|
|
const creator: Archon.BackupsQueue.v1.UserInfo = {
|
|
id: 'traben',
|
|
username: 'Traben',
|
|
avatar_url: 'https://cdn.modrinth.com/user/6Qo4A5QT/9d81be1a9fb1afd163b7f2f05a791955e7693c90.png',
|
|
}
|
|
|
|
const supportCreator: Archon.BackupsQueue.v1.UserInfo = {
|
|
id: 'support',
|
|
username: 'Support',
|
|
avatar_url: null,
|
|
}
|
|
|
|
function makeBackup(
|
|
overrides: Partial<Archon.BackupsQueue.v1.BackupQueueBackup> = {},
|
|
): Archon.BackupsQueue.v1.BackupQueueBackup {
|
|
return {
|
|
id: 'backup-001',
|
|
name: 'Backup #5',
|
|
created_at: new Date(Date.now() - 1000 * 60 * 10).toISOString(),
|
|
automated: false,
|
|
status: 'done',
|
|
locked: false,
|
|
history: [],
|
|
...overrides,
|
|
}
|
|
}
|
|
|
|
export const Default: Story = {
|
|
name: 'Default (manual)',
|
|
args: {
|
|
backup: makeBackup({ name: 'Base finished!!' }),
|
|
creator,
|
|
},
|
|
}
|
|
|
|
export const Automated: Story = {
|
|
name: 'Automated',
|
|
args: {
|
|
backup: makeBackup({ automated: true, name: 'Backup #2' }),
|
|
},
|
|
}
|
|
|
|
export const SupportCreated: Story = {
|
|
name: 'Support created',
|
|
args: {
|
|
backup: makeBackup({ name: 'Support recovery point' }),
|
|
creator: supportCreator,
|
|
},
|
|
}
|
|
|
|
export const Preview: Story = {
|
|
name: 'Preview (compact, used in delete modal)',
|
|
args: {
|
|
backup: makeBackup({ name: 'Base finished!!' }),
|
|
preview: true,
|
|
},
|
|
}
|
|
|
|
export const RestoreDisabled: Story = {
|
|
name: 'Restore disabled (server running)',
|
|
args: {
|
|
backup: makeBackup({ name: 'Backup #5', automated: true }),
|
|
restoreDisabled: 'Cannot restore backup while server is running',
|
|
},
|
|
}
|
|
|
|
export const CommonStates: Story = {
|
|
render: () => ({
|
|
components: { BackupItem },
|
|
setup() {
|
|
const now = new Date(Date.now() - 1000 * 60 * 10).toISOString()
|
|
|
|
function makeBackup(
|
|
overrides: Partial<Archon.BackupsQueue.v1.BackupQueueBackup>,
|
|
): Archon.BackupsQueue.v1.BackupQueueBackup {
|
|
return {
|
|
id: 'backup-001',
|
|
name: 'Backup #5',
|
|
created_at: now,
|
|
automated: false,
|
|
status: 'done',
|
|
locked: false,
|
|
history: [],
|
|
...overrides,
|
|
}
|
|
}
|
|
|
|
return {
|
|
manual: makeBackup({ name: 'Base finished!!' }),
|
|
support: makeBackup({ id: 'backup-support', name: 'Support recovery point' }),
|
|
automated: makeBackup({ automated: true, name: 'Backup #2' }),
|
|
creator,
|
|
supportCreator,
|
|
}
|
|
},
|
|
template: /* html */ `
|
|
<div style="display: flex; flex-direction: column; gap: 0.75rem; max-width: 900px;">
|
|
<BackupItem :backup="manual" :creator="creator" />
|
|
<BackupItem :backup="support" :creator="supportCreator" />
|
|
<BackupItem :backup="automated" />
|
|
<BackupItem :backup="manual" preview />
|
|
</div>
|
|
`,
|
|
}),
|
|
}
|