-
Notifications
You must be signed in to change notification settings - Fork 992
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
Conversation
(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 | ||
[] |
There was a problem hiding this comment.
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
:on-layout #(swap! view-size | ||
(fn [_] | ||
(- (oops/oget % "nativeEvent.layout.width") 40)))} |
There was a problem hiding this comment.
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!
Jenkins BuildsClick to see older builds (8)
|
(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)) |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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! 🙌
(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]]))) |
There was a problem hiding this comment.
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
59df5ec
to
4af29a1
Compare
There was a problem hiding this 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!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well done ✅
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
andgated
options are implemented?Platforms
status: ready