From deed60bfadfd39ecbf06a62948c05422c73c1fb6 Mon Sep 17 00:00:00 2001 From: zns Date: Fri, 27 May 2022 01:18:10 +0300 Subject: [PATCH] final fixes before release --- .../FeesDepositAndWithdrawalLimitsTab.vue | 106 ---------------- .../info/fees/FeesDepositAndWithdrawalTab.vue | 118 ------------------ .../components/layout/navigation/MainMenu.vue | 18 +-- .../layout/toolbar/ToolbarNotifications.vue | 2 +- .../notifications/list/NotificationsList.vue | 3 - resources/js/layouts/DefaultLayout.vue | 5 +- resources/js/mixins/centrifugo-overview.js | 7 -- resources/js/mixins/centrifugo-trading.js | 8 -- resources/js/pages/info/Contacts.vue | 2 +- resources/js/pages/info/Fees.vue | 27 ++-- resources/js/pages/reports/RefPayments.vue | 12 +- resources/js/pages/reports/Transfers.vue | 12 +- 12 files changed, 33 insertions(+), 287 deletions(-) delete mode 100644 resources/js/components/info/fees/FeesDepositAndWithdrawalLimitsTab.vue delete mode 100644 resources/js/components/info/fees/FeesDepositAndWithdrawalTab.vue diff --git a/resources/js/components/info/fees/FeesDepositAndWithdrawalLimitsTab.vue b/resources/js/components/info/fees/FeesDepositAndWithdrawalLimitsTab.vue deleted file mode 100644 index 8357fbaa..00000000 --- a/resources/js/components/info/fees/FeesDepositAndWithdrawalLimitsTab.vue +++ /dev/null @@ -1,106 +0,0 @@ - - - diff --git a/resources/js/components/info/fees/FeesDepositAndWithdrawalTab.vue b/resources/js/components/info/fees/FeesDepositAndWithdrawalTab.vue deleted file mode 100644 index a6e5c703..00000000 --- a/resources/js/components/info/fees/FeesDepositAndWithdrawalTab.vue +++ /dev/null @@ -1,118 +0,0 @@ - - - diff --git a/resources/js/components/layout/navigation/MainMenu.vue b/resources/js/components/layout/navigation/MainMenu.vue index d72a792c..74ba7f2c 100644 --- a/resources/js/components/layout/navigation/MainMenu.vue +++ b/resources/js/components/layout/navigation/MainMenu.vue @@ -5,6 +5,7 @@ diff --git a/resources/js/components/layout/toolbar/ToolbarNotifications.vue b/resources/js/components/layout/toolbar/ToolbarNotifications.vue index e4277752..08c729b8 100644 --- a/resources/js/components/layout/toolbar/ToolbarNotifications.vue +++ b/resources/js/components/layout/toolbar/ToolbarNotifications.vue @@ -13,7 +13,7 @@
- Notifications + {{ $t('menu.notifications') }}
diff --git a/resources/js/components/notifications/list/NotificationsList.vue b/resources/js/components/notifications/list/NotificationsList.vue index 6dd8eb8c..7e7c9f54 100644 --- a/resources/js/components/notifications/list/NotificationsList.vue +++ b/resources/js/components/notifications/list/NotificationsList.vue @@ -52,9 +52,6 @@ @click="readNotification(item)" > - - - mdi-delete diff --git a/resources/js/layouts/DefaultLayout.vue b/resources/js/layouts/DefaultLayout.vue index 0d791a2c..073e6c4e 100644 --- a/resources/js/layouts/DefaultLayout.vue +++ b/resources/js/layouts/DefaultLayout.vue @@ -26,7 +26,7 @@ - + 960; diff --git a/resources/js/mixins/centrifugo-overview.js b/resources/js/mixins/centrifugo-overview.js index 78ec11a6..0c29a3aa 100644 --- a/resources/js/mixins/centrifugo-overview.js +++ b/resources/js/mixins/centrifugo-overview.js @@ -105,13 +105,6 @@ export default { this.sub_order_book.on('error', this.channelErrorHandler); this.sub_order_book.on('unsubscribe', this.channelUnsubscribeHandler); }); - this.$store.dispatch('trading/getAllCurrencyListFromServer').then(resp => { - this.sub_currencies = this.centrifuge.subscribe('public:currencies'); - this.sub_currencies.on('subscribe', this.channelSubscribeHandler); - this.sub_currencies.on('publish', this.currenciesPubHandler); - this.sub_currencies.on('error', this.channelErrorHandler); - this.sub_currencies.on('unsubscribe', this.channelUnsubscribeHandler); - }); }, unsubscribePublic(currency, market) { currency = currency.toLowerCase(); diff --git a/resources/js/mixins/centrifugo-trading.js b/resources/js/mixins/centrifugo-trading.js index f51e3f4e..e194afec 100644 --- a/resources/js/mixins/centrifugo-trading.js +++ b/resources/js/mixins/centrifugo-trading.js @@ -156,14 +156,6 @@ export default { this.sub_graph.on('error', this.channelErrorHandler); this.sub_graph.on('unsubscribe', this.channelUnsubscribeHandler); }); - this.$store.dispatch('trading/getAllCurrencyListFromServer').then(resp => { - this.sub_currencies = this.centrifuge.subscribe('public:currencies'); - this.sub_currencies.on('subscribe', this.channelSubscribeHandler); - this.sub_currencies.on('publish', this.currenciesPubHandler); - this.sub_currencies.on('error', this.channelErrorHandler); - this.sub_currencies.on('unsubscribe', this.channelUnsubscribeHandler); - }); - this.sub_chat = this.centrifuge.subscribe('chat:ru'); this.sub_chat.on('subscribe', this.channelSubscribeHandler); this.sub_chat.on('publish', this.chatPubHandler); diff --git a/resources/js/pages/info/Contacts.vue b/resources/js/pages/info/Contacts.vue index 8f93ec49..2e345a8b 100644 --- a/resources/js/pages/info/Contacts.vue +++ b/resources/js/pages/info/Contacts.vue @@ -1,6 +1,6 @@ diff --git a/resources/js/pages/info/Fees.vue b/resources/js/pages/info/Fees.vue index 6b18891b..ead8b64a 100644 --- a/resources/js/pages/info/Fees.vue +++ b/resources/js/pages/info/Fees.vue @@ -10,10 +10,6 @@ {{ $t('status.pairs_tab') }} - - @@ -94,27 +90,22 @@
- - - - diff --git a/resources/js/pages/reports/RefPayments.vue b/resources/js/pages/reports/RefPayments.vue index fe3b274d..dee75ba5 100644 --- a/resources/js/pages/reports/RefPayments.vue +++ b/resources/js/pages/reports/RefPayments.vue @@ -55,6 +55,8 @@ diff --git a/resources/js/pages/reports/Transfers.vue b/resources/js/pages/reports/Transfers.vue index eda5f411..57527a61 100644 --- a/resources/js/pages/reports/Transfers.vue +++ b/resources/js/pages/reports/Transfers.vue @@ -60,6 +60,8 @@