Skip to content
Open
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
72 changes: 72 additions & 0 deletions repositories/d-sports-engage-native.mdx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
title: "d-sports-engage-native"
description: "Native iOS and Android app for D-Sports Engage. Expo 54, React Native, Clerk, RevenueCat, Thirdweb."

Check warning on line 3 in repositories/d-sports-engage-native.mdx

View check run for this annotation

Mintlify / Mintlify Validation (chronoscyberchronicles) - vale-spellcheck

repositories/d-sports-engage-native.mdx#L3

Did you really mean 'Thirdweb'?
icon: "smartphone"
---

## Overview

**d-sports-engage-native** (package name: `engage-native`) is the native mobile app for D-Sports. It mirrors the core PWA experience on iOS and Android: wallet, shop, leaderboard, locker room, and profile.

Check warning on line 9 in repositories/d-sports-engage-native.mdx

View check run for this annotation

Mintlify / Mintlify Validation (chronoscyberchronicles) - vale-spellcheck

repositories/d-sports-engage-native.mdx#L9

Did you really mean 'leaderboard'?

- **Run:** `bunx expo start` or `bun run start` — then press `a` for Android or `i` for iOS, or scan the QR code with Expo Go.

Expand All @@ -17,18 +17,18 @@
| Framework | Expo 54, React Native 0.81, React 19 |
| Auth | Clerk (Expo) |
| Payments | RevenueCat (react-native-purchases) |
| Web3 | Thirdweb |

Check warning on line 20 in repositories/d-sports-engage-native.mdx

View check run for this annotation

Mintlify / Mintlify Validation (chronoscyberchronicles) - vale-spellcheck

repositories/d-sports-engage-native.mdx#L20

Did you really mean 'Thirdweb'?
| State | Zustand |

Check warning on line 21 in repositories/d-sports-engage-native.mdx

View check run for this annotation

Mintlify / Mintlify Validation (chronoscyberchronicles) - vale-spellcheck

repositories/d-sports-engage-native.mdx#L21

Did you really mean 'Zustand'?
| Storage | MMKV |
| UI | Lucide React Native |

Check warning on line 23 in repositories/d-sports-engage-native.mdx

View check run for this annotation

Mintlify / Mintlify Validation (chronoscyberchronicles) - vale-spellcheck

repositories/d-sports-engage-native.mdx#L23

Did you really mean 'Lucide'?
| Navigation | Expo Router |
| Package | Bun |

## Features

- **Wallet** — Tokens, holdings, pack opening, crypto checkout (via PWA backend)

Check warning on line 29 in repositories/d-sports-engage-native.mdx

View check run for this annotation

Mintlify / Mintlify Validation (chronoscyberchronicles) - vale-spellcheck

repositories/d-sports-engage-native.mdx#L29

Did you really mean 'crypto'?
- **Shop** — Collectibles, cart, coin bundles, checkout
- **Leaderboard** — Rankings and filters

Check warning on line 31 in repositories/d-sports-engage-native.mdx

View check run for this annotation

Mintlify / Mintlify Validation (chronoscyberchronicles) - vale-spellcheck

repositories/d-sports-engage-native.mdx#L31

Did you really mean 'Leaderboard'?
- **Locker room** — Social feed and engagement
- **Profile** — User profile and settings
- **Theme** — Dark/light mode (default dark)
Expand All @@ -36,12 +36,84 @@
## Getting started

1. Clone the repository and run `bun install`.
2. Configure environment (Clerk, RevenueCat, Thirdweb, API base URL) per repo README.

Check warning on line 39 in repositories/d-sports-engage-native.mdx

View check run for this annotation

Mintlify / Mintlify Validation (chronoscyberchronicles) - vale-spellcheck

repositories/d-sports-engage-native.mdx#L39

Did you really mean 'Thirdweb'?
3. Run `bunx expo start`.
4. For development builds: `bun run build:dev` (EAS) or run with Expo dev client.

The app targets both native and web (responsive) and uses the same backend (d-sports-api) as the PWA for API and checkout flows.

## API client layer

The native app communicates with d-sports-api through a typed HTTP client in `lib/api/`. All requests use Clerk bearer-token authentication and expect a **normalized response envelope**.

### Normalized envelope contract

Every API response follows this strict envelope shape:

```typescript
interface ApiResponse<T> {
success: boolean;
data?: T;
error?: string;
code?: string; // machine-readable error code
}
```

The client in `lib/api/client.ts` validates that every `2xx` response includes a top-level `success` field. Responses missing it are rejected with an `INVALID_RESPONSE_ENVELOPE` code. This is referred to as **strict envelope mode**.

### API modules

You access all endpoints through the `useApi()` hook exported from `lib/api/index.ts`:

```typescript
import { useApi } from "@/lib/api";

function MyComponent() {
const api = useApi();
const result = await api.user.getProfile();
if (result.success) {
console.log(result.data);
}
}
```

The hook exposes these domain modules, each backed by a dedicated file:

| Module | File | Purpose |
| --------------- | -------------------------- | ------------------------------------ |
| `user` | `lib/api/user-api.ts` | Profile, follow/unfollow, onboarding |
| `quests` | `lib/api/quests-api.ts` | Quest listing and completion |
| `leaderboard` | `lib/api/leaderboard-api.ts` | Rankings and top users |
| `wallet` | `lib/api/wallet-api.ts` | Token balances and transactions |
| `lockerRoom` | `lib/api/locker-room-api.ts` | Social feed and posts |
| `teams` | `lib/api/teams-api.ts` | Team data and membership |
| `collectibles` | `lib/api/collectibles-api.ts` | Owned packs and items |
| `shop` | `lib/api/shop-api.ts` | Product catalog and listings |
| `checkout` | `lib/api/checkout-api.ts` | Crypto and fiat checkout flows |

Check warning on line 92 in repositories/d-sports-engage-native.mdx

View check run for this annotation

Mintlify / Mintlify Validation (chronoscyberchronicles) - vale-spellcheck

repositories/d-sports-engage-native.mdx#L92

Did you really mean 'Crypto'?

### User API endpoints

The user module (`lib/api/user-api.ts`) covers profile management and social features:

| Method | Endpoint | Description |
| ------ | -------------------------- | ---------------------------- |
| `GET` | `/api/user` | Get current user profile |
| `PATCH`| `/api/user` | Update user profile |
| `GET` | `/api/user/onboarding` | Check onboarding status |
| `POST` | `/api/user/onboarding` | Complete onboarding |
| `GET` | `/api/user/sync-clerk` | Sync user with Clerk |
| `POST` | `/api/user/follow` | Follow a user |
| `DELETE`| `/api/user/follow` | Unfollow a user |

Check warning on line 106 in repositories/d-sports-engage-native.mdx

View check run for this annotation

Mintlify / Mintlify Validation (chronoscyberchronicles) - vale-spellcheck

repositories/d-sports-engage-native.mdx#L106

Did you really mean 'Unfollow'?
| `GET` | `/api/user/collectibles` | Get user collectibles |
| `GET` | `/api/user/search` | Search users |
| `GET` | `/api/user/top-users` | Get top 10 fans |
| `GET` | `/api/user/all` | List all community users |
| `GET` | `/api/user/check-username` | Check username availability |

<Note>
The follow endpoint uses `POST /api/user/follow` with a `{ targetUserId }` body. Unfollow uses `DELETE /api/user/follow?targetUserId=<id>`. The top-users endpoint returns a `{ topUsers: TopUser[] }` shape inside the envelope `data` field.

Check warning on line 114 in repositories/d-sports-engage-native.mdx

View check run for this annotation

Mintlify / Mintlify Validation (chronoscyberchronicles) - vale-spellcheck

repositories/d-sports-engage-native.mdx#L114

Did you really mean 'Unfollow'?
</Note>

<Card title="Ecosystem overview" icon="map" href="/repositories/ecosystem-overview">
See how the native app fits with the PWA, site, and Mic'd Up.

Check warning on line 118 in repositories/d-sports-engage-native.mdx

View check run for this annotation

Mintlify / Mintlify Validation (chronoscyberchronicles) - vale-spellcheck

repositories/d-sports-engage-native.mdx#L118

Did you really mean 'Mic'd'?
</Card>