I'm trying to make a basic Sencha Touch app with 2.2.1 that will work offline following this example. What I have so far is more or less a direct clone of that with some different fields and it's working great in browser.
On Chrome for instance, I can see items being stored to localStorage
which are then read in if I turn off my computer's internet connection. However on iOS, I try saving the app to homescreen and it works great while connected. However once I've put my device in airplane mode the localStorage
appears to be empty and my list comes up empty.
I've tried having a local copy of the JSON data but that doesn't seem to get stored on iOS via the cache.manifest
so that's not a fallback option either. Is there any way to get this working in the browser/homescreen on iOS? Thank you.
The key controller code that updates the caches is as follows (note it matches the example above with the exception of some different model/store names):
init: function () {
var onlineStore = Ext.getStore('Tables'),
localStore = Ext.create('Ext.data.Store', {
model: "MyApp.model.OfflineTable"
}),
me = this;
localStore.load();
/*
* When app is online, store all the records to HTML5 local storage.
* This will be used as a fallback if app is offline more
*/
onlineStore.on('refresh', function (store, records) {
// Get rid of old records, so store can be repopulated with latest details
localStore.getProxy().clear();
store.each(function(record) {
var rec = {
id: record.data.id,
text: record.data.text,
content: record.data.content,
group: record.data.group
};
localStore.add(rec);
localStore.sync();
});
console.log("Setting local store of size " + localStore.getCount());
console.log("Item 0 is " + localStore.getAt(0).data.text);
});
/*
* If app is offline a Proxy exception will be thrown. If that happens then use
* the fallback / local stoage store instead
*/
onlineStore.getProxy().on('exception', function () {
me.getTables().setStore(localStore); //rebind the view to the local store
console.log("Getting local store of size " + localStore.getCount());
console.log("Item 0 is " + localStore.getAt(0).data.text);
localStore.each(function(record) {
console.log(record);
});
localStore.load(); // This causes the "loading" mask to disappear
Ext.Msg.alert('Notice', 'You are in offline mode', Ext.emptyFn); //alert the user that they are in offline mode
});
}
It's from the console.log
calls above that I can see my localStorage
is looking great on browser and while connected, but empty once disconnected on iOS (though still fine offline on desktop).
My offline model is:
Ext.define('MyApp.model.OfflineTable', {
extend: 'Ext.data.Model',
config: {
fields: [
"id",
"text",
"content",
"group"
],
identifier:'uuid', // needed to avoid console warnings!
proxy: {
type: 'localstorage',
id: 'offlineTableData'
}
}
});
And my online model is simply
Ext.define('MyApp.model.Table', {
extend: 'Ext.data.Model',
config: {
fields: [
"id",
"text",
"content",
"group"
]
}
});
Lastly my store is:
Ext.define('MyApp.store.Tables', {
extend: 'Ext.data.Store',
config: {
model: 'MyApp.model.Table',
proxy: {
timeout: 3000,
type: 'ajax',
url: /* DATA URL */
},
autoLoad: true
}
});
Try creating both stores from the Ext.Application instead of:
Ext.create('Ext.data.Store', {model: "MyApp.model.OfflineTable"})
using the same model and replicate the contents on the online-store (TablesRemote) load callback:TablesRemote:
TablesLocal:
Then you should always access data using
MyApp.store.TablesLocal
.Hope it helps-