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