From 1f6ebbb5e8d7ca9a869b8c8d76ede01383f46f73 Mon Sep 17 00:00:00 2001 From: Parvesh Monu Date: Thu, 6 Oct 2022 12:31:07 +0530 Subject: [PATCH] remove ens banner component (#14112) --- src/status_im/events.cljs | 5 +++-- src/status_im/ui/screens/home/views.cljs | 22 ++-------------------- translations/en.json | 2 -- translations/hi.json | 4 +--- translations/ja.json | 4 +--- translations/pt_BR.json | 4 +--- translations/ru.json | 4 +--- 7 files changed, 9 insertions(+), 36 deletions(-) diff --git a/src/status_im/events.cljs b/src/status_im/events.cljs index d5a22beb82..79efc40f8e 100644 --- a/src/status_im/events.cljs +++ b/src/status_im/events.cljs @@ -328,8 +328,9 @@ ;; Information Box (def closable-information-boxes - [{:id :ens-banner - :global? true}]) ;; global? - close information box across all profiles + "[{:id information box id + :global? true/false (close information box across all profiles)}]" + []) (defn information-box-id-hash [id public-key global?] (if global? diff --git a/src/status_im/ui/screens/home/views.cljs b/src/status_im/ui/screens/home/views.cljs index cb8f60e187..b5146e3f9c 100644 --- a/src/status_im/ui/screens/home/views.cljs +++ b/src/status_im/ui/screens/home/views.cljs @@ -26,12 +26,10 @@ [status-im.utils.config :as config] [quo2.components.markdown.text :as quo2.text] [status-im.qr-scanner.core :as qr-scanner] - [status-im.utils.datetime :as datetime] [status-im.ui.components.chat-icon.screen :as chat-icon.screen] [status-im.ui.components.chat-icon.styles :as chat-icon.styles] [quo2.foundations.colors :as quo2.colors] - [quo2.components.buttons.button :as quo2.button] - [quo2.components.info.information-box :as information-box]) + [quo2.components.buttons.button :as quo2.button]) (:require-macros [status-im.utils.views :as views])) (defn home-tooltip-view [] @@ -189,12 +187,9 @@ [home-tooltip-view] [react/view {:height 68}])}]))) -(def ens-banner-expire-timestamp 1665010800) - (views/defview communities-and-chats-old [] (views/letsubs [{:keys [items search-filter]} [:home-items] - hide-home-tooltip? [:hide-home-tooltip?] - information-box-closed? [:information-box-closed? :ens-banner]] + hide-home-tooltip? [:hide-home-tooltip?]] (if (and (empty? items) (empty? search-filter) hide-home-tooltip? @@ -210,19 +205,6 @@ :header [:<> (when (or (seq items) @search-active? (seq search-filter)) [search-input-wrapper-old search-filter (empty? items)]) - (when (< (datetime/timestamp-sec) ens-banner-expire-timestamp) - [information-box/information-box - {:type :informative - :closable? true - :closed? information-box-closed? - :icon :main-icons/info - :style {:margin 20} - :button-label (i18n/label :t/open-dapp2) - :on-button-press #(re-frame/dispatch - [:browser.ui/open-url "https://ens-collect.status.im/"]) - :id :ens-banner - :on-close #(re-frame/dispatch [:close-information-box :ens-banner true])} - (i18n/label :t/ens-banner-message)]) (when (and (empty? items) (or @search-active? (seq search-filter))) [start-suggestion search-filter])] diff --git a/translations/en.json b/translations/en.json index 5fd23aea3e..b4dcd37dc3 100644 --- a/translations/en.json +++ b/translations/en.json @@ -991,8 +991,6 @@ "open": "Open", "open-home": "Open...", "open-dapp": "Open ÐApp", - "open-dapp2": "Open dApp", - "ens-banner-message": "If you registered a stateofus.eth name you might be eligible to collect $ENS", "open-dapp-store": "Discover ÐApps", "open-nfc-settings": "Open NFC settings", "open-on-block-explorer": "Open on block explorer", diff --git a/translations/hi.json b/translations/hi.json index 130e42ef9e..61cf5f3c98 100644 --- a/translations/hi.json +++ b/translations/hi.json @@ -564,7 +564,6 @@ "ens-10-SNT": "10 एसएनटी", "ens-add-username": "उपयोगकर्ता नाम जोड़ें", "ens-agree-to": "सहमत होना", - "ens-banner-message": "यदि आपने एक Stateofus.eth नाम पंजीकृत किया है तो आप $ENS एकत्र करने के योग्य हो सकते हैं", "ens-chat-settings": "चैट सेटिंग्स", "ens-custom-domain": "कस्टम डोमेन", "ens-custom-username-hints": "कस्टम डोमेन जैसे username.domain.eth . सहित संपूर्ण उपयोगकर्ता नाम टाइप करें", @@ -1177,7 +1176,6 @@ "open-chat": "चैट खोलें", "open-dapp": "ऐप . खोलें", "open-dapp-store": "ऐप्स . खोजें", - "open-dapp2": "डीएपी खोलें", "open-home": "खुला...", "open-in-new-tab": "नए टैब में खोलें", "open-membership": "खुली सदस्यता", @@ -1777,4 +1775,4 @@ "your-recovery-phrase-description": "यह आपका बीज वाक्यांश है। आप इसका उपयोग यह साबित करने के लिए करते हैं कि यह आपका बटुआ है। आप इसे केवल एक बार देख सकते हैं! इसे कागज पर लिखकर सुरक्षित स्थान पर रख दें। यदि आप अपना बटुआ खो देते हैं या पुनः स्थापित करते हैं तो आपको इसकी आवश्यकता होगी।", "your-tip-limit": "आपकी टिप सीमा", "youre-on-mobile-network": "आप मोबाइल नेटवर्क पर हैं" -} \ No newline at end of file +} diff --git a/translations/ja.json b/translations/ja.json index 61af02175a..74d910e2a8 100644 --- a/translations/ja.json +++ b/translations/ja.json @@ -553,7 +553,6 @@ "ens-10-SNT": "10 SNT", "ens-add-username": "ユーザ名を追加", "ens-agree-to": "に同意する", - "ens-banner-message": "stateofus.eth 名を登録した方は、$ENS を収集する資格がある可能性があります", "ens-chat-settings": "チャット設定", "ens-custom-domain": "カスタムドメイン", "ens-custom-username-hints": "username.domain.eth のようにカスタムドメインを含むユーザ名全体を入力してください", @@ -1164,7 +1163,6 @@ "open-chat": "チャットを開く", "open-dapp": "ÐAppを開く", "open-dapp-store": "ÐAppsを見つける", - "open-dapp2": "dAppを開く", "open-home": "開く", "open-in-new-tab": "新しいタブで開く", "open-membership": "オープンメンバーシップ", @@ -1762,4 +1760,4 @@ "your-recovery-phrase-description": "これはあなたのシードフレーズです。ウォレットがあなたのものであることを証明するために使用します。一度だけしか見ることができません。紙に書くか安全な場所で保管してください。紛失やアプリを再インストールする際に必要になります。", "your-tip-limit": "チップ設定値", "youre-on-mobile-network": "モバイルネットワークを利用しています" -} \ No newline at end of file +} diff --git a/translations/pt_BR.json b/translations/pt_BR.json index f8a85fb07f..3991061457 100644 --- a/translations/pt_BR.json +++ b/translations/pt_BR.json @@ -564,7 +564,6 @@ "ens-10-SNT": "10 SNT", "ens-add-username": "Adicionar nome de usuário ", "ens-agree-to": "Concordo com", - "ens-banner-message": "Se você registrou um nome stateofus.eth, pode ser elegível para receber $ENS", "ens-chat-settings": "Configurações de bate-papo", "ens-custom-domain": "Domínio personalizado", "ens-custom-username-hints": "Digite o nome de usuário inteiro, incluindo o domínio personalizado, como nomedeusuario.domínio.eth", @@ -1176,7 +1175,6 @@ "open-chat": "Abrir chat", "open-dapp": "Abrir ÐApp", "open-dapp-store": "Descubra ÐApps", - "open-dapp2": "Abrir dApp", "open-home": "Abrir...", "open-in-new-tab": "Abrir em nova aba", "open-membership": "Participação aberta", @@ -1773,4 +1771,4 @@ "your-recovery-phrase-description": "Esta é sua frase-semente. Você a usa para provar que esta é sua carteira. Você só pode vê-la uma vez! Escreva no papel e mantenha em um lugar seguro. Você vai precisar dela se perder ou reinstalar sua carteira.", "your-tip-limit": "Seu limite de gorjeta", "youre-on-mobile-network": "Você está em uma rede móvel" -} \ No newline at end of file +} diff --git a/translations/ru.json b/translations/ru.json index b95061d92a..c7e583e15c 100644 --- a/translations/ru.json +++ b/translations/ru.json @@ -597,7 +597,6 @@ "ens-10-SNT": "10 SNT", "ens-add-username": "Добавить имя пользователя", "ens-agree-to": "Согласиться с ", - "ens-banner-message": "Если вы зарегистрировали имя на stateofus.eth, вы можете получить право на получение $ENS.", "ens-chat-settings": "Настройки чата", "ens-custom-domain": "Пользовательский домен", "ens-custom-username-hints": "Введите полное имя пользователя, включая пользовательский домен, например username.domain.eth", @@ -1216,7 +1215,6 @@ "open-chat": "Создать чат", "open-dapp": "Открыть ÐApp", "open-dapp-store": "Откройте для себя мир ÐApp-приложений", - "open-dapp2": "Открыть dApp", "open-home": "Открыть...", "open-in-new-tab": "Открыть в новой вкладке", "open-membership": "Открытое участие", @@ -1822,4 +1820,4 @@ "your-recovery-phrase-description": "Это ваша сид-фраза. Она используется для доказательства владения кошельком. Вы увидите ее только один раз! Запишите ее на бумаге и храните в надежном месте. Она понадобится вам, если вы потеряете или переустановите кошелек.", "your-tip-limit": "Ваш лимит чаевых", "youre-on-mobile-network": "Вы используете мобильную сеть" -} \ No newline at end of file +}