Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove all status-im.ui.components.react usages in status-im2 #17750

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/view
[screen-title]
(when (pos? featured-communities-count)
[:<>
Expand Down