62 lines
1.3 KiB
JavaScript
62 lines
1.3 KiB
JavaScript
import realm from './realm';
|
|
import Meteor from 'react-native-meteor';
|
|
|
|
export function connect(cb) {
|
|
const currentServer = realm.objects('servers').filtered('current = true')[0];
|
|
const url = `${ currentServer.id }/websocket`;
|
|
|
|
console.log('CONNECTING TO', url);
|
|
|
|
Meteor.connect(url);
|
|
|
|
Meteor.ddp.on('connected', function() {
|
|
console.log('connected');
|
|
|
|
Meteor.call('public-settings/get', function(err, data) {
|
|
if (err) {
|
|
console.error(err);
|
|
}
|
|
|
|
realm.write(() => {
|
|
data.forEach(item => {
|
|
const setting = {
|
|
_id: item._id
|
|
};
|
|
if (typeof item.value === 'string') {
|
|
setting.value = item.value;
|
|
}
|
|
realm.create('settings', setting, true);
|
|
});
|
|
});
|
|
|
|
cb();
|
|
});
|
|
});
|
|
}
|
|
|
|
export function loginWithPassword(selector, password, cb) {
|
|
console.log(0);
|
|
Meteor.loginWithPassword(selector, password, function() {
|
|
console.log(1);
|
|
Meteor.call('subscriptions/get', function(err, data) {
|
|
console.log(2, err);
|
|
if (err) {
|
|
console.error(err);
|
|
}
|
|
|
|
realm.write(() => {
|
|
data.forEach(subscription => {
|
|
// const subscription = {
|
|
// _id: item._id
|
|
// };
|
|
// if (typeof item.value === 'string') {
|
|
// subscription.value = item.value;
|
|
// }
|
|
realm.create('subscriptions', subscription, true);
|
|
});
|
|
});
|
|
});
|
|
cb();
|
|
});
|
|
}
|