{"version":3,"file":"static/js/414.dd42831c.chunk.js","mappings":"gPAMe,SAASA,EAAgBC,GACpC,IAAMC,GAAUC,EAAAA,EAAAA,MACVC,GAAWC,EAAAA,EAAAA,MACjB,GAAkCC,EAAAA,EAAAA,eAASC,GAA3C,eAAOC,EAAP,KAAkBC,EAAlB,KACA,GAAgCH,EAAAA,EAAAA,eAASC,GAAzC,eAAOG,EAAP,KAAiBC,EAAjB,KACA,GAAoDL,EAAAA,EAAAA,WAAS,GAA7D,eAAOM,EAAP,KAA2BC,EAA3B,KACQC,GAASC,EAAAA,EAAAA,KAAY,SAACC,GAAD,OAAWA,EAAMC,YAAtCH,MAERI,EAAAA,EAAAA,YAAU,WACNC,MACD,CAACf,EAASgB,WAEb,IAAMD,EAAoB,gBACJZ,IAAdC,EACAa,KAEyB,IAArBb,EAAUc,SACVd,EAAUe,cACVF,OAIZH,EAAAA,EAAAA,YAAU,WACN,IAAMR,EAAWC,GAAY,WACzBQ,MACD,KACHR,EAAYD,KACb,CAACF,KAEJU,EAAAA,EAAAA,YAAU,WAON,YANaX,IAATO,KAC2B,IAAvBF,GACAY,IAEJH,KAEG,gBACed,IAAdC,IACAA,EAAUe,cACVd,OAAaF,SAEAA,IAAbG,GACAe,cAAcf,MAGvB,CAACI,KACJI,EAAAA,EAAAA,YAAU,YACqB,IAAvBN,GACAc,MAEL,CAACd,IAEJ,IAAMc,EAAkB,WACM,mBAAtBtB,EAASgB,WACiB,eAAtBhB,EAASgB,SACTlB,EAAQyB,GAAG,cAEXzB,EAAQ0B,KAAK,gBAMnBJ,EAA6B,WAC/BK,EAAAA,EAAAA,SAAYC,EAAAA,EAAAA,IAAiBC,EAAAA,GAAmB,CAAEC,MAAO,KACpDC,MAAK,SAACC,GAAS,IAAD,IACPC,EAAe,UAAGD,EAAIE,YAAP,iBAAG,EAAUC,oBAAb,aAAG,EAAwBC,MAC9C,GAAIH,EAAgBI,OAAS,EAAG,CAC5B,IAAMC,EAAqB1B,EAAK2B,kBACL,OAAvBD,QAIqCjC,IAAjC4B,EAAgB,GAAGO,WACnBP,EAAgB,GAAGO,UAAYF,IAJnC3B,GAAsB,OAWjC8B,OAAM,SAACC,GACJC,QAAQC,MAAM,iDAAkDF,OAGtEvB,EAA6B,WAC/B,IAAM0B,EAAMlB,EAAAA,EAAAA,SAAYC,EAAAA,EAAAA,IAAiBkB,EAAAA,KAAiBC,UAAU,CAChEC,KAAM,SAACC,GACHzB,KAEJoB,MAAO,SAACA,GAAD,OAAWD,QAAQO,KAAKN,MAEnCrC,EAAasC,IAGjB,OAAO","sources":["main_components/processors/NoticeProcessor.js"],"sourcesContent":["import { useEffect, useState } from \"react\"\nimport { useHistory, useLocation } from \"react-router\"\nimport { API, graphqlOperation } from \"@aws-amplify/api\"\nimport { byNoticeTypeRedux, onCreateNotice } from \"../../graphql/custom/custom_queries\"\nimport { useSelector } from \"react-redux\"\n\nexport default function NoticeProcessor(props) {\n const history = useHistory()\n const location = useLocation()\n const [noticeSub, setNoticeSub] = useState(undefined)\n const [interval, setInterval] = useState(undefined)\n const [shouldGoToWhatsNew, setShouldGoToWhatsNew] = useState(false)\n const { user } = useSelector((state) => state.userInfo)\n\n useEffect(() => {\n checkSubscription()\n }, [location.pathname])\n\n const checkSubscription = () => {\n if (noticeSub === undefined) {\n subscribeToWhatsNewNotices()\n } else {\n if (noticeSub.closed === true) {\n noticeSub.unsubscribe()\n subscribeToWhatsNewNotices()\n }\n }\n }\n useEffect(() => {\n const interval = setInterval(() => {\n checkSubscription()\n }, 30000)\n setInterval(interval)\n }, [noticeSub])\n\n useEffect(() => {\n if (user !== undefined) {\n if (shouldGoToWhatsNew === false) {\n checkForNewWhatsNewNotices()\n }\n subscribeToWhatsNewNotices()\n }\n return () => {\n if (noticeSub !== undefined) {\n noticeSub.unsubscribe()\n setNoticeSub(undefined)\n }\n if (interval !== undefined) {\n clearInterval(interval)\n }\n }\n }, [user])\n useEffect(() => {\n if (shouldGoToWhatsNew === true) {\n triggerWhatsNew()\n }\n }, [shouldGoToWhatsNew])\n\n const triggerWhatsNew = () => {\n if (location.pathname !== \"/editor-notice\") {\n if (location.pathname === \"/whats-new\") {\n history.go(\"/whats-new\")\n } else {\n history.push(\"/whats-new\")\n }\n } else {\n }\n }\n\n const checkForNewWhatsNewNotices = () => {\n API.graphql(graphqlOperation(byNoticeTypeRedux, { limit: 1 }))\n .then((res) => {\n let whatsNewNotices = res.data?.byNoticeType?.items\n if (whatsNewNotices.length > 0) {\n const userLastReadNotice = user.LastRiddenNotice\n if (userLastReadNotice === null) {\n setShouldGoToWhatsNew(true)\n } else {\n if (\n whatsNewNotices[0].createdAt !== undefined &&\n whatsNewNotices[0].createdAt > userLastReadNotice\n ) {\n setShouldGoToWhatsNew(true)\n }\n }\n }\n })\n .catch((err) => {\n console.error(\"ERROR WHILE CHECKING FOR NEW WHATS-NEW-NOTICES\", err)\n })\n }\n const subscribeToWhatsNewNotices = () => {\n const sub = API.graphql(graphqlOperation(onCreateNotice)).subscribe({\n next: (value) => {\n triggerWhatsNew()\n },\n error: (error) => console.warn(error)\n })\n setNoticeSub(sub)\n }\n\n return null\n}\n"],"names":["NoticeProcessor","props","history","useHistory","location","useLocation","useState","undefined","noticeSub","setNoticeSub","interval","setInterval","shouldGoToWhatsNew","setShouldGoToWhatsNew","user","useSelector","state","userInfo","useEffect","checkSubscription","pathname","subscribeToWhatsNewNotices","closed","unsubscribe","checkForNewWhatsNewNotices","clearInterval","triggerWhatsNew","go","push","API","graphqlOperation","byNoticeTypeRedux","limit","then","res","whatsNewNotices","data","byNoticeType","items","length","userLastReadNotice","LastRiddenNotice","createdAt","catch","err","console","error","sub","onCreateNotice","subscribe","next","value","warn"],"sourceRoot":""}