Added session downloader for chrome extension (#1522)

* Added session downloader for chrome extension

- The session list now has a button to download sessions as .json files for use with rrweb-player
- Improved styling for the delete and download buttons
This commit is contained in:
Arun Kunigiri
2026-04-01 12:00:00 +08:00
committed by GitHub
parent 5217a09c60
commit 4277d7e9c3
3 changed files with 57 additions and 19 deletions

View File

@@ -0,0 +1,5 @@
---
"@rrweb/web-extension": minor
---
Added session downloader for chrome extension

View File

@@ -31,7 +31,7 @@ import { VscTriangleDown, VscTriangleUp } from 'react-icons/vsc';
import { useNavigate } from 'react-router-dom'; import { useNavigate } from 'react-router-dom';
import { type Session, EventName } from '~/types'; import { type Session, EventName } from '~/types';
import Channel from '~/utils/channel'; import Channel from '~/utils/channel';
import { deleteSessions, getAllSessions } from '~/utils/storage'; import { deleteSessions, getAllSessions, downloadSessions } from '~/utils/storage';
import { import {
FiChevronLeft, FiChevronLeft,
FiChevronRight, FiChevronRight,
@@ -292,24 +292,38 @@ export function SessionList() {
))} ))}
</Select> </Select>
{Object.keys(rowSelection).length > 0 && ( {Object.keys(rowSelection).length > 0 && (
<Button <Flex gap={1}>
mr={4} <Button
size="md" mr={4}
colorScheme="red" size="md"
onClick={() => { colorScheme="red"
if (table.getSelectedRowModel().flatRows.length === 0) return; onClick={() => {
const ids = table if (table.getSelectedRowModel().flatRows.length === 0) return;
.getSelectedRowModel() const ids = table
.flatRows.map((row) => row.original.id); .getSelectedRowModel()
void deleteSessions(ids).then(() => { .flatRows.map((row) => row.original.id);
setRowSelection({}); void deleteSessions(ids).then(() => {
void updateSessions(); setRowSelection({});
channel.emit(EventName.SessionUpdated, {}); void updateSessions();
}); channel.emit(EventName.SessionUpdated, {});
}} });
> }}
Delete >
</Button> Delete
</Button>
<Button
mr={4}
size="md"
colorScheme="green"
onClick={() => {
const selectedRows = table.getSelectedRowModel().flatRows;
if (selectedRows.length === 0) return;
void downloadSessions(selectedRows.map((row) => row.original.id));
}}
>
Download
</Button>
</Flex>
)} )}
</Flex> </Flex>
</Flex> </Flex>

View File

@@ -88,3 +88,22 @@ export async function deleteSessions(ids: string[]) {
return Promise.all([eventTransition.done, sessionTransition.done]); return Promise.all([eventTransition.done, sessionTransition.done]);
}); });
} }
export async function downloadSessions(ids: string[]) {
for (const sessionId of ids) {
const events = await getEvents(sessionId);
const session = await getSession(sessionId);
const blob = new Blob([JSON.stringify({ session, events }, null, 2)], {
type: 'application/json',
});
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = `${session.name}.json`;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
}
}