saltfish 0.3.6 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/services/PlayerInitializationService.d.ts.map +1 -1
- package/dist/managers/PlaylistManager.d.ts.map +1 -1
- package/dist/managers/StorageManager.d.ts +2 -9
- package/dist/managers/StorageManager.d.ts.map +1 -1
- package/dist/player.js +2 -2
- package/dist/player.min.js +2 -2
- package/dist/saltfish-playlist-player.es.js +18 -44
- package/dist/saltfish-playlist-player.umd.js +1 -1
- package/package.json +1 -1
|
@@ -1163,43 +1163,12 @@ const _StorageManager = class _StorageManager {
|
|
|
1163
1163
|
// Anonymous User ID Methods
|
|
1164
1164
|
// =============================================================================
|
|
1165
1165
|
/**
|
|
1166
|
-
* Get anonymous user ID
|
|
1166
|
+
* Get anonymous user ID from the anonymous user data object
|
|
1167
|
+
* This reads from the same key as getAnonymousUserData() for consistency
|
|
1167
1168
|
*/
|
|
1168
1169
|
getAnonymousUserId() {
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
}
|
|
1172
|
-
try {
|
|
1173
|
-
return localStorage.getItem("saltfish_anonymous_user_id");
|
|
1174
|
-
} catch (error2) {
|
|
1175
|
-
return null;
|
|
1176
|
-
}
|
|
1177
|
-
}
|
|
1178
|
-
/**
|
|
1179
|
-
* Set anonymous user ID
|
|
1180
|
-
*/
|
|
1181
|
-
setAnonymousUserId(userId) {
|
|
1182
|
-
if (!this.isLocalStorageAvailable) {
|
|
1183
|
-
return false;
|
|
1184
|
-
}
|
|
1185
|
-
try {
|
|
1186
|
-
localStorage.setItem("saltfish_anonymous_user_id", userId);
|
|
1187
|
-
return true;
|
|
1188
|
-
} catch (error2) {
|
|
1189
|
-
return false;
|
|
1190
|
-
}
|
|
1191
|
-
}
|
|
1192
|
-
/**
|
|
1193
|
-
* Clear anonymous user ID
|
|
1194
|
-
*/
|
|
1195
|
-
clearAnonymousUserId() {
|
|
1196
|
-
if (!this.isLocalStorageAvailable) {
|
|
1197
|
-
return;
|
|
1198
|
-
}
|
|
1199
|
-
try {
|
|
1200
|
-
localStorage.removeItem("saltfish_anonymous_user_id");
|
|
1201
|
-
} catch (error2) {
|
|
1202
|
-
}
|
|
1170
|
+
const data = this.getAnonymousUserData();
|
|
1171
|
+
return (data == null ? void 0 : data.userId) || null;
|
|
1203
1172
|
}
|
|
1204
1173
|
// =============================================================================
|
|
1205
1174
|
// Utility Methods
|
|
@@ -1211,7 +1180,6 @@ const _StorageManager = class _StorageManager {
|
|
|
1211
1180
|
this.clearProgress();
|
|
1212
1181
|
this.clearSession();
|
|
1213
1182
|
this.clearAnonymousUserData();
|
|
1214
|
-
this.clearAnonymousUserId();
|
|
1215
1183
|
}
|
|
1216
1184
|
/**
|
|
1217
1185
|
* Get storage availability status
|
|
@@ -2123,11 +2091,18 @@ class PlayerInitializationService {
|
|
|
2123
2091
|
if (typeof window === "undefined") {
|
|
2124
2092
|
return `anonymous_${Date.now()}_${Math.random().toString(36).substring(2, 11)}`;
|
|
2125
2093
|
}
|
|
2126
|
-
|
|
2127
|
-
if (
|
|
2128
|
-
|
|
2129
|
-
|
|
2094
|
+
const existingData = this.managers.storageManager.getAnonymousUserData();
|
|
2095
|
+
if (existingData == null ? void 0 : existingData.userId) {
|
|
2096
|
+
log(`[PlayerInitializationService.getOrCreateAnonymousUserId] Using existing anonymous user ID: ${existingData.userId}`);
|
|
2097
|
+
return existingData.userId;
|
|
2130
2098
|
}
|
|
2099
|
+
const anonymousUserId = `anonymous_${Date.now()}_${Math.random().toString(36).substring(2, 11)}`;
|
|
2100
|
+
this.managers.storageManager.setAnonymousUserData({
|
|
2101
|
+
userId: anonymousUserId,
|
|
2102
|
+
userData: {},
|
|
2103
|
+
watchedPlaylists: {},
|
|
2104
|
+
timestamp: Date.now()
|
|
2105
|
+
});
|
|
2131
2106
|
return anonymousUserId;
|
|
2132
2107
|
}
|
|
2133
2108
|
destroy() {
|
|
@@ -10054,14 +10029,13 @@ class PlaylistManager {
|
|
|
10054
10029
|
* @param options - Playlist configuration options
|
|
10055
10030
|
*/
|
|
10056
10031
|
async load(playlistId, options) {
|
|
10057
|
-
var _a
|
|
10032
|
+
var _a;
|
|
10058
10033
|
try {
|
|
10059
10034
|
const store = getSaltfishStore();
|
|
10060
10035
|
if (!store) {
|
|
10061
10036
|
throw new Error("Store not available");
|
|
10062
10037
|
}
|
|
10063
|
-
const
|
|
10064
|
-
const savedProgress = isAnonymous ? store.progress : ((_b = store.userData) == null ? void 0 : _b.watchedPlaylists) || store.progress;
|
|
10038
|
+
const savedProgress = ((_a = store.userData) == null ? void 0 : _a.watchedPlaylists) || store.progress;
|
|
10065
10039
|
const loadResult = await this.playlistLoader.loadManifest({
|
|
10066
10040
|
manifestPath: playlistId,
|
|
10067
10041
|
playlistOptions: options,
|
|
@@ -11251,7 +11225,7 @@ const SaltfishPlayer$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.de
|
|
|
11251
11225
|
__proto__: null,
|
|
11252
11226
|
SaltfishPlayer
|
|
11253
11227
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
11254
|
-
const version = "0.3.
|
|
11228
|
+
const version = "0.3.8";
|
|
11255
11229
|
const packageJson = {
|
|
11256
11230
|
version
|
|
11257
11231
|
};
|