summaryrefslogtreecommitdiffstats
path: root/webapp/stores
diff options
context:
space:
mode:
authorAkihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp>2017-02-08 00:20:01 +0900
committerenahum <nahumhbl@gmail.com>2017-02-07 07:20:01 -0800
commit68a05653ea6f2588a27c8ce523b0d213e48f6480 (patch)
tree4b99b1f3424ae83a4908386d53caa7dd09f8bf54 /webapp/stores
parent9bdea0de80a21b214eb9041057ab8e3fea681a8b (diff)
downloadchat-68a05653ea6f2588a27c8ce523b0d213e48f6480.tar.gz
chat-68a05653ea6f2588a27c8ce523b0d213e48f6480.tar.bz2
chat-68a05653ea6f2588a27c8ce523b0d213e48f6480.zip
Add webapp/utils/url.jsx (#5285)
webapp/utils/utils.jsx got big and that caused a potential circular dependency with webapp/stores/team_store.jsx. This change solves the issue by introducing webapp/utils/url.jsx and moving URL-related functions, which is not likely to depend on actions and stores, from webapp/utils/utils.jsx.
Diffstat (limited to 'webapp/stores')
-rw-r--r--webapp/stores/team_store.jsx11
1 files changed, 3 insertions, 8 deletions
diff --git a/webapp/stores/team_store.jsx b/webapp/stores/team_store.jsx
index 6de47c65c..2752c6b57 100644
--- a/webapp/stores/team_store.jsx
+++ b/webapp/stores/team_store.jsx
@@ -6,6 +6,7 @@ import EventEmitter from 'events';
import UserStore from 'stores/user_store.jsx';
import Constants from 'utils/constants.jsx';
+import {getSiteURL} from 'utils/url.jsx';
const ActionTypes = Constants.ActionTypes;
const CHANGE_EVENT = 'change';
@@ -122,10 +123,7 @@ class TeamStoreClass extends EventEmitter {
const current = this.getCurrent();
if (current) {
- // can't call Utils.getSiteURL here because that introduces a circular dependency
- const origin = window.mm_config.SiteURL || window.location.origin;
-
- return origin + '/signup_user_complete/?id=' + current.invite_id;
+ return getSiteURL() + '/signup_user_complete/?id=' + current.invite_id;
}
return '';
@@ -138,10 +136,7 @@ class TeamStoreClass extends EventEmitter {
return '';
}
- // can't call Utils.getSiteURL here because that introduces a circular dependency
- const origin = window.mm_config.SiteURL || window.location.origin;
-
- return origin + '/' + team.name;
+ return getSiteURL() + '/' + team.name;
}
getCurrentStats() {