parse
Version:
Parse JavaScript SDK
93 lines (92 loc) • 3.08 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _CoreManager = _interopRequireDefault(require("./CoreManager"));
function _interopRequireDefault(e) {
return e && e.__esModule ? e : {
default: e
};
}
const Storage = {
async() {
const controller = _CoreManager.default.getStorageController();
return !!controller.async;
},
getItem(path) {
const controller = _CoreManager.default.getStorageController();
if (controller.async === 1) {
throw new Error('Synchronous storage is not supported by the current storage controller');
}
return controller.getItem(path);
},
getItemAsync(path) {
const controller = _CoreManager.default.getStorageController();
if (controller.async === 1) {
return controller.getItemAsync(path);
}
return Promise.resolve(controller.getItem(path));
},
setItem(path, value) {
const controller = _CoreManager.default.getStorageController();
if (controller.async === 1) {
throw new Error('Synchronous storage is not supported by the current storage controller');
}
return controller.setItem(path, value);
},
setItemAsync(path, value) {
const controller = _CoreManager.default.getStorageController();
if (controller.async === 1) {
return controller.setItemAsync(path, value);
}
return Promise.resolve(controller.setItem(path, value));
},
removeItem(path) {
const controller = _CoreManager.default.getStorageController();
if (controller.async === 1) {
throw new Error('Synchronous storage is not supported by the current storage controller');
}
return controller.removeItem(path);
},
removeItemAsync(path) {
const controller = _CoreManager.default.getStorageController();
if (controller.async === 1) {
return controller.removeItemAsync(path);
}
return Promise.resolve(controller.removeItem(path));
},
getAllKeys() {
const controller = _CoreManager.default.getStorageController();
if (controller.async === 1) {
throw new Error('Synchronous storage is not supported by the current storage controller');
}
return controller.getAllKeys();
},
getAllKeysAsync() {
const controller = _CoreManager.default.getStorageController();
if (controller.async === 1) {
return controller.getAllKeysAsync();
}
return Promise.resolve(controller.getAllKeys());
},
generatePath(path) {
if (!_CoreManager.default.get('APPLICATION_ID')) {
throw new Error('You need to call Parse.initialize before using Parse.');
}
if (typeof path !== 'string') {
throw new Error('Tried to get a Storage path that was not a String.');
}
if (path[0] === '/') {
path = path.substr(1);
}
return 'Parse/' + _CoreManager.default.get('APPLICATION_ID') + '/' + path;
},
_clear() {
const controller = _CoreManager.default.getStorageController();
if (Object.hasOwn(controller, 'clear')) {
controller.clear();
}
}
};
var _default = exports.default = Storage;