Skip to content

Commit

Permalink
Remove all status-im.ui.components.react usages in status-im2
Browse files Browse the repository at this point in the history
  • Loading branch information
ajayesivan committed Oct 27, 2023
1 parent 1f71883 commit 2eda93c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/status_im2/contexts/chat/messages/drawers/view.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
(:require
[quo.components.selectors.reaction-resource :as reactions.resource]
[quo.core :as quo]
[react-native.clipboard :as clipboard]
[react-native.core :as rn]
[react-native.gesture :as gesture]
[reagent.core :as reagent]
[status-im.ui.components.react :as react]
[status-im2.common.contact-list-item.view :as contact-list-item]
[status-im2.constants :as constants]
[status-im2.contexts.chat.composer.reply.view :as reply]
Expand Down Expand Up @@ -119,7 +119,7 @@
(when (and (not (or deleted? deleted-for-me?))
(not= content-type constants/content-type-audio))
[{:type :main
:on-press #(react/copy-to-clipboard
:on-press #(clipboard/set-string
(reply/get-quoted-text-with-mentions
(get content :parsed-text)))
:label (i18n/label :t/copy-text)
Expand Down
8 changes: 2 additions & 6 deletions src/status_im2/contexts/chat/messages/link_preview/style.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@
(:require
[quo.foundations.colors :as colors]
[quo.foundations.typography :as typography]
[status-im.ui.components.react :as react]))
[react-native.core :as rn]))

(def screen-width
(-> "window"
react/get-dimensions
:width))
(def screen-width (:width (rn/get-window)))

(defn scale-dimensions
"Scale a given height and width to be maximum percentage allowed of the screen width"
Expand Down Expand Up @@ -82,4 +79,3 @@
{:height 170})
{:overflow :hidden
:border-radius 12}))

3 changes: 1 addition & 2 deletions src/status_im2/contexts/communities/discover/view.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
[quo.theme :as quo.theme]
[react-native.core :as rn]
[reagent.core :as reagent]
[status-im.ui.components.react :as react]
[status-im2.common.scroll-page.view :as scroll-page]
[status-im2.contexts.communities.actions.community-options.view :as options]
[status-im2.contexts.communities.discover.style :as style]
Expand Down Expand Up @@ -117,7 +116,7 @@
featured-communities
view-type
selected-tab]}]
[react/animated-view
[rn/animated-view
[screen-title]
(when (pos? featured-communities-count)
[:<>
Expand Down

0 comments on commit 2eda93c

Please sign in to comment.