All files / src/redux/slices/conversations index.ts

86.48% Statements 32/37
100% Branches 0/0
77.27% Functions 17/22
85.29% Lines 29/34

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231                        540x                                                                                     540x               18x                       6x                             10x                   1x 1x                                         3x             6x         1x             3x                     1x           2x           9x       9x       9x     9x                               9x           9x                                         540x 5016x 540x 4907x 540x 540x 540x 630x   540x 581x    
import { RootState } from "@redux/types/store";
import { createSlice, PayloadAction } from "@reduxjs/toolkit";
import {
  Screen,
  Tabs_Types,
  Replies,
  ConversationsTopics,
  TComment,
  TThreadInfo,
} from "features/Minibuilders/Conversations/types";
import { Conversation } from "./types";
 
const initialState: Conversation = {
  modal: {
    isOpen: false,
    isExpanded: false,
  },
  generalSearch: {
    queryKey: "",
    queryString: "",
  },
  generalFilter: {
    filterString: "",
  },
  topic: {
    numberOfUnreadMessages: 0,
    isOpen: false,
    queryString: "",
    isOpenedFromSidePanel: undefined,
    queryObject: {
      id: undefined,
      name: "",
      paths: [],
      defaultMessage: "",
      challengeId: undefined,
      challengeTypeName: "enhanced_due_diligence",
      closeOnPost: false,
      escalationIds: undefined,
      factorId: undefined,
      merchantId: undefined,
      shouldHideMentionIcon: true,
      tabs: "Internal",
    },
    tabs: "Internal",
    hideInputs: [],
  },
  comment: {
    isRepliesOpen: false,
    threadId: undefined,
    commentId: undefined,
    index: undefined,
  },
  threads: [],
};
 
const ConversationsSlice = createSlice({
  name: "conversation",
  initialState,
  reducers: {
    setModalOpenConversation: (
      state: Conversation,
      action: PayloadAction<boolean>,
    ) => {
      state.modal.isOpen = action.payload;
    },
    setActiveTabs: (
      state: Conversation,
      action: PayloadAction<{ tabs: Tabs_Types }>,
    ) => {
      state.topic.queryObject.tabs = action.payload.tabs;
    },
    setConversationsGeneralSearchQueryString: (
      state: Conversation,
      action: PayloadAction<{ queryKey: Screen; queryString: string }>,
    ) => {
      state.generalSearch = {
        ...state.generalSearch,
        ...action.payload,
      };
    },
    setConversationsFilter: (
      state: Conversation,
      action: PayloadAction<string>,
    ) => {
      state.generalFilter.filterString = action.payload;
    },
    setConversationTopic: (
      state: Conversation,
      action: PayloadAction<Partial<ConversationsTopics>>,
    ) => {
      state.topic = {
        ...state.topic,
        ...action.payload,
        queryObject: {
          ...state.topic?.queryObject,
          ...action.payload.queryObject,
        },
      };
    },
    resetConversationTopic: (state: Conversation) => {
      state.topic.queryObject.defaultMessage = "";
      state.topic.queryObject.paths = [];
    },
    setTopicName: (state: Conversation, action: PayloadAction<string>) => {
      state.topic = {
        ...state.topic,
        queryObject: {
          ...state.topic.queryObject,
          name: action.payload,
        },
      };
    },
    setExpandConversationsModal: (
      state: Conversation,
      action: PayloadAction<boolean>,
    ) => {
      state.modal.isExpanded = action.payload;
    },
    setReplies: (
      state: Conversation,
      action: PayloadAction<Partial<Replies>>,
    ) => {
      state.comment = { ...state.comment, ...action.payload };
    },
 
    setThreads: (
      state: Conversation,
      action: PayloadAction<Array<TThreadInfo>>,
    ) => {
      (state.threads = []),
        (state.threads = [...state.threads, ...action.payload]);
    },
 
    resetThreads: (state: Conversation) => {
      state.threads = [];
    },
 
    setTemporaryThreads: (
      state: Conversation,
      action: PayloadAction<Array<TThreadInfo>>,
    ) => {
      state.threads = [...state.threads, ...action.payload];
    },
 
    setThreadError: (state: Conversation) => {
      state.threads[state.threads.length - 1]["isError"] = true;
    },
 
    setTmpReplyMessages: (
      state: Conversation,
      action: PayloadAction<{ threadIndex: number; message: TComment }>,
    ) => {
      state.threads[action.payload.threadIndex].messages = [
        ...state.threads[action.payload.threadIndex].messages,
        action.payload.message,
      ];
    },
    resetHiddenInputs: (state: Conversation) => {
      state.topic = {
        ...state.topic,
        hideInputs: [],
      };
    },
    resetConversationsState: (state: Conversation) => {
      state.modal = {
        isOpen: false,
        isExpanded: false,
      };
      state.generalSearch = {
        queryKey: "",
        queryString: "",
      };
      state.generalFilter = {
        filterString: "",
      };
      state.topic = {
        numberOfUnreadMessages: state.topic.numberOfUnreadMessages,
        isOpen: false,
        queryString: "",
        queryObject: {
          id: undefined,
          name: "",
          paths: [],
          shouldHideMentionIcon: true,
          tabs: "Internal",
          challengeTypeName: "enhanced_due_diligence",
          closeOnPost: false,
        },
        tabs: "Internal",
        hideInputs: [],
      };
      state.comment = {
        isRepliesOpen: false,
        threadId: undefined,
        commentId: undefined,
        index: undefined,
      };
      state.threads = [];
    },
  },
});
 
export const {
  setModalOpenConversation,
  setConversationsGeneralSearchQueryString,
  setConversationTopic,
  setReplies,
  setTemporaryThreads,
  setConversationsFilter,
  setThreads,
  resetThreads,
  setThreadError,
  setTmpReplyMessages,
  resetConversationsState,
  resetHiddenInputs,
  setTopicName,
  setActiveTabs,
  resetConversationTopic,
} = ConversationsSlice.actions;
export const selectConversation = (state: RootState) => state.conversations;
export const selectConversationTopic = (state: RootState) =>
  state.conversations.topic;
export const selectThreads = (state: RootState) => state.conversations.threads;
export const selectReplies = (state: RootState) => state.conversations.comment;
export const selectConversationsGeneralSearch = (state: RootState) =>
  state.conversations.generalSearch;
 
export const selectConversationsFilter = (state: RootState) =>
  state.conversations.generalFilter;
export default ConversationsSlice.reducer;