Total rebrand across KMM project: - Kotlin package: com.example.casera -> com.tt.honeyDue (dirs + declarations) - Gradle: rootProject.name, namespace, applicationId - Android: manifest, strings.xml (all languages), widget resources - iOS: pbxproj bundle IDs, Info.plist, entitlements, xcconfig - iOS directories: Casera/ -> HoneyDue/, CaseraTests/ -> HoneyDueTests/, etc. - Swift source: all class/struct/enum renames - Deep links: casera:// -> honeydue://, .casera -> .honeydue - App icons replaced with honeyDue honeycomb icon - Domains: casera.treytartt.com -> honeyDue.treytartt.com - Bundle IDs: com.tt.casera -> com.tt.honeyDue - Database table names preserved Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
39 lines
1000 B
Kotlin
39 lines
1000 B
Kotlin
package com.tt.honeyDue.data
|
|
|
|
import kotlinx.browser.localStorage
|
|
|
|
/**
|
|
* WasmJS implementation of PersistenceManager using browser localStorage.
|
|
*/
|
|
actual class PersistenceManager {
|
|
actual fun save(key: String, value: String) {
|
|
localStorage.setItem(key, value)
|
|
}
|
|
|
|
actual fun load(key: String): String? {
|
|
return localStorage.getItem(key)
|
|
}
|
|
|
|
actual fun remove(key: String) {
|
|
localStorage.removeItem(key)
|
|
}
|
|
|
|
actual fun clear() {
|
|
// Remove all items with our prefix
|
|
val keysToRemove = mutableListOf<String>()
|
|
for (i in 0 until localStorage.length) {
|
|
val key = localStorage.key(i) ?: continue
|
|
if (key.startsWith("dm_")) {
|
|
keysToRemove.add(key)
|
|
}
|
|
}
|
|
keysToRemove.forEach { localStorage.removeItem(it) }
|
|
}
|
|
|
|
companion object {
|
|
private val instance by lazy { PersistenceManager() }
|
|
|
|
fun getInstance(): PersistenceManager = instance
|
|
}
|
|
}
|