mirror of
https://github.com/scratchfoundation/scratch-extension-docs.git
synced 2024-11-27 01:45:44 -05:00
46 lines
No EOL
1.3 KiB
JavaScript
46 lines
No EOL
1.3 KiB
JavaScript
/* Extension using the JavaScript localStorage API */
|
|
/* Sayamindu Dasgupta <sayamindu@media.mit.edu>, April 2014 */
|
|
|
|
new (function() {
|
|
var ext = this;
|
|
|
|
ext.set_localstorage = function (data) {
|
|
localStorage.setItem(app.projectModel.id.toString(), data);
|
|
};
|
|
|
|
ext.change_localstorage = function(change) {
|
|
var data = localStorage.getItem(app.projectModel.id.toString());
|
|
if (!isNaN(parseFloat(data))) {
|
|
localStorage.setItem(app.projectModel.id.toString(), parseFloat(data) + change);
|
|
}
|
|
};
|
|
|
|
ext.get_localstorage = function () {
|
|
return localStorage.getItem(app.projectModel.id.toString());
|
|
};
|
|
|
|
ext._shutdown = function() {};
|
|
|
|
|
|
ext._getStatus = function() {
|
|
var test = 'test';
|
|
try {
|
|
localStorage.setItem(test, test);
|
|
localStorage.removeItem(test);
|
|
} catch(e) {
|
|
return {status: 1, msg: 'Your browser does not support the localStorage API'};
|
|
}
|
|
|
|
return {status: 2, msg: 'Ready'};
|
|
};
|
|
|
|
var descriptor = {
|
|
blocks: [
|
|
['', 'set local data to %s', 'set_localstorage', '0'],
|
|
['', 'change local data by %d', 'change_localstorage', 1],
|
|
['r', 'local data', 'get_localstorage'],
|
|
],
|
|
};
|
|
|
|
ScratchExtensions.register('Local Storage', descriptor, ext);
|
|
})(); |