mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-24 03:55:15 +00:00
feat: add backgroundJobTracking initial view
This commit is contained in:
parent
8aaab341a2
commit
e012da9d18
4
src/components.d.ts
vendored
4
src/components.d.ts
vendored
|
@ -7,6 +7,7 @@ export {}
|
||||||
/* prettier-ignore */
|
/* prettier-ignore */
|
||||||
declare module 'vue' {
|
declare module 'vue' {
|
||||||
export interface GlobalComponents {
|
export interface GlobalComponents {
|
||||||
|
BackgroundJobTracking: typeof import('./components/ftbot/BackgroundJobTracking.vue')['default']
|
||||||
BacktestGraphs: typeof import('./components/ftbot/BacktestGraphs.vue')['default']
|
BacktestGraphs: typeof import('./components/ftbot/BacktestGraphs.vue')['default']
|
||||||
BacktestHistoryLoad: typeof import('./components/ftbot/BacktestHistoryLoad.vue')['default']
|
BacktestHistoryLoad: typeof import('./components/ftbot/BacktestHistoryLoad.vue')['default']
|
||||||
BacktestResultAnalysis: typeof import('./components/ftbot/BacktestResultAnalysis.vue')['default']
|
BacktestResultAnalysis: typeof import('./components/ftbot/BacktestResultAnalysis.vue')['default']
|
||||||
|
@ -62,6 +63,8 @@ declare module 'vue' {
|
||||||
BotStatus: typeof import('./components/ftbot/BotStatus.vue')['default']
|
BotStatus: typeof import('./components/ftbot/BotStatus.vue')['default']
|
||||||
BPagination: typeof import('bootstrap-vue-next/components/BPagination')['BPagination']
|
BPagination: typeof import('bootstrap-vue-next/components/BPagination')['BPagination']
|
||||||
BPopover: typeof import('bootstrap-vue-next/components/BPopover')['BPopover']
|
BPopover: typeof import('bootstrap-vue-next/components/BPopover')['BPopover']
|
||||||
|
BProgress: typeof import('bootstrap-vue-next/components/BProgress')['BProgress']
|
||||||
|
BProgressBar: typeof import('bootstrap-vue-next/components/BProgress')['BProgressBar']
|
||||||
BRow: typeof import('bootstrap-vue-next/components/BContainer')['BRow']
|
BRow: typeof import('bootstrap-vue-next/components/BContainer')['BRow']
|
||||||
BSpinner: typeof import('bootstrap-vue-next/components/BSpinner')['BSpinner']
|
BSpinner: typeof import('bootstrap-vue-next/components/BSpinner')['BSpinner']
|
||||||
BTab: typeof import('bootstrap-vue-next/components/BTabs')['BTab']
|
BTab: typeof import('bootstrap-vue-next/components/BTabs')['BTab']
|
||||||
|
@ -117,6 +120,7 @@ declare module 'vue' {
|
||||||
IMdiContentSave: typeof import('~icons/mdi/content-save')['default']
|
IMdiContentSave: typeof import('~icons/mdi/content-save')['default']
|
||||||
IMdiDelete: typeof import('~icons/mdi/delete')['default']
|
IMdiDelete: typeof import('~icons/mdi/delete')['default']
|
||||||
IMdiDiceMultiple: typeof import('~icons/mdi/dice-multiple')['default']
|
IMdiDiceMultiple: typeof import('~icons/mdi/dice-multiple')['default']
|
||||||
|
IMdiDownloadBoxOutline: typeof import('~icons/mdi/download-box-outline')['default']
|
||||||
IMdiEye: typeof import('~icons/mdi/eye')['default']
|
IMdiEye: typeof import('~icons/mdi/eye')['default']
|
||||||
IMdiEyeOff: typeof import('~icons/mdi/eye-off')['default']
|
IMdiEyeOff: typeof import('~icons/mdi/eye-off')['default']
|
||||||
IMdiFolderLock: typeof import('~icons/mdi/folder-lock')['default']
|
IMdiFolderLock: typeof import('~icons/mdi/folder-lock')['default']
|
||||||
|
|
14
src/components/ftbot/BackgroundJobTracking.vue
Normal file
14
src/components/ftbot/BackgroundJobTracking.vue
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
const { runningJobs } = useBackgroundJob();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<BListGroup class="ms-2">
|
||||||
|
<BListGroupItem v-for="(job, key) in runningJobs" :key="key" class="d-flex gap-2" :title="key">
|
||||||
|
<i-mdi-download-box-outline v-if="job.job_category === 'download_data'" />
|
||||||
|
|
||||||
|
<div>{{ job.job_category }} {{ job.status }} {{ job.progress }}</div>
|
||||||
|
<BProgress class="w-100 flex-grow" :value="job.progress" show-progress :max="100" striped />
|
||||||
|
</BListGroupItem>
|
||||||
|
</BListGroup>
|
||||||
|
</template>
|
|
@ -42,6 +42,7 @@ async function startDownload() {
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
<BackgroundJobTracking />
|
||||||
<BCard header="Downloading Data">
|
<BCard header="Downloading Data">
|
||||||
<div class="d-flex px-3 mb-3 gap-3 flex-column flex-lg-column">
|
<div class="d-flex px-3 mb-3 gap-3 flex-column flex-lg-column">
|
||||||
<div class="d-flex flex-row gap-5">
|
<div class="d-flex flex-row gap-5">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user