@messenger-box/platform-browser 0.0.1-alpha.102 → 0.0.1-alpha.107
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.0.1-alpha.107](https://github.com/cdmbase/messenger-box/compare/v0.0.1-alpha.106...v0.0.1-alpha.107) (2021-12-07)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @messenger-box/platform-browser
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.0.1-alpha.102](https://github.com/cdmbase/messenger-box/compare/v0.0.1-alpha.101...v0.0.1-alpha.102) (2021-12-03)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @messenger-box/platform-browser
|
package/lib/index.js
CHANGED
|
@@ -1565,6 +1565,8 @@ const MessagesList = ({ userMessagesList, handleShowSideBar, handleDeleteMessage
|
|
|
1565
1565
|
const [show, setShow] = react_1.useState(false);
|
|
1566
1566
|
const [showAddMember, setShowAddMember] = react_1.useState(false);
|
|
1567
1567
|
const [inputValue, setInputValue] = react_1.useState({ id: '', msg: '' });
|
|
1568
|
+
console.log('-------Selected channel for chatting---------', channel);
|
|
1569
|
+
console.log('-------All messages for selected channel---------', userMessagesList);
|
|
1568
1570
|
const emojiClick = (msgId, id) => {
|
|
1569
1571
|
setDisplayEmoji(!displayEmoji);
|
|
1570
1572
|
setMsgIndex(msgId);
|
|
@@ -22764,6 +22766,10 @@ const Dashboard = () => {
|
|
|
22764
22766
|
root_div: 'root_div'
|
|
22765
22767
|
});
|
|
22766
22768
|
const currentUserAuth0Id = react_redux_1.useSelector((state) => state.user.auth0UserId);
|
|
22769
|
+
console.log('------current logged-in user------', currentUser);
|
|
22770
|
+
console.log('------all channels------', channels);
|
|
22771
|
+
console.log('------public channels------', publicChannels);
|
|
22772
|
+
console.log('------direct channels------', directChannels);
|
|
22767
22773
|
let token;
|
|
22768
22774
|
react_1.useEffect(() => {
|
|
22769
22775
|
token = window.localStorage.getItem("access_token");
|