| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- import { _decorator } from 'cc';
- import { APP_NAME } from '../A-FRAME/frame.config';
- const { ccclass, property } = _decorator;
- @ccclass('LocalStorageMgr')
- export class LocalStorageMgr {
- public static userId_key = 'userId_key';
- public static country_key = 'country_key';
- public static language_key = 'language_key';
- public static device_id_key = 'device_id_key';
- public static localdataStore = {
- initUser: 'initUser',
- userInfo: 'userInfo',
- ConfCountry: 'ConfCountry',
- ConfCommon: 'ConfCommon',
- WithdrawConfig: 'WithdrawConfig',
- GetNewComerReward: 'GetNewComerReward',
- LotteryConfig: 'LotteryConfig',
- ForcePopConfig: 'ForcePopConfig',
- ForcePopReport: 'ForcePopReport',
- MissionReport: 'MissionReport',
- EliminateReport: 'EliminateReport',
- WithDraw: 'WithDraw',
- };
- public static isWDNewWard_key = 'isWDNewWard_key';
- public static gameInitFinish_key = "gameInitFinish_key";
- public static fullscTimes_key = 'fullscTimes_key';
- public static refrashPropNum_key = 'refrashProp_key';
- public static hummerPropNum_key = 'hummerProp_key';
- public static luckyWardNorgetTimes_key = 'luckyWardNorgetTimes_key';
- public static curlotteryTimes_key = 'curlotteryTimes_key';
- public static isCommer_key = 'isCommer_key';
- public static guideRecord_key = 'guideRecord_key';
- public static localBoard_key = 'localBoard_key';
- public static elimiTimes_key = 'elimiTimes_key';
- public static tempElimiTimes_lucky_key = 'tempElimiTimes_lucky_key';
- public static tempElimiTimes_lottery_key = 'tempElimiTimes_lottery_key';
- public static lastGameBoardData_key = 'lastGameBoardData_key';
- public static lastLoginDate_key = 'lastLoginDate_key';
- public static historyHighScore_key = 'historyHighScore_key';
- public static todayHighScore_key = 'todayHighScore_key';
- public static curScore_key = 'curScore_key';
- static wdlevelCahs_key: string = 'wdlevelCahs_key';
- static redPacket_key: string = 'redPacket_key';
- /**
- * 存储数据到本地存储中
- * @param key APP_NAME + 存储数据的键
- * @param value 存储的数据,任意类型
- */
- public static setItem(key: string, value: any): void {
- try {
- localStorage.setItem(APP_NAME + key, JSON.stringify(value));
- } catch (e) {
- console.error(`Failed to save data to localStorage: ${APP_NAME + key}`, e);
- }
- }
- /**
- * 从本地存储中获取数据
- * @param key APP_NAME + 存储数据的键
- * @param defaultValue 如果没有找到指定键的数据,返回的默认值
- * @returns 返回找到的数据或默认值
- */
- public static getItem<T>(key: string, defaultValue: T = null): T {
- try {
- const value = localStorage.getItem(APP_NAME + key);
- if (value === null || value === undefined) {
- return defaultValue;
- }
- return JSON.parse(value) as T;
- } catch (e) {
- console.error(`Failed to retrieve data from localStorage: ${APP_NAME + key}`, e);
- return defaultValue;
- }
- }
- /**
- * 判断本地存储中是否有指定键的数据
- * @param key APP_NAME + 存储数据的键
- * @returns 返回是否存在指定键的数据
- */
- public static hasItem(key: string): boolean {
- try {
- const value = localStorage.getItem(APP_NAME + key);
- return value !== null && value !== undefined;
- } catch (e) {
- console.error(`Failed to check localStorage for key: ${APP_NAME + key}`, e);
- return false;
- }
- }
- /**
- * 移除本地存储中指定键的数据
- * @param key APP_NAME + 存储数据的键
- */
- public static removeItem(key: string): void {
- try {
- localStorage.removeItem(APP_NAME + key);
- } catch (e) {
- console.error(`Failed to remove data from localStorage: ${APP_NAME + key}`, e);
- }
- }
- /**
- * 清空本地存储中所有数据
- */
- public static clear(): void {
- try {
- localStorage.clear();
- } catch (e) {
- console.error(`Failed to clear localStorage`, e);
- }
- }
- }
|