Skip to content
Snippets Groups Projects
Commit 6781b305 authored by Rodrigo Nascimento's avatar Rodrigo Nascimento
Browse files

Fix add new server view

parent 9f31e260
No related branches found
No related tags found
No related merge requests found
......@@ -2,8 +2,7 @@ import React from 'react';
import PropTypes from 'prop-types';
import { TextInput, StyleSheet } from 'react-native';
import realm from '../lib/realm';
import { connect } from '../lib/meteor';
import RocketChat from '../lib/meteor';
import KeyboardView from '../components/KeyboardView';
......@@ -44,8 +43,6 @@ export default class NewServerView extends React.Component {
text: ''
};
const { navigate } = this.props.navigation;
this.submit = () => {
let url = this.state.text.trim();
if (!url) {
......@@ -61,14 +58,8 @@ export default class NewServerView extends React.Component {
url = `https://${ url }`;
}
realm.write(() => {
realm.objects('servers').filtered('current = true').forEach(item => (item.current = false));
realm.create('servers', { id: url, current: true }, true);
});
connect(() => {
navigate('ListServer', { newServer: url });
});
RocketChat.currentServer = url;
this.props.navigation.dispatch({ type: 'Navigation/BACK' });
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment