diff --git a/package.json b/package.json index 4d0c49d7..602da4ed 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "@vueuse/integrations": "^10.7.2", "axios": "^1.6.7", "bootstrap": "^5.3.2", - "bootstrap-vue-next": "^0.15.5", + "bootstrap-vue-next": "^0.16.1", "core-js": "^3.35.1", "date-fns": "^2.30.0", "date-fns-tz": "^2.0.0", diff --git a/src/App.vue b/src/App.vue index b08eeef2..5f267e02 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,7 +1,7 @@ @@ -56,7 +54,7 @@ const tradeModesTyped = computed(() => { return val ?? []; }); -const tradeModes = computed[]>(() => { +const tradeModes = computed(() => { return tradeModesTyped.value.map((tm) => { return ( { @@ -64,7 +62,7 @@ const tradeModes = computed[]>(() => { value: tm, } ?? [] ); - }) as Record[]; + }); }); watch( diff --git a/src/components/general/BaseAlert.vue b/src/components/general/BaseAlert.vue new file mode 100644 index 00000000..dd96005a --- /dev/null +++ b/src/components/general/BaseAlert.vue @@ -0,0 +1,21 @@ + + + + diff --git a/src/main.ts b/src/main.ts index a36880d4..1a20fe89 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,7 +3,7 @@ import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'; import App from './App.vue'; // Eensure Bootstrap css still loads -import './plugins/bootstrap-vue'; +import { createBootstrap } from './plugins/bootstrap-vue'; import { VueDraggableGrid } from './plugins/vue-grid-layout'; import router from './router'; @@ -13,6 +13,7 @@ myApp.use(PiniaVuePlugin); const pinia = createPinia(); pinia.use(piniaPluginPersistedstate); myApp.use(pinia); +myApp.use(createBootstrap()); myApp.use(router); myApp.use(VueDraggableGrid); diff --git a/src/plugins/bootstrap-vue.ts b/src/plugins/bootstrap-vue.ts index 1dca013c..c6c96184 100644 --- a/src/plugins/bootstrap-vue.ts +++ b/src/plugins/bootstrap-vue.ts @@ -2,3 +2,5 @@ import 'bootstrap/dist/css/bootstrap.css'; import 'bootstrap-vue-next/dist/bootstrap-vue-next.css'; import '@/styles/main.scss'; + +export { createBootstrap } from 'bootstrap-vue-next'; diff --git a/src/shared/alerts.ts b/src/shared/alerts.ts index f10d7eca..75f0be42 100644 --- a/src/shared/alerts.ts +++ b/src/shared/alerts.ts @@ -1,10 +1,14 @@ import { AlertSeverity } from '@/types/alertTypes'; -import { useToast } from 'bootstrap-vue-next'; export function showAlert(message: string, severity: AlertSeverity = 'warning', bot: string = '') { - const { show } = useToast(); + const alertStore = useAlertsStore(); - show(message, { title: `${bot ? 'Bot: ' + bot : 'Notification'}`, variant: severity }); + alertStore.addAlert({ + message, + title: `${bot ? 'Bot: ' + bot : 'Notification'}`, + severity, + timeout: 60000, + }); } export function useAlertForBot(botName: string) { diff --git a/src/stores/alertsStore.ts b/src/stores/alertsStore.ts new file mode 100644 index 00000000..ee9db8f7 --- /dev/null +++ b/src/stores/alertsStore.ts @@ -0,0 +1,16 @@ +import { defineStore } from 'pinia'; +import { AlertType } from '@/types/alertTypes'; + +export const useAlertsStore = defineStore('alerts', { + state: () => { + return { activeMessages: [] as AlertType[] }; + }, + actions: { + addAlert(message: AlertType) { + this.activeMessages.push(message); + }, + removeAlert(alert: AlertType) { + this.activeMessages = this.activeMessages.filter((v) => v !== alert); + }, + }, +}); diff --git a/src/styles/_styles_ovw.scss b/src/styles/_styles_ovw.scss index f71e54f1..801358e5 100644 --- a/src/styles/_styles_ovw.scss +++ b/src/styles/_styles_ovw.scss @@ -17,6 +17,11 @@ height: 100dvh; } +.no-min-w { + // Remove min-width + min-width: unset; +} + .logo-svg { background-color: #000000; @@ -273,7 +278,6 @@ &.text-bg-warning { --toast-bg-color: rgb(41, 39, 1) !important; --toast-bg-color-header: rgb(29, 27, 1) !important; - // background-color: rgb(41, 39, 1) !important; color: rgb(255, 218, 106) !important; } @@ -283,6 +287,13 @@ --toast-bg-color-header: rgb(3, 19, 12) !important; color: rgb(118, 183, 152) !important; } + + &.text-bg-info { + + --toast-bg-color: rgb(13, 63, 104)!important; + --toast-bg-color-header: rgb(9, 39, 65) !important; + color: rgb(116, 188, 252) !important; + } } .vue-grid-item>.vue-resizable-handle { // Stupid workaround to have the Shevron actually show. diff --git a/src/types/alertTypes.ts b/src/types/alertTypes.ts index 9303804b..efd84c74 100644 --- a/src/types/alertTypes.ts +++ b/src/types/alertTypes.ts @@ -2,6 +2,7 @@ export type AlertSeverity = 'danger' | 'warning' | 'info' | 'success'; export interface AlertType { message: string; + title: string; severity: AlertSeverity; timeout: number; } diff --git a/yarn.lock b/yarn.lock index 5b21e62d..d43bd6e8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -371,39 +371,40 @@ __metadata: languageName: node linkType: hard -"@floating-ui/core@npm:^1.4.2": - version: 1.5.0 - resolution: "@floating-ui/core@npm:1.5.0" +"@floating-ui/core@npm:^1.6.0": + version: 1.6.0 + resolution: "@floating-ui/core@npm:1.6.0" dependencies: - "@floating-ui/utils": ^0.1.3 - checksum: 54b4fe26b3c228746ac5589f97303abf158b80aa5f8b99027259decd68d1c2030c4c637648ebd33dfe78a4212699453bc2bd7537fd5a594d3bd3e63d362f666f + "@floating-ui/utils": ^0.2.1 + checksum: 2e25c53b0c124c5c9577972f8ae21d081f2f7895e6695836a53074463e8c65b47722744d6d2b5a993164936da006a268bcfe87fe68fd24dc235b1cb86bed3127 languageName: node linkType: hard -"@floating-ui/dom@npm:^1.4.5": - version: 1.5.3 - resolution: "@floating-ui/dom@npm:1.5.3" +"@floating-ui/dom@npm:^1.6.1": + version: 1.6.1 + resolution: "@floating-ui/dom@npm:1.6.1" dependencies: - "@floating-ui/core": ^1.4.2 - "@floating-ui/utils": ^0.1.3 - checksum: 00053742064aac70957f0bd5c1542caafb3bfe9716588bfe1d409fef72a67ed5e60450d08eb492a77f78c22ed1ce4f7955873cc72bf9f9caf2b0f43ae3561c21 + "@floating-ui/core": ^1.6.0 + "@floating-ui/utils": ^0.2.1 + checksum: 5565e4dee612bab62950913c311d75d3f773bd1d9dc437f7e33b46340f32ec565733c995c6185381adaf64e627df3c79901d0a9d555f58c02509d0764bceb57d languageName: node linkType: hard -"@floating-ui/utils@npm:^0.1.3": - version: 0.1.6 - resolution: "@floating-ui/utils@npm:0.1.6" - checksum: b34d4b5470869727f52e312e08272edef985ba5a450a76de0917ba0a9c6f5df2bdbeb99448e2c60f39b177fb8981c772ff1831424e75123471a27ebd5b52c1eb +"@floating-ui/utils@npm:^0.2.1": + version: 0.2.1 + resolution: "@floating-ui/utils@npm:0.2.1" + checksum: 9ed4380653c7c217cd6f66ae51f20fdce433730dbc77f95b5abfb5a808f5fdb029c6ae249b4e0490a816f2453aa6e586d9a873cd157fdba4690f65628efc6e06 languageName: node linkType: hard -"@floating-ui/vue@npm:^1.0.2": - version: 1.0.2 - resolution: "@floating-ui/vue@npm:1.0.2" +"@floating-ui/vue@npm:^1.0.4": + version: 1.0.6 + resolution: "@floating-ui/vue@npm:1.0.6" dependencies: - "@floating-ui/dom": ^1.4.5 + "@floating-ui/dom": ^1.6.1 + "@floating-ui/utils": ^0.2.1 vue-demi: ">=0.13.0" - checksum: bf206a354a0a452a450350f38e48d5223f5331169ee62e7b479dd0b0d87b81172fa5ad9508f98f5e74fbbb1b8834a0b44d72757f90a2718d7c7372cbd5a72193 + checksum: 6cd5c6acc676cab06b157f16a5ce7a6552f7477e6b9b4849c07d54029f775e797066a41be07b14fe0e3f6c37968b66e19b4afe9b833e46f0569276d1a834cc7c languageName: node linkType: hard @@ -1775,18 +1776,6 @@ __metadata: languageName: node linkType: hard -"@vueuse/core@npm:^10.6.0": - version: 10.6.1 - resolution: "@vueuse/core@npm:10.6.1" - dependencies: - "@types/web-bluetooth": ^0.0.20 - "@vueuse/metadata": 10.6.1 - "@vueuse/shared": 10.6.1 - vue-demi: ">=0.14.6" - checksum: 13b892a32fbf99a32947f7a7ff8014525ca1ceb937663b0d6c5ef811eceb7857138c2c3710c2aa9d21dda7a1cdacb1f0faf9f6e38efefb03c2bae4997d13dcc4 - languageName: node - linkType: hard - "@vueuse/integrations@npm:^10.7.2": version: 10.7.2 resolution: "@vueuse/integrations@npm:10.7.2" @@ -1836,13 +1825,6 @@ __metadata: languageName: node linkType: hard -"@vueuse/metadata@npm:10.6.1": - version: 10.6.1 - resolution: "@vueuse/metadata@npm:10.6.1" - checksum: 5739e5ebfd6e377bf50116ee0a5ee11ec97d62adf7336456fe1db2d6712d7fd7c4fcce04f7821494fa17424eca5cd17b38ed89a0b4b4625448dcce7ee9541a65 - languageName: node - linkType: hard - "@vueuse/metadata@npm:10.7.2": version: 10.7.2 resolution: "@vueuse/metadata@npm:10.7.2" @@ -1850,15 +1832,6 @@ __metadata: languageName: node linkType: hard -"@vueuse/shared@npm:10.6.1": - version: 10.6.1 - resolution: "@vueuse/shared@npm:10.6.1" - dependencies: - vue-demi: ">=0.14.6" - checksum: 1e2fb9b0ce5092003d45042776adaeaa0094f209b864d43879496c69a51c2ab9b0c88cdf838fe9a65417f148867ad95f1bdf33b69f815ddcdb6bd9a1a8a80fb3 - languageName: node - linkType: hard - "@vueuse/shared@npm:10.7.2": version: 10.7.2 resolution: "@vueuse/shared@npm:10.7.2" @@ -2165,15 +2138,15 @@ __metadata: languageName: node linkType: hard -"bootstrap-vue-next@npm:^0.15.5": - version: 0.15.5 - resolution: "bootstrap-vue-next@npm:0.15.5" +"bootstrap-vue-next@npm:^0.16.1": + version: 0.16.1 + resolution: "bootstrap-vue-next@npm:0.16.1" dependencies: - "@floating-ui/vue": ^1.0.2 - "@vueuse/core": ^10.6.0 + "@floating-ui/vue": ^1.0.4 + "@vueuse/core": ^10.7.2 peerDependencies: - vue: ^3.3.8 - checksum: f2a631fe023426bd3b6179945f7267a55ec9647056304cb8056e8f5406f67461f634ebb755bcd7adff6f5e8750261605bc025592822a6f1e48088faf7ce7621c + vue: ^3.4.14 + checksum: 688c35cdec342ff4a82514badc0054f8a6c0700af75da2e7a8550587988c627f047d0795609584939011b9e7831828f3f7535b17260ee71e6252679a08c972c5 languageName: node linkType: hard @@ -3554,7 +3527,7 @@ __metadata: "@vueuse/integrations": ^10.7.2 axios: ^1.6.7 bootstrap: ^5.3.2 - bootstrap-vue-next: ^0.15.5 + bootstrap-vue-next: ^0.16.1 core-js: ^3.35.1 cypress: ^13.6.4 date-fns: ^2.30.0