Moved InviteMemberModal to be controlled by a store

Этот коммит содержится в:
hmhealey
2015-11-02 17:35:59 -05:00
родитель 02b9414e0f
Коммит 6428878e20
9 изменённых файлов: 91 добавлений и 47 удалений

Просмотреть файл

@@ -3,6 +3,7 @@
// See License.txt for license information.
const Utils = require('./utils.jsx');
const InviteMemberModal = require('../components/invite_member_modal.jsx');
const UserProfile = require('../components/user_profile.jsx');
const ChannelStore = require('../stores/channel_store.jsx');
const Constants = require('../utils/constants.jsx');
@@ -109,8 +110,7 @@ export function createDefaultIntroMessage(channel) {
<a
className='intro-links'
href='#'
data-toggle='modal'
data-target='#invite_member'
onClick={InviteMemberModal.show}
>
<i className='fa fa-user-plus'></i>{'Invite others to this team'}
</a>
@@ -186,8 +186,6 @@ export function createStandardIntroMessage(channel) {
);
}
// TODO show channel_invite modal now that it's a React-Bootstrap modal
return (
<div className='channel-intro'>
<h4 className='channel-intro__title'>{'Beginning of ' + uiName}</h4>

Просмотреть файл

@@ -39,7 +39,8 @@ module.exports = {
RECIEVED_LOGS: null,
RECIEVED_ALL_TEAMS: null,
TOGGLE_IMPORT_THEME_MODAL: null
TOGGLE_IMPORT_THEME_MODAL: null,
TOGGLE_INVITE_MEMBER_MODAL: null
}),
PayloadSources: keyMirror({