From 147076a696a23bb7cf3825793f23743d7f06eb3d Mon Sep 17 00:00:00 2001 From: Vitalii Date: Fri, 3 Nov 2023 16:18:48 +0200 Subject: [PATCH] web/satellite/vuetify-poc: notifications for getting close to limits Added notification banners on project dashboard when user is close to or reached some particular project limit. Implementation is similar to main app notifications. Issue: https://github.com/storj/storj/issues/6459 Change-Id: Ifaf14facabd0b57f45431c874cfd6fcc1e991282 --- .../src/components/LimitWarningBanners.vue | 175 ++++++++++++++++++ .../vuetify-poc/src/views/Dashboard.vue | 6 +- 2 files changed, 179 insertions(+), 2 deletions(-) create mode 100644 web/satellite/vuetify-poc/src/components/LimitWarningBanners.vue diff --git a/web/satellite/vuetify-poc/src/components/LimitWarningBanners.vue b/web/satellite/vuetify-poc/src/components/LimitWarningBanners.vue new file mode 100644 index 000000000000..93c317406611 --- /dev/null +++ b/web/satellite/vuetify-poc/src/components/LimitWarningBanners.vue @@ -0,0 +1,175 @@ +// Copyright (C) 2023 Storj Labs, Inc. +// See LICENSE for copying information. + + + + diff --git a/web/satellite/vuetify-poc/src/views/Dashboard.vue b/web/satellite/vuetify-poc/src/views/Dashboard.vue index df73d8d6d530..7d300cb52e78 100644 --- a/web/satellite/vuetify-poc/src/views/Dashboard.vue +++ b/web/satellite/vuetify-poc/src/views/Dashboard.vue @@ -3,7 +3,8 @@