@factoringplus/pl-components-pack-v3 0.5.2-pre-18 → 0.5.2-pre-19
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.
|
@@ -47217,6 +47217,7 @@ const useChannelsStore = defineStore("channels", {
|
|
|
47217
47217
|
return configStore.baseUrl;
|
|
47218
47218
|
},
|
|
47219
47219
|
unreadChannelsCount(state) {
|
|
47220
|
+
console.log("state in unreadChannelsCount", state);
|
|
47220
47221
|
return state.unreadChannels.active && state.unreadChannels.active.unreadChannelsCount || state.unreadChannels.new && state.unreadChannels.new.unreadChannelsCount;
|
|
47221
47222
|
},
|
|
47222
47223
|
isActiveChannel(state) {
|
|
@@ -47725,7 +47726,7 @@ const _sfc_main$d = {
|
|
|
47725
47726
|
const channelsStore = useChannelsStore();
|
|
47726
47727
|
const groupsStore = useGroupsStore();
|
|
47727
47728
|
const commonStore = useCommonStore();
|
|
47728
|
-
console.log("channelsStore", channelsStore);
|
|
47729
|
+
console.log("channelsStore in PlChatPopup", channelsStore);
|
|
47729
47730
|
const getChannelsInfo = async () => {
|
|
47730
47731
|
channelsStore.setIsLoadingChannels(true);
|
|
47731
47732
|
try {
|
|
@@ -50872,6 +50873,7 @@ const _sfc_main = {
|
|
|
50872
50873
|
const groupsStore = useGroupsStore();
|
|
50873
50874
|
const channelsStore = useChannelsStore();
|
|
50874
50875
|
const selectedChannelStore = useSelectedChannelStore();
|
|
50876
|
+
console.log("channelsStore in index", channelsStore);
|
|
50875
50877
|
const { channelCategory, isFilesList } = storeToRefs(channelsStore);
|
|
50876
50878
|
const getChannelsInfo = async () => {
|
|
50877
50879
|
configStore.getToken(token);
|
|
@@ -50920,7 +50922,7 @@ const _sfc_main = {
|
|
|
50920
50922
|
accessTokenFactory: () => `${token.value}`
|
|
50921
50923
|
}).configureLogging(LogLevel.Information).build();
|
|
50922
50924
|
await Promise.all([
|
|
50923
|
-
await connectSignalR("
|
|
50925
|
+
await connectSignalR("KIK", interactionsConnectionHub, "interactions"),
|
|
50924
50926
|
await interactionsConnectionHub.on("InteractionAddedNotification", (message2) => {
|
|
50925
50927
|
console.log("InteractionAddedNotification", message2);
|
|
50926
50928
|
updateChannels();
|