4703ed80a7
This commit includes various code changes necessary to get a basic proof of concept of the feature working. This is NOT a full working feature yet, only a preliminary prototype/PoC. It includes: - [X] Basic Storekit configuration - [X] Basic purchase mechanism - [X] Basic layout and copywriting - [X] Basic design - [X] Manage button (To help user cancel their subscription) - [X] Thank you confirmation + special welcome view - [X] Star badge on profile (by checking the Damus Purple API) - [X] Connection to Damus purple API for fetching account info, registering for an account and sending over the App Store receipt data The feature sits behind a feature flag which is OFF by default (it can be turned ON via Settings --> Developer settings --> Enable experimental Purple API and restarting the app) Testing --------- PASS Device: iPhone 15 Pro simulator iOS: 17.0.1 Damus: This commit damus-api: 59ce44a92cff1c1aaed9886f9befbd5f1053821d Server: Ubuntu 22.04 (VM) Setup: 1. On the server, delete the `mdb` database files to start from scratch 2. In iOS, reinstall the app if necessary to make sure there are no in-app purchases 3. Enable subscriptions support via developer settings with localhost test mode and restart app 4. Start server with mock parameters (Run `npm run dev`) Steps: 1. Open top bar and click on "Purple" 2. Purple screen should appear and show both benefits and the purchase options. PASS 3. Click on "monthly". An Apple screen to confirm purchase should appear. PASS 4. Welcome screen with animation should appear. PASS 5. Click continue and restart app (Due to known issue tracked at https://github.com/damus-io/damus/issues/1814) 6. Post something 7. Gold star should appear beside your name 8. Look at the server logs. There should be some requests to create the account (POST), to send the receipt (POST), and to get account status 9. Go to purple view. There should be some information about the subscription, as well as a "manage" button. PASS 10. Click on "manage" button. An iOS sheet should appear allow the user to unsubscribe or manage their subscription to Damus Purple. Feature flag testing -------------------- PASS Preconditions: Continue from above test Steps: 1. Disable Damus Purple experiment support on developer settings. Restart the app. 2. Check your post. There should be no star beside your profile name. PASS 3. Check side menu. There should be no "Damus Purple" option. PASS 4. Check server logs. There should be no new requests being done to the server. PASS Closes: https://github.com/damus-io/damus/issues/1422
49 lines
2.1 KiB
Swift
49 lines
2.1 KiB
Swift
//
|
|
// DamusColors.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2023-03-27.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
class DamusColors {
|
|
static let adaptableGrey = Color("DamusAdaptableGrey")
|
|
static let adaptableBlack = Color("DamusAdaptableBlack")
|
|
static let adaptableWhite = Color("DamusAdaptableWhite")
|
|
static let white = Color("DamusWhite")
|
|
static let black = Color("DamusBlack")
|
|
static let brown = Color("DamusBrown")
|
|
static let yellow = Color("DamusYellow")
|
|
static let lightGrey = Color("DamusLightGrey")
|
|
static let mediumGrey = Color("DamusMediumGrey")
|
|
static let darkGrey = Color("DamusDarkGrey")
|
|
static let green = Color("DamusGreen")
|
|
static let purple = Color("DamusPurple")
|
|
static let deepPurple = Color("DamusDeepPurple")
|
|
static let blue = Color("DamusBlue")
|
|
static let success = Color("DamusSuccessPrimary")
|
|
static let successSecondary = Color("DamusSuccessSecondary")
|
|
static let successTertiary = Color("DamusSuccessTertiary")
|
|
static let successQuaternary = Color("DamusSuccessQuaternary")
|
|
static let successBorder = Color("DamusSuccessBorder")
|
|
static let warning = Color("DamusWarningPrimary")
|
|
static let warningSecondary = Color("DamusWarningSecondary")
|
|
static let warningTertiary = Color("DamusWarningTertiary")
|
|
static let warningQuaternary = Color("DamusWarningQuaternary")
|
|
static let warningBorder = Color("DamusWarningBorder")
|
|
static let danger = Color("DamusDangerPrimary")
|
|
static let dangerSecondary = Color("DamusDangerSecondary")
|
|
static let dangerTertiary = Color("DamusDangerTertiary")
|
|
static let dangerQuaternary = Color("DamusDangerQuaternary")
|
|
static let dangerBorder = Color("DamusDangerBorder")
|
|
static let neutral1 = Color("DamusNeutral1")
|
|
static let neutral3 = Color("DamusNeutral3")
|
|
static let neutral6 = Color("DamusNeutral6")
|
|
static let pink = Color(red: 211/255.0, green: 76/255.0, blue: 217/255.0)
|
|
static let lighterPink = Color(red: 248/255.0, green: 105/255.0, blue: 182/255.0)
|
|
static let lightBackgroundPink = Color(red: 0xF8/255.0, green: 0xE7/255.0, blue: 0xF8/255.0)
|
|
}
|
|
|