summaryrefslogtreecommitdiffstats
path: root/web/react/stores/error_store.jsx
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-02-26 09:49:29 -0800
committer=Corey Hulen <corey@hulen.com>2016-02-26 09:49:29 -0800
commita0cc464c973fe0b2ca8aa1fa386656435bdbfbec (patch)
tree77646ea56732d30d87e975b9ccccae273f6a1915 /web/react/stores/error_store.jsx
parentce5ea641aafa269aad44d1d3dd31db30e8fc2b04 (diff)
downloadchat-a0cc464c973fe0b2ca8aa1fa386656435bdbfbec.tar.gz
chat-a0cc464c973fe0b2ca8aa1fa386656435bdbfbec.tar.bz2
chat-a0cc464c973fe0b2ca8aa1fa386656435bdbfbec.zip
PLT-2030 fixing error handling
Diffstat (limited to 'web/react/stores/error_store.jsx')
-rw-r--r--web/react/stores/error_store.jsx20
1 files changed, 15 insertions, 5 deletions
diff --git a/web/react/stores/error_store.jsx b/web/react/stores/error_store.jsx
index 5afcefd12..6928b1e59 100644
--- a/web/react/stores/error_store.jsx
+++ b/web/react/stores/error_store.jsx
@@ -18,7 +18,6 @@ class ErrorStoreClass extends EventEmitter {
this.emitChange = this.emitChange.bind(this);
this.addChangeListener = this.addChangeListener.bind(this);
this.removeChangeListener = this.removeChangeListener.bind(this);
- this.handledError = this.handledError.bind(this);
this.getLastError = this.getLastError.bind(this);
this.storeLastError = this.storeLastError.bind(this);
}
@@ -35,10 +34,6 @@ class ErrorStoreClass extends EventEmitter {
this.removeListener(CHANGE_EVENT, callback);
}
- handledError() {
- BrowserStore.removeItem('last_error');
- }
-
getLastError() {
return BrowserStore.getItem('last_error');
}
@@ -47,8 +42,23 @@ class ErrorStoreClass extends EventEmitter {
BrowserStore.setItem('last_error', error);
}
+ getConnectionErrorCount() {
+ var count = BrowserStore.getItem('last_error_conn');
+
+ if (count == null) {
+ return 0;
+ }
+
+ return count;
+ }
+
+ setConnectionErrorCount(count) {
+ BrowserStore.setItem('last_error_conn', count);
+ }
+
clearLastError() {
BrowserStore.removeItem('last_error');
+ BrowserStore.removeItem('last_error_conn');
}
}