Skip to content

Commit 13d228d

Browse files
Make all lists "borderless"
1 parent abc75db commit 13d228d

File tree

5 files changed

+19
-27
lines changed

5 files changed

+19
-27
lines changed

src/lib/components/list.svelte

+8-16
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,19 @@
22
import type { Snippet } from 'svelte';
33
44
interface Props {
5-
borderless?: boolean;
65
header?: Snippet;
7-
body?: Snippet;
6+
body: Snippet;
87
}
98
10-
let { borderless = false, header, body }: Props = $props();
9+
let { header, body }: Props = $props();
1110
</script>
1211

13-
<table class="list" class:borderless>
12+
<table class="list">
1413
<thead>
1514
{@render header?.()}
1615
</thead>
1716
<tbody>
18-
{@render body?.()}
17+
{@render body()}
1918
</tbody>
2019
</table>
2120

@@ -55,21 +54,14 @@
5554
5655
:global(td) {
5756
padding: 1em;
58-
}
59-
}
60-
61-
&.borderless thead :global(td) {
62-
border-bottom: 1px solid var(--color-border);
57+
border-bottom: 1px solid var(--color-border);
6358
64-
@include mixins.expanded-width {
65-
border-bottom: unset;
59+
@include mixins.expanded-width {
60+
border-bottom: unset;
61+
}
6662
}
6763
}
6864
69-
&:not(.borderless) tbody {
70-
@include borders;
71-
}
72-
7365
tbody {
7466
@include mixins.expanded-width {
7567
@include borders;

src/routes/login/page.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ test('Valid identifier produces no error', async () => {
5656

5757
await user.type(identifier, FakeUsersEndpointApi.goodUsername);
5858
await user.click(submit);
59-
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.have.length(0);
59+
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.be.empty;
6060
const randomCode = screen.queryByRole('textbox', { name: 'One-time code' });
6161
expect(randomCode).to.exist;
6262
});
@@ -120,5 +120,5 @@ test('Valid random code produces no error', async () => {
120120

121121
await user.type(randomCode, FakeTokensEndpointApi.goodSecret);
122122
await user.click(submit);
123-
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.have.length(0);
123+
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.be.empty;
124124
});

src/routes/register/page.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ test('Valid username and email produce no error', async () => {
158158

159159
await user.type(email, FakeUsersEndpointApi.goodEmail);
160160
await user.click(submit);
161-
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.have.length(0);
161+
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.be.empty;
162162
const randomCode = screen.queryByRole('textbox', { name: 'One-time code' });
163163
expect(randomCode).to.exist;
164164
});
@@ -237,5 +237,5 @@ test('Valid random code produces no error', async () => {
237237

238238
await user.type(randomCode, FakeTokensEndpointApi.goodSecret);
239239
await user.click(submit);
240-
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.have.length(0);
240+
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.be.empty;
241241
});

src/routes/settings/+page.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999

100100
{#if token}
101101
<div class="destination">
102-
<List borderless>
102+
<List>
103103
{#snippet header()}
104104
<tr>
105105
<td colspan="2">{t('settings.profile.header')}</td>
@@ -158,7 +158,7 @@
158158
{/snippet}
159159
</List>
160160

161-
<List borderless>
161+
<List>
162162
{#snippet header()}
163163
<tr>
164164
<td>{t('settings.about.header')}</td>

src/routes/settings/page.test.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ test('Updating avatar with too large image produces a failure', async () => {
2929
const imagePicker = screen.getByTitle('Change avatar');
3030

3131
await user.upload(imagePicker, FakeUsersEndpointApi.largeImageFile);
32+
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.have.length(1);
3233
const avatar = screen.queryByTitle<HTMLImageElement>('Avatar');
3334
expect(avatar).not.to.exist;
34-
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.have.length(1);
3535
});
3636

3737
test('Updating avatar with invalid image produces a failure', async () => {
@@ -41,9 +41,9 @@ test('Updating avatar with invalid image produces a failure', async () => {
4141
const imagePicker = screen.getByTitle('Change avatar');
4242

4343
await user.upload(imagePicker, FakeUsersEndpointApi.notImageFile);
44+
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.have.length(1);
4445
const avatar = screen.queryByTitle<HTMLImageElement>('Avatar');
4546
expect(avatar).not.to.exist;
46-
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.have.length(1);
4747
});
4848

4949
test('Updating avatar with valid image produces no failures', async () => {
@@ -53,9 +53,9 @@ test('Updating avatar with valid image produces no failures', async () => {
5353
const imagePicker = screen.getByTitle('Change avatar');
5454

5555
await user.upload(imagePicker, FakeUsersEndpointApi.normalImageFile);
56+
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.be.empty;
5657
const avatar = screen.getByTitle<HTMLImageElement>('Avatar');
5758
expect(avatar.src).to.contain(FakeUsersEndpointApi.normalImageFile.name);
58-
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.have.length(0);
5959
});
6060

6161
test('Removing avatar produces no failures', async () => {
@@ -67,9 +67,9 @@ test('Removing avatar produces no failures', async () => {
6767
await user.upload(imagePicker, FakeUsersEndpointApi.normalImageFile);
6868

6969
await user.click(remove);
70+
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.be.empty;
7071
const avatar = screen.queryByTitle<HTMLImageElement>('Avatar');
7172
expect(avatar).not.to.exist;
72-
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.have.length(0);
7373
});
7474

7575
test('Bio must be different', async () => {
@@ -93,5 +93,5 @@ test('Updating bio produces no failures', async () => {
9393

9494
await user.type(bio, 'Hello');
9595
await user.click(save);
96-
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.have.length(0);
96+
expect(bus.events.filter((e) => e instanceof DisplayableError)).to.be.empty;
9797
});

0 commit comments

Comments
 (0)