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

[#21233] Add missing community stats #22143

Merged
merged 4 commits into from
Feb 21, 2025
Merged

Conversation

ulisesmac
Copy link
Contributor

fixes #21233

Summary

This PR solves the missing stats in the discover communities screen along with some code improvements.

Stats shown:

Also fixes this bug with the theme change:

theme-bug.mp4

Review notes

This screen has several issues in its implementation, worth evaluating to reafactor it, maybe rework the screen when the open and gated options are implemented?

Platforms

  • Android
  • iOS

status: ready

Comment on lines -20 to -37
(defn card-stats-container
[]
(def card-stats-container
{:flex-direction :row})

(defn list-stats-container
[]
(def list-stats-container
{:flex-direction :row
:align-items :center})

(defn card-stats-position
[]
(def card-stats-position
{:position :absolute
:top 116
:right 12
:left 12})

(defn community-tags-position
[]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These styles didn't need to be a function

Comment on lines -103 to -105
:on-layout #(swap! view-size
(fn [_]
(- (oops/oget % "nativeEvent.layout.width") 40)))}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed this swap! with no args to use a reset!

@status-im-auto
Copy link
Member

status-im-auto commented Feb 17, 2025

Jenkins Builds

Click to see older builds (8)
Commit #️⃣ Finished (UTC) Duration Platform Result
✔️ 59df5ec #1 2025-02-17 19:50:46 ~5 min tests 📄log
✔️ 59df5ec #1 2025-02-17 19:52:37 ~7 min android-e2e 🤖apk 📲
✔️ 59df5ec #1 2025-02-17 19:54:14 ~8 min android 🤖apk 📲
✔️ 59df5ec #1 2025-02-17 19:56:01 ~10 min ios 📱ipa 📲
✔️ 4af29a1 #2 2025-02-18 15:39:13 ~4 min tests 📄log
✔️ 4af29a1 #2 2025-02-18 15:41:45 ~7 min android-e2e 🤖apk 📲
✔️ 4af29a1 #2 2025-02-18 15:42:43 ~8 min android 🤖apk 📲
✔️ 4af29a1 #2 2025-02-18 15:44:26 ~10 min ios 📱ipa 📲
Commit #️⃣ Finished (UTC) Duration Platform Result
✔️ 9376f9b #3 2025-02-21 00:41:35 ~5 min tests 📄log
✔️ 9376f9b #3 2025-02-21 00:45:38 ~9 min android-e2e 🤖apk 📲
✔️ 9376f9b #3 2025-02-21 00:46:09 ~9 min android 🤖apk 📲
✔️ 9376f9b #3 2025-02-21 00:46:42 ~10 min ios 📱ipa 📲
✔️ 7f09929 #4 2025-02-21 13:50:37 ~4 min tests 📄log
✔️ 7f09929 #4 2025-02-21 13:53:41 ~7 min android 🤖apk 📲
✔️ 7f09929 #4 2025-02-21 13:53:50 ~8 min android-e2e 🤖apk 📲
✔️ 7f09929 #4 2025-02-21 13:55:57 ~10 min ios 📱ipa 📲

Comment on lines 133 to -160
(defn other-communities-list
[{:keys [communities communities-ids view-type]}]
[{:keys [communities view-type]}]
[rn/view {:style style/other-communities-container}
(if (and communities (pos? (count communities)))
(map-indexed
(fn [inner-index item]
(let [community-id (when communities-ids item)
community (if communities
item
(rf/sub [:communities/home-item community-id]))
cover {:uri (get-in (:images item) [:banner :uri])}]
[rn/view
{:key (str inner-index (:id community))
:margin-bottom 16}
(if (= view-type :card-view)
[quo/community-card-view-item
{:community (assoc community :cover cover)
:on-press #(rf/dispatch [:communities/navigate-to-community-overview (:id community)])}]

[quo/community-list
{:on-press (fn []
(rf/dispatch [:dismiss-keyboard])
(rf/dispatch [:communities/navigate-to-community-overview
(:id community)]))
:on-long-press #(js/alert "TODO: to be implemented")}
community])]))
(if communities communities communities-ids))
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lots of issues in this function, communities-ids was never passed and the logicis not even prepared to use it if passed

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm odd that with what's happening with communities-ids in the original version. And it seems as you say there's no other usages of this function.

Nice clean up, thank you! 🙌

Comment on lines 182 to -205
(defn render-communities
[selected-tab
featured-communities-count
featured-communities
view-type]
(fn []
[rn/view
[discover-communities-header
{:selected-tab selected-tab
:view-type view-type
:featured-communities-count featured-communities-count
:featured-communities featured-communities}]
[communities-lists selected-tab view-type]]))
[{:keys [selected-tab featured-communities-count featured-communities view-type]}]
[rn/view
[discover-communities-header
{:selected-tab selected-tab
:view-type view-type
:featured-communities-count featured-communities-count
:featured-communities featured-communities}]
[communities-lists selected-tab view-type]])

(defn render-sticky-header
[{:keys [selected-tab scroll-height]}]
(fn []
(when (> @scroll-height 360)
[rn/view
{:style (style/blur-tabs-header (safe-area/get-top))}
[discover-communities-segments selected-tab true]])))
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These form-2 components created the issue with the theme not changing correctly

@ulisesmac ulisesmac force-pushed the 21233-missing-community-stats branch from 59df5ec to 4af29a1 Compare February 18, 2025 15:33
Copy link
Contributor

@ilmotta ilmotta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM @ulisesmac, no further comments. It's nice to see a little feature here and there 🚀 Once this PR is merged, it would be a good idea to update this entry in the Feature Parity database in Notion https://www.notion.so/Discover-communities-show-stats-1a08f96fb65c80699552c6a2fd946c46

Also fixes this bug with the theme change

I faced this bug a couple times because I change themes multiple times per day, sometimes 😅 Thanks for fixing that!

Copy link
Member

@seanstrom seanstrom left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well done ✅

@ulisesmac ulisesmac merged commit 6e30d9f into develop Feb 21, 2025
5 checks passed
@ulisesmac ulisesmac deleted the 21233-missing-community-stats branch February 21, 2025 14:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Missing stats from Community card in the Discover Communities screen
4 participants