mirror of
https://github.com/morten-olsen/mini-loader.git
synced 2026-02-08 01:36:26 +01:00
38 lines
985 B
TypeScript
38 lines
985 B
TypeScript
import { Command } from 'commander';
|
|
import { createClient } from '../../client/client.js';
|
|
import { step } from '../../utils/step.js';
|
|
|
|
const list = new Command('list');
|
|
|
|
const toInt = (value?: string) => {
|
|
if (!value) {
|
|
return undefined;
|
|
}
|
|
return parseInt(value, 10);
|
|
};
|
|
|
|
list
|
|
.alias('ls')
|
|
.description('List logs')
|
|
.option('-r, --run-id <runId>', 'Run ID')
|
|
.option('-l, --load-id <loadId>', 'Load ID')
|
|
.option('-o, --offset <offset>', 'Offset')
|
|
.option('-a, --limit <limit>', 'Limit', '1000')
|
|
.action(async () => {
|
|
const { runId, loadId, offset, limit } = list.opts();
|
|
const client = await step('Connecting to server', async () => {
|
|
return createClient();
|
|
});
|
|
const artifacts = await step('Getting artifacts', async () => {
|
|
return await client.artifacts.find.query({
|
|
runId,
|
|
loadId,
|
|
offset: toInt(offset),
|
|
limit: toInt(limit),
|
|
});
|
|
});
|
|
console.table(artifacts);
|
|
});
|
|
|
|
export { list };
|