From 6a59d04544230385ea7ba2c364578609ed46f21c Mon Sep 17 00:00:00 2001 From: Thales Barbosa Date: Thu, 30 Jul 2026 22:03:01 -0300 Subject: [PATCH 1/3] feat(superfluid): campaign dashboard with modular data logic - superfluid-api.js: standalone API client + reward calculations + data transformations. Reviewable as pure JS, no DOM dependencies. - index.html: presentation layer importing the module. Dark mode, responsive, Chart.js visualizations. - Season toggle: switch between S6 (live) and S5 (test data, 2611 users) to verify correctness. - Leaderboard with pagination, reward calculator, pool cards, CTAs. - Event caching across season toggles for instant switching. Replaces previous single-file approach with proper code/presentation separation per team review standards. --- projects/superfluid-s4/dashboard/demo.html | 955 ------------------ projects/superfluid-s4/dashboard/index.html | 352 +++---- .../superfluid-s4/dashboard/superfluid-api.js | 332 ++++++ 3 files changed, 477 insertions(+), 1162 deletions(-) delete mode 100644 projects/superfluid-s4/dashboard/demo.html create mode 100644 projects/superfluid-s4/dashboard/superfluid-api.js diff --git a/projects/superfluid-s4/dashboard/demo.html b/projects/superfluid-s4/dashboard/demo.html deleted file mode 100644 index b26d336..0000000 --- a/projects/superfluid-s4/dashboard/demo.html +++ /dev/null @@ -1,955 +0,0 @@ - - - - - - GoodDollar SUP Rewards -- Season 6 - - - - - -
- -
-

GoodDollar SUP Rewards -- Campaign Dashboard S5 TEST DATA

-

Testing with Season 5 live data (campaign 511, 2,611 participants)

-
-
-
622,000
-
Total SUP
-
-
-
--
-
Participants
-
-
-
--
-
Points Earned
-
-
-
--
-
Total Events
-
-
-
-
-
-
- Loading... - -
-
- - -
-
-

Pool 1: GoodDollar Actions

-
217,700 SUP
-
-
-
--
-
Total Points
-
-
-
--
-
Participants
-
-
-
--
-
Events
-
-
-
    -
  • Claim UBI daily1 pt/claim
  • -
  • Successful invite5 pts
  • -
  • Vote on FlowState5 pts/epoch
  • -
-
Source: Superfluid Points API, Campaign --
-
-
-

Pool 2: Ecosystem Funding

-
404,300 SUP
-
-
-
--
-
Total Points
-
-
-
--
-
Participants
-
-
-
--
-
Events
-
-
-
    -
  • Stream to GoodBuilders S4 council2 pts/$1 G$
  • -
  • Donate to Gardens pool1 pt/$1 G$
  • -
  • Stream to Gardens pool2 pts/$1 G$
  • -
-
Source: Superfluid Points API, Campaign --
-
-
- - -
-

Leaderboard

-
- - -
-
-
-
- Loading leaderboard... -
-
- -
- - -
-

Reward Calculator

-

- Enter your wallet address to see your points and estimated SUP rewards. -

-
- - -
-
-
-
-
0
-
Pool 1 Points
-
-
-
0
-
Pool 2 Points
-
-
-
0
-
Est. Total SUP
-
-
-
--
-
Rank (Pool 1)
-
-
-
- - -
-

How to Participate

-

- Earn points by completing actions below. More points = more SUP rewards. -

- -
- - -
-

Campaign Analytics

-
-
-
-

Daily Events (Full Season)

- -
-
-
-
-

Points Distribution (Top 100)

- -
-
-

Cumulative Participants

- -
-
-
-
-
- Loading analytics (fetching full season events)... -
- -
-
- - - - diff --git a/projects/superfluid-s4/dashboard/index.html b/projects/superfluid-s4/dashboard/index.html index 8bb4ad1..4754de5 100644 --- a/projects/superfluid-s4/dashboard/index.html +++ b/projects/superfluid-s4/dashboard/index.html @@ -3,7 +3,7 @@ - GoodDollar SUP Rewards -- Season 6 + GoodDollar SUP Rewards Campaign Dashboard