This website requires JavaScript.
Explore
Help
Sign In
haskal
/
jiti-meet
Watch
1
Star
0
Fork
You've already forked jiti-meet
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
c0de88ba8c
jiti-meet
/
react
/
features
/
invite
/
index.js
6 lines
101 B
JavaScript
Raw
Normal View
History
Unescape
Escape
feat: convert invite dialog to react and redux Converting the invite modal includes the following: - Creating new react components to display InviteDialog. The main parent components are ShareLink and PasswordOverview, the later handles displaying lock state and password editing. These components do not make use of atlaskit as the component for input does not yet support readonly, so for consistency within the modal content no atlaskit was used. - Using redux for keeping and accessing lock state instead of RoomLocker. - Publicly exposing the redux action lockStateChanged for direct calling on lock events experienced on the web client. - Removing Invite, InviteDialogView, and RoomLocker and references to them. - Handling errors that occur when setting a password to preserve existing web funtionality.
2017-04-13 00:23:43 +00:00
export
*
from
'./actions'
;
export
*
from
'./components'
;
feat(invite): include dial-in numbers in the invite modal Create a new React Component for displaying a list of dial-in numbers. The Component will fetch the numbers from a new numberRetreviewUrl key/value set in config. If not present in config, the Component will not be displayed.
2017-04-20 23:28:03 +00:00
import
'./reducer'
;
SQUASH: changes based on feedback: rename, handle error
2017-05-19 22:35:10 +00:00
import
'./middleware'
;