@scalant/career-hub 8.2.1 → 8.2.2
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/dist/career-hub.es.js +30 -24
- package/dist/career-hub.umd.js +1 -1
- package/package.json +2 -2
package/dist/career-hub.es.js
CHANGED
|
@@ -52885,6 +52885,12 @@ const toCamelCase = (C) => C && C.replace(/_([a-z])/g, ($) => $[1].toUpperCase()
|
|
|
52885
52885
|
"Joined",
|
|
52886
52886
|
"Offer Received",
|
|
52887
52887
|
"Draft"
|
|
52888
|
+
], FINAL_OFFERED_STATUSES = [
|
|
52889
|
+
"Offer Received",
|
|
52890
|
+
"Offer Accepted",
|
|
52891
|
+
"Joined",
|
|
52892
|
+
"Offer Declined",
|
|
52893
|
+
"To Be Offered"
|
|
52888
52894
|
], determineJobTag = (C, $) => {
|
|
52889
52895
|
const { isRelevant: V, expiry: F, jobProfileStatus: K } = toCamelCaseObject(C), { isEligible: J, reasons: ee = [] } = toCamelCaseObject($) || {};
|
|
52890
52896
|
if (F && (new Date(F) < /* @__PURE__ */ new Date() || K !== "active"))
|
|
@@ -55076,47 +55082,47 @@ const OFFERED_STATUSES = ["offer_received", "offer_accepted", "joined"], EXCLUDE
|
|
|
55076
55082
|
(J) => J.stageStatus === APPLICATION_STAGE_STATUSES.completed
|
|
55077
55083
|
) ? V.length : C ? $ + 1 : F;
|
|
55078
55084
|
}, TimelineSteps = () => {
|
|
55079
|
-
const { jobData: C } = useJobPreview(), { applicationTimeline: $ } = C || {}, { timeline: V } = $ || {},
|
|
55080
|
-
(
|
|
55081
|
-
),
|
|
55082
|
-
let
|
|
55083
|
-
|
|
55084
|
-
(
|
|
55085
|
+
const { jobData: C } = useJobPreview(), { applicationTimeline: $ } = C || {}, { timeline: V, status: F } = $ || {}, K = V.findIndex(
|
|
55086
|
+
(ae) => ae.stageStatus === APPLICATION_STAGE_STATUSES.rejected
|
|
55087
|
+
), J = K !== -1, ee = getCurrentStep(J, K, V), te = FINAL_OFFERED_STATUSES.includes(F);
|
|
55088
|
+
let ne = J ? V.slice(0, K + 1) : V;
|
|
55089
|
+
ne = te ? ne : ne.filter(
|
|
55090
|
+
(ae) => !EXCLUDED_STATUSES.includes(ae.status)
|
|
55085
55091
|
);
|
|
55086
|
-
const
|
|
55092
|
+
const re = ne.map((ae) => {
|
|
55087
55093
|
const {
|
|
55088
|
-
expectedUpdateDate:
|
|
55089
|
-
actualUpdateDate:
|
|
55090
|
-
stageName:
|
|
55091
|
-
stageComments:
|
|
55092
|
-
stageStatus:
|
|
55093
|
-
status:
|
|
55094
|
-
} =
|
|
55095
|
-
let
|
|
55096
|
-
return
|
|
55094
|
+
expectedUpdateDate: oe,
|
|
55095
|
+
actualUpdateDate: ie,
|
|
55096
|
+
stageName: le,
|
|
55097
|
+
stageComments: ce,
|
|
55098
|
+
stageStatus: ue,
|
|
55099
|
+
status: se
|
|
55100
|
+
} = ae, ve = OFFERED_STATUSES.includes(se) && ue === APPLICATION_STAGE_STATUSES.completed, fe = !!ie, ge = fe && getDaysDifference(ie, oe) < 0, pe = fe && getDaysDifference(ie, oe) > 0, de = fe && getDaysDifference(ie, oe) === 0, me = ue === APPLICATION_STAGE_STATUSES.pending, ye = ue === APPLICATION_STAGE_STATUSES.rejected;
|
|
55101
|
+
let Se = toDDMMMYYYY(oe), he = null;
|
|
55102
|
+
return oe ? ge ? (Se = toDDMMMYYYY(ie), he = /* @__PURE__ */ React__default.createElement(Typography$1.Text, { className: styles$B.extraInfoText }, "Completed ", getDaysDifference(oe, ie), " ", "days early")) : (pe || de) && (Se = toDDMMMYYYY(ie)) : Se = "Not Applicable", {
|
|
55097
55103
|
title: /* @__PURE__ */ React__default.createElement(Flex$1, { flex: 1, justify: "space-between" }, /* @__PURE__ */ React__default.createElement(
|
|
55098
55104
|
Typography$1.Text,
|
|
55099
55105
|
{
|
|
55100
55106
|
className: classNames(styles$B.stageName, {
|
|
55101
|
-
[styles$B.pending]:
|
|
55107
|
+
[styles$B.pending]: me
|
|
55102
55108
|
})
|
|
55103
55109
|
},
|
|
55104
|
-
|
|
55110
|
+
ye && !ie ? "Unfortunately the round was not conducted" : le
|
|
55105
55111
|
), /* @__PURE__ */ React__default.createElement(
|
|
55106
55112
|
Typography$1.Text,
|
|
55107
55113
|
{
|
|
55108
55114
|
className: classNames(styles$B.stageDate, {
|
|
55109
|
-
[styles$B.pending]:
|
|
55115
|
+
[styles$B.pending]: me
|
|
55110
55116
|
})
|
|
55111
55117
|
},
|
|
55112
|
-
|
|
55118
|
+
Se
|
|
55113
55119
|
)),
|
|
55114
|
-
description: /* @__PURE__ */ React__default.createElement(Flex$1, { justify: "space-between" }, /* @__PURE__ */ React__default.createElement(Typography$1.Text, { className: styles$B.stageComments },
|
|
55115
|
-
status:
|
|
55116
|
-
className:
|
|
55120
|
+
description: /* @__PURE__ */ React__default.createElement(Flex$1, { justify: "space-between" }, /* @__PURE__ */ React__default.createElement(Typography$1.Text, { className: styles$B.stageComments }, ce), he),
|
|
55121
|
+
status: ye ? "error" : null,
|
|
55122
|
+
className: ve ? styles$B.offeredStepItem : styles$B.stepItem
|
|
55117
55123
|
};
|
|
55118
55124
|
});
|
|
55119
|
-
return /* @__PURE__ */ React__default.createElement(Steps$1, { current:
|
|
55125
|
+
return /* @__PURE__ */ React__default.createElement(Steps$1, { current: ee, items: re, direction: "vertical" });
|
|
55120
55126
|
}, container$9 = "_container_all86_1", styles$A = {
|
|
55121
55127
|
container: container$9
|
|
55122
55128
|
}, PlacementProcessDisclaimerBanner = () => /* @__PURE__ */ React__default.createElement(Flex$1, { className: styles$A.container }, /* @__PURE__ */ React__default.createElement(InfoCircleTwoTone$1, { twoToneColor: "#913ECE" }), /* @__PURE__ */ React__default.createElement(Typography$1.Text, null, "Our placement team has access to the same application status and updates that are visible to you")), Timeline = () => /* @__PURE__ */ React__default.createElement(
|
package/dist/career-hub.umd.js
CHANGED
|
@@ -431,7 +431,7 @@ You must add the middleware for RTK-Query to function correctly!`)}}function ge(
|
|
|
431
431
|
In the case of an unhandled error, no tags will be "provided" or "invalidated".`,De):console.error(De),De;case 13:return[2]}})})};function oe(ge,pe){var de,me,ye,_e,he=(me=(de=pe[V])==null?void 0:de.queries)==null?void 0:me[ge.queryCacheKey],be=(ye=pe[V])==null?void 0:ye.config.refetchOnMountOrArgChange,Se=he==null?void 0:he.fulfilledTimeStamp,Re=(_e=ge.forceRefetch)!=null?_e:ge.subscribe&&be;return Re?Re===!0||(Number(new Date)-Number(Se))/1e3>=Re:!1}var ie=toolkit.createAsyncThunk(V+"/executeQuery",ae,{getPendingMeta:function(){var ge;return ge={startedTimeStamp:Date.now()},ge[toolkit.SHOULD_AUTOBATCH]=!0,ge},condition:function(ge,pe){var de=pe.getState,me,ye,_e,he=de(),be=(ye=(me=he[V])==null?void 0:me.queries)==null?void 0:ye[ge.queryCacheKey],Se=be==null?void 0:be.fulfilledTimeStamp,Re=ge.originalArgs,Ce=be==null?void 0:be.originalArgs,xe=K[ge.endpointName];return isUpsertQuery(ge)?!0:(be==null?void 0:be.status)==="pending"?!1:oe(ge,he)||isQueryDefinition$1(xe)&&((_e=xe==null?void 0:xe.forceRefetch)!=null&&_e.call(xe,{currentArg:Re,previousArg:Ce,endpointState:be,state:he}))?!0:!Se},dispatchConditionRejection:!0}),se=toolkit.createAsyncThunk(V+"/executeMutation",ae,{getPendingMeta:function(){var ge;return ge={startedTimeStamp:Date.now()},ge[toolkit.SHOULD_AUTOBATCH]=!0,ge}}),ce=function(ge){return"force"in ge},ue=function(ge){return"ifOlderThan"in ge},le=function(ge,pe,de){return function(me,ye){var _e=ce(de)&&de.force,he=ue(de)&&de.ifOlderThan,be=function(xe){return xe===void 0&&(xe=!0),ee.endpoints[ge].initiate(pe,{forceRefetch:xe})},Se=ee.endpoints[ge].select(pe)(ye());if(_e)me(be());else if(he){var Re=Se==null?void 0:Se.fulfilledTimeStamp;if(!Re){me(be());return}var Ce=(Number(new Date)-Number(new Date(Re)))/1e3>=he;Ce&&me(be())}else me(be(!1))}};function ve(ge){return function(pe){var de,me;return((me=(de=pe==null?void 0:pe.meta)==null?void 0:de.arg)==null?void 0:me.endpointName)===ge}}function fe(ge,pe){return{matchPending:toolkit.isAllOf(toolkit.isPending(ge),ve(pe)),matchFulfilled:toolkit.isAllOf(toolkit.isFulfilled(ge),ve(pe)),matchRejected:toolkit.isAllOf(toolkit.isRejected(ge),ve(pe))}}return{queryThunk:ie,mutationThunk:se,prefetch:le,updateQueryData:ne,upsertQueryData:re,patchQueryData:te,buildMatchThunkActions:fe}}function calculateProvidedByThunk(C,$,V,F){return calculateProvidedBy(V[C.meta.arg.endpointName][$],toolkit.isFulfilled(C)?C.payload:void 0,toolkit.isRejectedWithValue(C)?C.payload:void 0,C.meta.arg.originalArgs,"baseQueryMeta"in C.meta?C.meta.baseQueryMeta:void 0,F)}function updateQuerySubstateIfExists(C,$,V){var F=C[$];F&&V(F)}function getMutationCacheKey(C){var $;return($="arg"in C?C.arg.fixedCacheKey:C.fixedCacheKey)!=null?$:C.requestId}function updateMutationSubstateIfExists(C,$,V){var F=C[getMutationCacheKey($)];F&&V(F)}var initialState$8={};function buildSlice(C){var $=C.reducerPath,V=C.queryThunk,F=C.mutationThunk,K=C.context,J=K.endpointDefinitions,ee=K.apiUid,te=K.extractRehydrationInfo,ne=K.hasRehydrationInfo,re=C.assertTagType,ae=C.config,oe=toolkit.createAction($+"/resetApiState"),ie=toolkit.createSlice({name:$+"/queries",initialState:initialState$8,reducers:{removeQueryResult:{reducer:function(de,me){var ye=me.payload.queryCacheKey;delete de[ye]},prepare:toolkit.prepareAutoBatched()},queryResultPatched:function(de,me){var ye=me.payload,_e=ye.queryCacheKey,he=ye.patches;updateQuerySubstateIfExists(de,_e,function(be){be.data=pn(be.data,he.concat())})}},extraReducers:function(de){de.addCase(V.pending,function(me,ye){var _e=ye.meta,he=ye.meta.arg,be,Se,Re=isUpsertQuery(he);(he.subscribe||Re)&&((Se=me[be=he.queryCacheKey])!=null||(me[be]={status:QueryStatus.uninitialized,endpointName:he.endpointName})),updateQuerySubstateIfExists(me,he.queryCacheKey,function(Ce){Ce.status=QueryStatus.pending,Ce.requestId=Re&&Ce.requestId?Ce.requestId:_e.requestId,he.originalArgs!==void 0&&(Ce.originalArgs=he.originalArgs),Ce.startedTimeStamp=_e.startedTimeStamp})}).addCase(V.fulfilled,function(me,ye){var _e=ye.meta,he=ye.payload;updateQuerySubstateIfExists(me,_e.arg.queryCacheKey,function(be){var Se;if(!(be.requestId!==_e.requestId&&!isUpsertQuery(_e.arg))){var Re=J[_e.arg.endpointName].merge;if(be.status=QueryStatus.fulfilled,Re)if(be.data!==void 0){var Ce=_e.fulfilledTimeStamp,xe=_e.arg,$e=_e.baseQueryMeta,Ie=_e.requestId,Fe=toolkit.createNextState(be.data,function(Ne){return Re(Ne,he,{arg:xe.originalArgs,baseQueryMeta:$e,fulfilledTimeStamp:Ce,requestId:Ie})});be.data=Fe}else be.data=he;else be.data=(Se=J[_e.arg.endpointName].structuralSharing)==null||Se?copyWithStructuralSharing(be.data,he):he;delete be.error,be.fulfilledTimeStamp=_e.fulfilledTimeStamp}})}).addCase(V.rejected,function(me,ye){var _e=ye.meta,he=_e.condition,be=_e.arg,Se=_e.requestId,Re=ye.error,Ce=ye.payload;updateQuerySubstateIfExists(me,be.queryCacheKey,function(xe){if(!he){if(xe.requestId!==Se)return;xe.status=QueryStatus.rejected,xe.error=Ce!=null?Ce:Re}})}).addMatcher(ne,function(me,ye){for(var _e=te(ye).queries,he=0,be=Object.entries(_e);he<be.length;he++){var Se=be[he],Re=Se[0],Ce=Se[1];((Ce==null?void 0:Ce.status)===QueryStatus.fulfilled||(Ce==null?void 0:Ce.status)===QueryStatus.rejected)&&(me[Re]=Ce)}})}}),se=toolkit.createSlice({name:$+"/mutations",initialState:initialState$8,reducers:{removeMutationResult:{reducer:function(de,me){var ye=me.payload,_e=getMutationCacheKey(ye);_e in de&&delete de[_e]},prepare:toolkit.prepareAutoBatched()}},extraReducers:function(de){de.addCase(F.pending,function(me,ye){var _e=ye.meta,he=ye.meta,be=he.requestId,Se=he.arg,Re=he.startedTimeStamp;Se.track&&(me[getMutationCacheKey(_e)]={requestId:be,status:QueryStatus.pending,endpointName:Se.endpointName,startedTimeStamp:Re})}).addCase(F.fulfilled,function(me,ye){var _e=ye.payload,he=ye.meta;he.arg.track&&updateMutationSubstateIfExists(me,he,function(be){be.requestId===he.requestId&&(be.status=QueryStatus.fulfilled,be.data=_e,be.fulfilledTimeStamp=he.fulfilledTimeStamp)})}).addCase(F.rejected,function(me,ye){var _e=ye.payload,he=ye.error,be=ye.meta;be.arg.track&&updateMutationSubstateIfExists(me,be,function(Se){Se.requestId===be.requestId&&(Se.status=QueryStatus.rejected,Se.error=_e!=null?_e:he)})}).addMatcher(ne,function(me,ye){for(var _e=te(ye).mutations,he=0,be=Object.entries(_e);he<be.length;he++){var Se=be[he],Re=Se[0],Ce=Se[1];((Ce==null?void 0:Ce.status)===QueryStatus.fulfilled||(Ce==null?void 0:Ce.status)===QueryStatus.rejected)&&Re!==(Ce==null?void 0:Ce.requestId)&&(me[Re]=Ce)}})}}),ce=toolkit.createSlice({name:$+"/invalidation",initialState:initialState$8,reducers:{},extraReducers:function(de){de.addCase(ie.actions.removeQueryResult,function(me,ye){for(var _e=ye.payload.queryCacheKey,he=0,be=Object.values(me);he<be.length;he++)for(var Se=be[he],Re=0,Ce=Object.values(Se);Re<Ce.length;Re++){var xe=Ce[Re],$e=xe.indexOf(_e);$e!==-1&&xe.splice($e,1)}}).addMatcher(ne,function(me,ye){for(var _e,he,be,Se,Re=te(ye).provided,Ce=0,xe=Object.entries(Re);Ce<xe.length;Ce++)for(var $e=xe[Ce],Ie=$e[0],Fe=$e[1],Ne=0,De=Object.entries(Fe);Ne<De.length;Ne++)for(var Oe=De[Ne],Te=Oe[0],Ae=Oe[1],ke=(Se=(he=(_e=me[Ie])!=null?_e:me[Ie]={})[be=Te||"__internal_without_id"])!=null?Se:he[be]=[],je=0,ze=Ae;je<ze.length;je++){var Ve=ze[je],Xe=ke.includes(Ve);Xe||ke.push(Ve)}}).addMatcher(toolkit.isAnyOf(toolkit.isFulfilled(V),toolkit.isRejectedWithValue(V)),function(me,ye){for(var _e,he,be,Se,Re=calculateProvidedByThunk(ye,"providesTags",J,re),Ce=ye.meta.arg.queryCacheKey,xe=0,$e=Object.values(me);xe<$e.length;xe++)for(var Ie=$e[xe],Fe=0,Ne=Object.values(Ie);Fe<Ne.length;Fe++){var De=Ne[Fe],Oe=De.indexOf(Ce);Oe!==-1&&De.splice(Oe,1)}for(var Te=0,Ae=Re;Te<Ae.length;Te++){var ke=Ae[Te],je=ke.type,ze=ke.id,Ve=(Se=(he=(_e=me[je])!=null?_e:me[je]={})[be=ze||"__internal_without_id"])!=null?Se:he[be]=[],Xe=Ve.includes(Ce);Xe||Ve.push(Ce)}})}}),ue=toolkit.createSlice({name:$+"/subscriptions",initialState:initialState$8,reducers:{updateSubscriptionOptions:function(de,me){},unsubscribeQueryResult:function(de,me){},internal_probeSubscription:function(de,me){}}}),le=toolkit.createSlice({name:$+"/internalSubscriptions",initialState:initialState$8,reducers:{subscriptionsUpdated:function(de,me){return pn(de,me.payload)}}}),ve=toolkit.createSlice({name:$+"/config",initialState:__spreadValues$1({online:isOnline(),focused:isDocumentVisible(),middlewareRegistered:!1},ae),reducers:{middlewareRegistered:function(de,me){var ye=me.payload;de.middlewareRegistered=de.middlewareRegistered==="conflict"||ee!==ye?"conflict":!0}},extraReducers:function(de){de.addCase(onOnline,function(me){me.online=!0}).addCase(onOffline,function(me){me.online=!1}).addCase(onFocus,function(me){me.focused=!0}).addCase(onFocusLost,function(me){me.focused=!1}).addMatcher(ne,function(me){return __spreadValues$1({},me)})}}),fe=toolkit.combineReducers({queries:ie.reducer,mutations:se.reducer,provided:ce.reducer,subscriptions:le.reducer,config:ve.reducer}),ge=function(de,me){return fe(oe.match(me)?void 0:de,me)},pe=__spreadProps$1(__spreadValues$1(__spreadValues$1(__spreadValues$1(__spreadValues$1(__spreadValues$1({},ve.actions),ie.actions),ue.actions),le.actions),se.actions),{unsubscribeMutationResult:se.actions.removeMutationResult,resetApiState:oe});return{reducer:ge,actions:pe}}var skipToken=Symbol.for("RTKQ/skipToken"),initialSubState={status:QueryStatus.uninitialized},defaultQuerySubState=toolkit.createNextState(initialSubState,function(){}),defaultMutationSubState=toolkit.createNextState(initialSubState,function(){});function buildSelectors(C){var $=C.serializeQueryArgs,V=C.reducerPath,F=function(ae){return defaultQuerySubState},K=function(ae){return defaultMutationSubState};return{buildQuerySelector:te,buildMutationSelector:ne,selectInvalidatedBy:re};function J(ae){return __spreadValues$1(__spreadValues$1({},ae),getRequestStatusFlags(ae.status))}function ee(ae){var oe=ae[V];if(process.env.NODE_ENV!=="production"&&!oe){if(ee.triggered)return oe;ee.triggered=!0,console.error("Error: No data found at `state."+V+"`. Did you forget to add the reducer to the store?")}return oe}function te(ae,oe){return function(ie){var se=$({queryArgs:ie,endpointDefinition:oe,endpointName:ae}),ce=function(le){var ve,fe,ge;return(ge=(fe=(ve=ee(le))==null?void 0:ve.queries)==null?void 0:fe[se])!=null?ge:defaultQuerySubState},ue=ie===skipToken?F:ce;return toolkit.createSelector(ue,J)}}function ne(){return function(ae){var oe,ie;typeof ae=="object"?ie=(oe=getMutationCacheKey(ae))!=null?oe:skipToken:ie=ae;var se=function(ue){var le,ve,fe;return(fe=(ve=(le=ee(ue))==null?void 0:le.mutations)==null?void 0:ve[ie])!=null?fe:defaultMutationSubState},ce=ie===skipToken?K:se;return toolkit.createSelector(ce,J)}}function re(ae,oe){for(var ie,se=ae[V],ce=new Set,ue=0,le=oe.map(expandTagDescription);ue<le.length;ue++){var ve=le[ue],fe=se.provided[ve.type];if(fe)for(var ge=(ie=ve.id!==void 0?fe[ve.id]:flatten(Object.values(fe)))!=null?ie:[],pe=0,de=ge;pe<de.length;pe++){var me=de[pe];ce.add(me)}}return flatten(Array.from(ce.values()).map(function(ye){var _e=se.queries[ye];return _e?[{queryCacheKey:ye,endpointName:_e.endpointName,originalArgs:_e.originalArgs}]:[]}))}}var cache$1=WeakMap?new WeakMap:void 0,defaultSerializeQueryArgs$1=function(C){var $=C.endpointName,V=C.queryArgs,F="",K=cache$1==null?void 0:cache$1.get(V);if(typeof K=="string")F=K;else{var J=JSON.stringify(V,function(ee,te){return toolkit.isPlainObject(te)?Object.keys(te).sort().reduce(function(ne,re){return ne[re]=te[re],ne},{}):te});toolkit.isPlainObject(V)&&(cache$1==null||cache$1.set(V,J)),F=J}return $+"("+F+")"};function buildCreateApi(){for(var C=[],$=0;$<arguments.length;$++)C[$]=arguments[$];return function(F){var K=defaultMemoize(function(ae){var oe,ie;return(ie=F.extractRehydrationInfo)==null?void 0:ie.call(F,ae,{reducerPath:(oe=F.reducerPath)!=null?oe:"api"})}),J=__spreadProps$1(__spreadValues$1({reducerPath:"api",keepUnusedDataFor:60,refetchOnMountOrArgChange:!1,refetchOnFocus:!1,refetchOnReconnect:!1},F),{extractRehydrationInfo:K,serializeQueryArgs:function(ae){var oe=defaultSerializeQueryArgs$1;if("serializeQueryArgs"in ae.endpointDefinition){var ie=ae.endpointDefinition.serializeQueryArgs;oe=function(se){var ce=ie(se);return typeof ce=="string"?ce:defaultSerializeQueryArgs$1(__spreadProps$1(__spreadValues$1({},se),{queryArgs:ce}))}}else F.serializeQueryArgs&&(oe=F.serializeQueryArgs);return oe(ae)},tagTypes:__spreadArray$2([],F.tagTypes||[])}),ee={endpointDefinitions:{},batch:function(ae){ae()},apiUid:toolkit.nanoid(),extractRehydrationInfo:K,hasRehydrationInfo:defaultMemoize(function(ae){return K(ae)!=null})},te={injectEndpoints:re,enhanceEndpoints:function(ae){var oe=ae.addTagTypes,ie=ae.endpoints;if(oe)for(var se=0,ce=oe;se<ce.length;se++){var ue=ce[se];J.tagTypes.includes(ue)||J.tagTypes.push(ue)}if(ie)for(var le=0,ve=Object.entries(ie);le<ve.length;le++){var fe=ve[le],ge=fe[0],pe=fe[1];typeof pe=="function"?pe(ee.endpointDefinitions[ge]):Object.assign(ee.endpointDefinitions[ge]||{},pe)}return te}},ne=C.map(function(ae){return ae.init(te,J,ee)});function re(ae){for(var oe=ae.endpoints({query:function(pe){return __spreadProps$1(__spreadValues$1({},pe),{type:DefinitionType$1.query})},mutation:function(pe){return __spreadProps$1(__spreadValues$1({},pe),{type:DefinitionType$1.mutation})}}),ie=0,se=Object.entries(oe);ie<se.length;ie++){var ce=se[ie],ue=ce[0],le=ce[1];if(!ae.overrideExisting&&ue in ee.endpointDefinitions){typeof process!="undefined"&&process.env.NODE_ENV==="development"&&console.error("called `injectEndpoints` to override already-existing endpointName "+ue+" without specifying `overrideExisting: true`");continue}ee.endpointDefinitions[ue]=le;for(var ve=0,fe=ne;ve<fe.length;ve++){var ge=fe[ve];ge.injectEndpoint(ue,le)}}return te}return te.injectEndpoints({endpoints:F.endpoints})}}function isObjectEmpty(C){for(var $ in C)return!1;return!0}var THIRTY_TWO_BIT_MAX_TIMER_SECONDS=2147483647/1e3-1,buildCacheCollectionHandler=function(C){var $=C.reducerPath,V=C.api,F=C.context,K=C.internalState,J=V.internalActions,ee=J.removeQueryResult,te=J.unsubscribeQueryResult;function ne(ie){var se=K.currentSubscriptions[ie];return!!se&&!isObjectEmpty(se)}var re={},ae=function(ie,se,ce){var ue;if(te.match(ie)){var le=se.getState()[$],ve=ie.payload.queryCacheKey;oe(ve,(ue=le.queries[ve])==null?void 0:ue.endpointName,se,le.config)}if(V.util.resetApiState.match(ie))for(var fe=0,ge=Object.entries(re);fe<ge.length;fe++){var pe=ge[fe],de=pe[0],me=pe[1];me&&clearTimeout(me),delete re[de]}if(F.hasRehydrationInfo(ie))for(var le=se.getState()[$],ye=F.extractRehydrationInfo(ie).queries,_e=0,he=Object.entries(ye);_e<he.length;_e++){var be=he[_e],ve=be[0],Se=be[1];oe(ve,Se==null?void 0:Se.endpointName,se,le.config)}};function oe(ie,se,ce,ue){var le,ve=F.endpointDefinitions[se],fe=(le=ve==null?void 0:ve.keepUnusedDataFor)!=null?le:ue.keepUnusedDataFor;if(fe!==1/0){var ge=Math.max(0,Math.min(fe,THIRTY_TWO_BIT_MAX_TIMER_SECONDS));if(!ne(ie)){var pe=re[ie];pe&&clearTimeout(pe),re[ie]=setTimeout(function(){ne(ie)||ce.dispatch(ee({queryCacheKey:ie})),delete re[ie]},ge*1e3)}}}return ae},buildInvalidationByTagsHandler=function(C){var $=C.reducerPath,V=C.context,F=C.context.endpointDefinitions,K=C.mutationThunk,J=C.api,ee=C.assertTagType,te=C.refetchQuery,ne=J.internalActions.removeQueryResult,re=toolkit.isAnyOf(toolkit.isFulfilled(K),toolkit.isRejectedWithValue(K)),ae=function(ie,se){re(ie)&&oe(calculateProvidedByThunk(ie,"invalidatesTags",F,ee),se),J.util.invalidateTags.match(ie)&&oe(calculateProvidedBy(ie.payload,void 0,void 0,void 0,void 0,ee),se)};function oe(ie,se){var ce=se.getState(),ue=ce[$],le=J.util.selectInvalidatedBy(ce,ie);V.batch(function(){for(var ve,fe=Array.from(le.values()),ge=0,pe=fe;ge<pe.length;ge++){var de=pe[ge].queryCacheKey,me=ue.queries[de],ye=(ve=ue.subscriptions[de])!=null?ve:{};me&&(Object.keys(ye).length===0?se.dispatch(ne({queryCacheKey:de})):me.status!==QueryStatus.uninitialized&&se.dispatch(te(me,de)))}})}return ae},buildPollingHandler=function(C){var $=C.reducerPath,V=C.queryThunk,F=C.api,K=C.refetchQuery,J=C.internalState,ee={},te=function(se,ce){(F.internalActions.updateSubscriptionOptions.match(se)||F.internalActions.unsubscribeQueryResult.match(se))&&re(se.payload,ce),(V.pending.match(se)||V.rejected.match(se)&&se.meta.condition)&&re(se.meta.arg,ce),(V.fulfilled.match(se)||V.rejected.match(se)&&!se.meta.condition)&&ne(se.meta.arg,ce),F.util.resetApiState.match(se)&&oe()};function ne(se,ce){var ue=se.queryCacheKey,le=ce.getState()[$],ve=le.queries[ue],fe=J.currentSubscriptions[ue];if(!(!ve||ve.status===QueryStatus.uninitialized)){var ge=ie(fe);if(Number.isFinite(ge)){var pe=ee[ue];pe!=null&&pe.timeout&&(clearTimeout(pe.timeout),pe.timeout=void 0);var de=Date.now()+ge,me=ee[ue]={nextPollTimestamp:de,pollingInterval:ge,timeout:setTimeout(function(){me.timeout=void 0,ce.dispatch(K(ve,ue))},ge)}}}}function re(se,ce){var ue=se.queryCacheKey,le=ce.getState()[$],ve=le.queries[ue],fe=J.currentSubscriptions[ue];if(!(!ve||ve.status===QueryStatus.uninitialized)){var ge=ie(fe);if(!Number.isFinite(ge)){ae(ue);return}var pe=ee[ue],de=Date.now()+ge;(!pe||de<pe.nextPollTimestamp)&&ne({queryCacheKey:ue},ce)}}function ae(se){var ce=ee[se];ce!=null&&ce.timeout&&clearTimeout(ce.timeout),delete ee[se]}function oe(){for(var se=0,ce=Object.keys(ee);se<ce.length;se++){var ue=ce[se];ae(ue)}}function ie(se){se===void 0&&(se={});var ce=Number.POSITIVE_INFINITY;for(var ue in se)se[ue].pollingInterval&&(ce=Math.min(se[ue].pollingInterval,ce));return ce}return te},buildWindowEventHandler=function(C){var $=C.reducerPath,V=C.context,F=C.api,K=C.refetchQuery,J=C.internalState,ee=F.internalActions.removeQueryResult,te=function(re,ae){onFocus.match(re)&&ne(ae,"refetchOnFocus"),onOnline.match(re)&&ne(ae,"refetchOnReconnect")};function ne(re,ae){var oe=re.getState()[$],ie=oe.queries,se=J.currentSubscriptions;V.batch(function(){for(var ce=0,ue=Object.keys(se);ce<ue.length;ce++){var le=ue[ce],ve=ie[le],fe=se[le];if(!(!fe||!ve)){var ge=Object.values(fe).some(function(pe){return pe[ae]===!0})||Object.values(fe).every(function(pe){return pe[ae]===void 0})&&oe.config[ae];ge&&(Object.keys(fe).length===0?re.dispatch(ee({queryCacheKey:le})):ve.status!==QueryStatus.uninitialized&&re.dispatch(K(ve,le)))}}})}return te},neverResolvedError=new Error("Promise never resolved before cacheEntryRemoved."),buildCacheLifecycleHandler=function(C){var $=C.api,V=C.reducerPath,F=C.context,K=C.queryThunk,J=C.mutationThunk;C.internalState;var ee=toolkit.isAsyncThunkAction(K),te=toolkit.isAsyncThunkAction(J),ne=toolkit.isFulfilled(K,J),re={},ae=function(se,ce,ue){var le=oe(se);if(K.pending.match(se)){var ve=ue[V].queries[le],fe=ce.getState()[V].queries[le];!ve&&fe&&ie(se.meta.arg.endpointName,se.meta.arg.originalArgs,le,ce,se.meta.requestId)}else if(J.pending.match(se)){var fe=ce.getState()[V].mutations[le];fe&&ie(se.meta.arg.endpointName,se.meta.arg.originalArgs,le,ce,se.meta.requestId)}else if(ne(se)){var ge=re[le];ge!=null&&ge.valueResolved&&(ge.valueResolved({data:se.payload,meta:se.meta.baseQueryMeta}),delete ge.valueResolved)}else if($.internalActions.removeQueryResult.match(se)||$.internalActions.removeMutationResult.match(se)){var ge=re[le];ge&&(delete re[le],ge.cacheEntryRemoved())}else if($.util.resetApiState.match(se))for(var pe=0,de=Object.entries(re);pe<de.length;pe++){var me=de[pe],ye=me[0],ge=me[1];delete re[ye],ge.cacheEntryRemoved()}};function oe(se){return ee(se)?se.meta.arg.queryCacheKey:te(se)?se.meta.requestId:$.internalActions.removeQueryResult.match(se)?se.payload.queryCacheKey:$.internalActions.removeMutationResult.match(se)?getMutationCacheKey(se.payload):""}function ie(se,ce,ue,le,ve){var fe=F.endpointDefinitions[se],ge=fe==null?void 0:fe.onCacheEntryAdded;if(ge){var pe={},de=new Promise(function(Se){pe.cacheEntryRemoved=Se}),me=Promise.race([new Promise(function(Se){pe.valueResolved=Se}),de.then(function(){throw neverResolvedError})]);me.catch(function(){}),re[ue]=pe;var ye=$.endpoints[se].select(fe.type===DefinitionType$1.query?ce:ue),_e=le.dispatch(function(Se,Re,Ce){return Ce}),he=__spreadProps$1(__spreadValues$1({},le),{getCacheEntry:function(){return ye(le.getState())},requestId:ve,extra:_e,updateCachedData:fe.type===DefinitionType$1.query?function(Se){return le.dispatch($.util.updateQueryData(se,ce,Se))}:void 0,cacheDataLoaded:me,cacheEntryRemoved:de}),be=ge(ce,he);Promise.resolve(be).catch(function(Se){if(Se!==neverResolvedError)throw Se})}}return ae},buildQueryLifecycleHandler=function(C){var $=C.api,V=C.context,F=C.queryThunk,K=C.mutationThunk,J=toolkit.isPending(F,K),ee=toolkit.isRejected(F,K),te=toolkit.isFulfilled(F,K),ne={},re=function(ae,oe){var ie,se,ce;if(J(ae)){var ue=ae.meta,le=ue.requestId,ve=ue.arg,fe=ve.endpointName,ge=ve.originalArgs,pe=V.endpointDefinitions[fe],de=pe==null?void 0:pe.onQueryStarted;if(de){var me={},ye=new Promise(function($e,Ie){me.resolve=$e,me.reject=Ie});ye.catch(function(){}),ne[le]=me;var _e=$.endpoints[fe].select(pe.type===DefinitionType$1.query?ge:le),he=oe.dispatch(function($e,Ie,Fe){return Fe}),be=__spreadProps$1(__spreadValues$1({},oe),{getCacheEntry:function(){return _e(oe.getState())},requestId:le,extra:he,updateCachedData:pe.type===DefinitionType$1.query?function($e){return oe.dispatch($.util.updateQueryData(fe,ge,$e))}:void 0,queryFulfilled:ye});de(ge,be)}}else if(te(ae)){var Se=ae.meta,le=Se.requestId,Re=Se.baseQueryMeta;(ie=ne[le])==null||ie.resolve({data:ae.payload,meta:Re}),delete ne[le]}else if(ee(ae)){var Ce=ae.meta,le=Ce.requestId,xe=Ce.rejectedWithValue,Re=Ce.baseQueryMeta;(ce=ne[le])==null||ce.reject({error:(se=ae.payload)!=null?se:ae.error,isUnhandledError:!xe,meta:Re}),delete ne[le]}};return re},buildDevCheckHandler=function(C){var $=C.api,V=C.context.apiUid,F=C.reducerPath;return function(K,J){var ee,te;$.util.resetApiState.match(K)&&J.dispatch($.internalActions.middlewareRegistered(V)),typeof process!="undefined"&&process.env.NODE_ENV==="development"&&$.internalActions.middlewareRegistered.match(K)&&K.payload===V&&((te=(ee=J.getState()[F])==null?void 0:ee.config)==null?void 0:te.middlewareRegistered)==="conflict"&&console.warn('There is a mismatch between slice and middleware for the reducerPath "'+F+`".
|
|
432
432
|
You can only have one api per reducer path, this will lead to crashes in various situations!`+(F==="api"?`
|
|
433
433
|
If you have multiple apis, you *have* to specify the reducerPath option when using createApi!`:""))}},promise,queueMicrotaskShim=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window!="undefined"?window:typeof global!="undefined"?global:globalThis):function(C){return(promise||(promise=Promise.resolve())).then(C).catch(function($){return setTimeout(function(){throw $},0)})},buildBatchedActionsHandler=function(C){var $=C.api,V=C.queryThunk,F=C.internalState,K=$.reducerPath+"/subscriptions",J=null,ee=!1,te=$.internalActions,ne=te.updateSubscriptionOptions,re=te.unsubscribeQueryResult,ae=function(oe,ie){var se,ce,ue,le,ve,fe,ge,pe,de;if(ne.match(ie)){var me=ie.payload,ye=me.queryCacheKey,_e=me.requestId,he=me.options;return(se=oe==null?void 0:oe[ye])!=null&&se[_e]&&(oe[ye][_e]=he),!0}if(re.match(ie)){var be=ie.payload,ye=be.queryCacheKey,_e=be.requestId;return oe[ye]&&delete oe[ye][_e],!0}if($.internalActions.removeQueryResult.match(ie))return delete oe[ie.payload.queryCacheKey],!0;if(V.pending.match(ie)){var Se=ie.meta,Re=Se.arg,_e=Se.requestId;if(Re.subscribe){var Ce=(ue=oe[ce=Re.queryCacheKey])!=null?ue:oe[ce]={};return Ce[_e]=(ve=(le=Re.subscriptionOptions)!=null?le:Ce[_e])!=null?ve:{},!0}}if(V.rejected.match(ie)){var xe=ie.meta,$e=xe.condition,Re=xe.arg,_e=xe.requestId;if($e&&Re.subscribe){var Ce=(ge=oe[fe=Re.queryCacheKey])!=null?ge:oe[fe]={};return Ce[_e]=(de=(pe=Re.subscriptionOptions)!=null?pe:Ce[_e])!=null?de:{},!0}}return!1};return function(oe,ie){var se,ce;if(J||(J=JSON.parse(JSON.stringify(F.currentSubscriptions))),$.internalActions.internal_probeSubscription.match(oe)){var ue=oe.payload,le=ue.queryCacheKey,ve=ue.requestId,fe=!!((se=F.currentSubscriptions[le])!=null&&se[ve]);return[!1,fe]}var ge=ae(F.currentSubscriptions,oe);if(ge){ee||(queueMicrotaskShim(function(){var ye=JSON.parse(JSON.stringify(F.currentSubscriptions)),_e=cn(J,function(){return ye}),he=_e[1];ie.next($.internalActions.subscriptionsUpdated(he)),J=ye,ee=!1}),ee=!0);var pe=!!((ce=oe.type)!=null&&ce.startsWith(K)),de=V.rejected.match(oe)&&oe.meta.condition&&!!oe.meta.arg.subscribe,me=!pe&&!de;return[me,!1]}return[!0,!1]}};function buildMiddleware(C){var $=C.reducerPath,V=C.queryThunk,F=C.api,K=C.context,J=K.apiUid,ee={invalidateTags:toolkit.createAction($+"/invalidateTags")},te=function(oe){return!!oe&&typeof oe.type=="string"&&oe.type.startsWith($+"/")},ne=[buildDevCheckHandler,buildCacheCollectionHandler,buildInvalidationByTagsHandler,buildPollingHandler,buildCacheLifecycleHandler,buildQueryLifecycleHandler],re=function(oe){var ie=!1,se={currentSubscriptions:{}},ce=__spreadProps$1(__spreadValues$1({},C),{internalState:se,refetchQuery:ae}),ue=ne.map(function(fe){return fe(ce)}),le=buildBatchedActionsHandler(ce),ve=buildWindowEventHandler(ce);return function(fe){return function(ge){ie||(ie=!0,oe.dispatch(F.internalActions.middlewareRegistered(J)));var pe=__spreadProps$1(__spreadValues$1({},oe),{next:fe}),de=oe.getState(),me=le(ge,pe,de),ye=me[0],_e=me[1],he;if(ye?he=fe(ge):he=_e,oe.getState()[$]&&(ve(ge,pe,de),te(ge)||K.hasRehydrationInfo(ge)))for(var be=0,Se=ue;be<Se.length;be++){var Re=Se[be];Re(ge,pe,de)}return he}}};return{middleware:re,actions:ee};function ae(oe,ie,se){return se===void 0&&(se={}),V(__spreadValues$1({type:"query",endpointName:oe.endpointName,originalArgs:oe.originalArgs,subscribe:!1,forceRefetch:!0,queryCacheKey:ie},se))}}function safeAssign$1(C){for(var $=[],V=1;V<arguments.length;V++)$[V-1]=arguments[V];Object.assign.apply(Object,__spreadArray$2([C],$))}var coreModuleName=Symbol(),coreModule=function(){return{name:coreModuleName,init:function(C,$,V){var F=$.baseQuery,K=$.tagTypes,J=$.reducerPath,ee=$.serializeQueryArgs,te=$.keepUnusedDataFor,ne=$.refetchOnMountOrArgChange,re=$.refetchOnFocus,ae=$.refetchOnReconnect;T();var oe=function(ke){return typeof process!="undefined"&&process.env.NODE_ENV==="development"&&(K.includes(ke.type)||console.error("Tag type '"+ke.type+"' was used, but not specified in `tagTypes`!")),ke};Object.assign(C,{reducerPath:J,endpoints:{},internalActions:{onOnline,onOffline,onFocus,onFocusLost},util:{}});var ie=buildThunks({baseQuery:F,reducerPath:J,context:V,api:C,serializeQueryArgs:ee}),se=ie.queryThunk,ce=ie.mutationThunk,ue=ie.patchQueryData,le=ie.updateQueryData,ve=ie.upsertQueryData,fe=ie.prefetch,ge=ie.buildMatchThunkActions,pe=buildSlice({context:V,queryThunk:se,mutationThunk:ce,reducerPath:J,assertTagType:oe,config:{refetchOnFocus:re,refetchOnReconnect:ae,refetchOnMountOrArgChange:ne,keepUnusedDataFor:te,reducerPath:J}}),de=pe.reducer,me=pe.actions;safeAssign$1(C.util,{patchQueryData:ue,updateQueryData:le,upsertQueryData:ve,prefetch:fe,resetApiState:me.resetApiState}),safeAssign$1(C.internalActions,me);var ye=buildMiddleware({reducerPath:J,context:V,queryThunk:se,mutationThunk:ce,api:C,assertTagType:oe}),_e=ye.middleware,he=ye.actions;safeAssign$1(C.util,he),safeAssign$1(C,{reducer:de,middleware:_e});var be=buildSelectors({serializeQueryArgs:ee,reducerPath:J}),Se=be.buildQuerySelector,Re=be.buildMutationSelector,Ce=be.selectInvalidatedBy;safeAssign$1(C.util,{selectInvalidatedBy:Ce});var xe=buildInitiate({queryThunk:se,mutationThunk:ce,api:C,serializeQueryArgs:ee,context:V}),$e=xe.buildInitiateQuery,Ie=xe.buildInitiateMutation,Fe=xe.getRunningMutationThunk,Ne=xe.getRunningMutationsThunk,De=xe.getRunningQueriesThunk,Oe=xe.getRunningQueryThunk,Te=xe.getRunningOperationPromises,Ae=xe.removalWarning;return safeAssign$1(C.util,{getRunningOperationPromises:Te,getRunningOperationPromise:Ae,getRunningMutationThunk:Fe,getRunningMutationsThunk:Ne,getRunningQueryThunk:Oe,getRunningQueriesThunk:De}),{name:coreModuleName,injectEndpoint:function(ke,je){var ze,Ve,Xe=C;(Ve=(ze=Xe.endpoints)[ke])!=null||(ze[ke]={}),isQueryDefinition$1(je)?safeAssign$1(Xe.endpoints[ke],{name:ke,select:Se(ke,je),initiate:$e(ke,je)},ge(se,ke)):isMutationDefinition$1(je)&&safeAssign$1(Xe.endpoints[ke],{name:ke,select:Re(),initiate:Ie(ke)},ge(ce,ke))}}}}},__spreadArray$1=globalThis&&globalThis.__spreadArray||function(C,$){for(var V=0,F=$.length,K=C.length;V<F;V++,K++)C[K]=$[V];return C},__defProp=Object.defineProperty,__defProps=Object.defineProperties,__getOwnPropDescs=Object.getOwnPropertyDescriptors,__getOwnPropSymbols=Object.getOwnPropertySymbols,__hasOwnProp=Object.prototype.hasOwnProperty,__propIsEnum=Object.prototype.propertyIsEnumerable,__defNormalProp=function(C,$,V){return $ in C?__defProp(C,$,{enumerable:!0,configurable:!0,writable:!0,value:V}):C[$]=V},__spreadValues=function(C,$){for(var V in $||($={}))__hasOwnProp.call($,V)&&__defNormalProp(C,V,$[V]);if(__getOwnPropSymbols)for(var F=0,K=__getOwnPropSymbols($);F<K.length;F++){var V=K[F];__propIsEnum.call($,V)&&__defNormalProp(C,V,$[V])}return C},__spreadProps=function(C,$){return __defProps(C,__getOwnPropDescs($))};function useStableQueryArgs(C,$,V,F){var K=React.useMemo(function(){return{queryArgs:C,serialized:typeof C=="object"?$({queryArgs:C,endpointDefinition:V,endpointName:F}):C}},[C,$,V,F]),J=React.useRef(K);return React.useEffect(function(){J.current.serialized!==K.serialized&&(J.current=K)},[K]),J.current.serialized===K.serialized?J.current.queryArgs:C}var UNINITIALIZED_VALUE=Symbol();function useShallowStableValue(C){var $=React.useRef(C);return React.useEffect(function(){reactRedux.shallowEqual($.current,C)||($.current=C)},[C]),reactRedux.shallowEqual($.current,C)?$.current:C}var cache=WeakMap?new WeakMap:void 0,defaultSerializeQueryArgs=function(C){var $=C.endpointName,V=C.queryArgs,F="",K=cache==null?void 0:cache.get(V);if(typeof K=="string")F=K;else{var J=JSON.stringify(V,function(ee,te){return toolkit.isPlainObject(te)?Object.keys(te).sort().reduce(function(ne,re){return ne[re]=te[re],ne},{}):te});toolkit.isPlainObject(V)&&(cache==null||cache.set(V,J)),F=J}return $+"("+F+")"},useIsomorphicLayoutEffect=typeof window!="undefined"&&window.document&&window.document.createElement?React.useLayoutEffect:React.useEffect,defaultMutationStateSelector=function(C){return C},noPendingQueryStateSelector=function(C){return C.isUninitialized?__spreadProps(__spreadValues({},C),{isUninitialized:!1,isFetching:!0,isLoading:C.data===void 0,status:QueryStatus.pending}):C};function buildHooks(C){var $=C.api,V=C.moduleOptions,F=V.batch,K=V.useDispatch,J=V.useSelector,ee=V.useStore,te=V.unstable__sideEffectsInRender,ne=C.serializeQueryArgs,re=C.context,ae=te?function(ue){return ue()}:React.useEffect;return{buildQueryHooks:se,buildMutationHook:ce,usePrefetch:ie};function oe(ue,le,ve){if(le!=null&&le.endpointName&&ue.isUninitialized){var fe=le.endpointName,ge=re.endpointDefinitions[fe];ne({queryArgs:le.originalArgs,endpointDefinition:ge,endpointName:fe})===ne({queryArgs:ve,endpointDefinition:ge,endpointName:fe})&&(le=void 0)}var pe=ue.isSuccess?ue.data:le==null?void 0:le.data;pe===void 0&&(pe=ue.data);var de=pe!==void 0,me=ue.isLoading,ye=!de&&me,_e=ue.isSuccess||me&&de;return __spreadProps(__spreadValues({},ue),{data:pe,currentData:ue.data,isFetching:me,isLoading:ye,isSuccess:_e})}function ie(ue,le){var ve=K(),fe=useShallowStableValue(le);return React.useCallback(function(ge,pe){return ve($.util.prefetch(ue,ge,__spreadValues(__spreadValues({},fe),pe)))},[ue,ve,fe])}function se(ue){var le=function(ge,pe){var de=pe===void 0?{}:pe,me=de.refetchOnReconnect,ye=de.refetchOnFocus,_e=de.refetchOnMountOrArgChange,he=de.skip,be=he===void 0?!1:he,Se=de.pollingInterval,Re=Se===void 0?0:Se,Ce=$.endpoints[ue].initiate,xe=K(),$e=useStableQueryArgs(be?skipToken:ge,defaultSerializeQueryArgs,re.endpointDefinitions[ue],ue),Ie=useShallowStableValue({refetchOnReconnect:me,refetchOnFocus:ye,pollingInterval:Re}),Fe=React.useRef(!1),Ne=React.useRef(),De=Ne.current||{},Oe=De.queryCacheKey,Te=De.requestId,Ae=!1;if(Oe&&Te){var ke=xe($.internalActions.internal_probeSubscription({queryCacheKey:Oe,requestId:Te}));if(process.env.NODE_ENV!=="production"&&typeof ke!="boolean")throw new Error('Warning: Middleware for RTK-Query API at reducerPath "'+$.reducerPath+`" has not been added to the store.
|
|
434
|
-
You must add the middleware for RTK-Query to function correctly!`);Ae=!!ke}var je=!Ae&&Fe.current;return ae(function(){Fe.current=Ae}),ae(function(){je&&(Ne.current=void 0)},[je]),ae(function(){var ze,Ve=Ne.current;if(typeof process!="undefined"&&process.env.NODE_ENV==="removeMeOnCompilation"&&console.log(je),$e===skipToken){Ve==null||Ve.unsubscribe(),Ne.current=void 0;return}var Xe=(ze=Ne.current)==null?void 0:ze.subscriptionOptions;if(!Ve||Ve.arg!==$e){Ve==null||Ve.unsubscribe();var Ye=xe(Ce($e,{subscriptionOptions:Ie,forceRefetch:_e}));Ne.current=Ye}else Ie!==Xe&&Ve.updateSubscriptionOptions(Ie)},[xe,Ce,_e,$e,Ie,je]),React.useEffect(function(){return function(){var ze;(ze=Ne.current)==null||ze.unsubscribe(),Ne.current=void 0}},[]),React.useMemo(function(){return{refetch:function(){var ze;if(!Ne.current)throw new Error("Cannot refetch a query that has not been started yet.");return(ze=Ne.current)==null?void 0:ze.refetch()}}},[])},ve=function(ge){var pe=ge===void 0?{}:ge,de=pe.refetchOnReconnect,me=pe.refetchOnFocus,ye=pe.pollingInterval,_e=ye===void 0?0:ye,he=$.endpoints[ue].initiate,be=K(),Se=React.useState(UNINITIALIZED_VALUE),Re=Se[0],Ce=Se[1],xe=React.useRef(),$e=useShallowStableValue({refetchOnReconnect:de,refetchOnFocus:me,pollingInterval:_e});ae(function(){var Ne,De,Oe=(Ne=xe.current)==null?void 0:Ne.subscriptionOptions;$e!==Oe&&((De=xe.current)==null||De.updateSubscriptionOptions($e))},[$e]);var Ie=React.useRef($e);ae(function(){Ie.current=$e},[$e]);var Fe=React.useCallback(function(Ne,De){De===void 0&&(De=!1);var Oe;return F(function(){var Te;(Te=xe.current)==null||Te.unsubscribe(),xe.current=Oe=be(he(Ne,{subscriptionOptions:Ie.current,forceRefetch:!De})),Ce(Ne)}),Oe},[be,he]);return React.useEffect(function(){return function(){var Ne;(Ne=xe==null?void 0:xe.current)==null||Ne.unsubscribe()}},[]),React.useEffect(function(){Re!==UNINITIALIZED_VALUE&&!xe.current&&Fe(Re,!0)},[Re,Fe]),React.useMemo(function(){return[Fe,Re]},[Fe,Re])},fe=function(ge,pe){var de=pe===void 0?{}:pe,me=de.skip,ye=me===void 0?!1:me,_e=de.selectFromResult,he=$.endpoints[ue].select,be=useStableQueryArgs(ye?skipToken:ge,ne,re.endpointDefinitions[ue],ue),Se=React.useRef(),Re=React.useMemo(function(){return toolkit.createSelector([he(be),function(Fe,Ne){return Ne},function(Fe){return be}],oe)},[he,be]),Ce=React.useMemo(function(){return _e?toolkit.createSelector([Re],_e):Re},[Re,_e]),xe=J(function(Fe){return Ce(Fe,Se.current)},reactRedux.shallowEqual),$e=ee(),Ie=Re($e.getState(),Se.current);return useIsomorphicLayoutEffect(function(){Se.current=Ie},[Ie]),xe};return{useQueryState:fe,useQuerySubscription:le,useLazyQuerySubscription:ve,useLazyQuery:function(ge){var pe=ve(ge),de=pe[0],me=pe[1],ye=fe(me,__spreadProps(__spreadValues({},ge),{skip:me===UNINITIALIZED_VALUE})),_e=React.useMemo(function(){return{lastArg:me}},[me]);return React.useMemo(function(){return[de,ye,_e]},[de,ye,_e])},useQuery:function(ge,pe){var de=le(ge,pe),me=fe(ge,__spreadValues({selectFromResult:ge===skipToken||pe!=null&&pe.skip?void 0:noPendingQueryStateSelector},pe)),ye=me.data,_e=me.status,he=me.isLoading,be=me.isSuccess,Se=me.isError,Re=me.error;return React.useDebugValue({data:ye,status:_e,isLoading:he,isSuccess:be,isError:Se,error:Re}),React.useMemo(function(){return __spreadValues(__spreadValues({},me),de)},[me,de])}}}function ce(ue){return function(le){var ve=le===void 0?{}:le,fe=ve.selectFromResult,ge=fe===void 0?defaultMutationStateSelector:fe,pe=ve.fixedCacheKey,de=$.endpoints[ue],me=de.select,ye=de.initiate,_e=K(),he=React.useState(),be=he[0],Se=he[1];React.useEffect(function(){return function(){be!=null&&be.arg.fixedCacheKey||be==null||be.reset()}},[be]);var Re=React.useCallback(function(Ve){var Xe=_e(ye(Ve,{fixedCacheKey:pe}));return Se(Xe),Xe},[_e,ye,pe]),Ce=(be||{}).requestId,xe=React.useMemo(function(){return toolkit.createSelector([me({fixedCacheKey:pe,requestId:be==null?void 0:be.requestId})],ge)},[me,be,ge,pe]),$e=J(xe,reactRedux.shallowEqual),Ie=pe==null?be==null?void 0:be.arg.originalArgs:void 0,Fe=React.useCallback(function(){F(function(){be&&Se(void 0),pe&&_e($.internalActions.removeMutationResult({requestId:Ce,fixedCacheKey:pe}))})},[_e,pe,be,Ce]),Ne=$e.endpointName,De=$e.data,Oe=$e.status,Te=$e.isLoading,Ae=$e.isSuccess,ke=$e.isError,je=$e.error;React.useDebugValue({endpointName:Ne,data:De,status:Oe,isLoading:Te,isSuccess:Ae,isError:ke,error:je});var ze=React.useMemo(function(){return __spreadProps(__spreadValues({},$e),{originalArgs:Ie,reset:Fe})},[$e,Ie,Fe]);return React.useMemo(function(){return[Re,ze]},[Re,ze])}}}var DefinitionType;(function(C){C.query="query",C.mutation="mutation"})(DefinitionType||(DefinitionType={}));function isQueryDefinition(C){return C.type===DefinitionType.query}function isMutationDefinition(C){return C.type===DefinitionType.mutation}function capitalize$1(C){return C.replace(C[0],C[0].toUpperCase())}function safeAssign(C){for(var $=[],V=1;V<arguments.length;V++)$[V-1]=arguments[V];Object.assign.apply(Object,__spreadArray$1([C],$))}var reactHooksModuleName=Symbol(),reactHooksModule=function(C){var $=C===void 0?{}:C,V=$.batch,F=V===void 0?reactRedux.batch:V,K=$.useDispatch,J=K===void 0?reactRedux.useDispatch:K,ee=$.useSelector,te=ee===void 0?reactRedux.useSelector:ee,ne=$.useStore,re=ne===void 0?reactRedux.useStore:ne,ae=$.unstable__sideEffectsInRender,oe=ae===void 0?!1:ae;return{name:reactHooksModuleName,init:function(ie,se,ce){var ue=se.serializeQueryArgs,le=ie,ve=buildHooks({api:ie,moduleOptions:{batch:F,useDispatch:J,useSelector:te,useStore:re,unstable__sideEffectsInRender:oe},serializeQueryArgs:ue,context:ce}),fe=ve.buildQueryHooks,ge=ve.buildMutationHook,pe=ve.usePrefetch;return safeAssign(le,{usePrefetch:pe}),safeAssign(ce,{batch:F}),{injectEndpoint:function(de,me){if(isQueryDefinition(me)){var ye=fe(de),_e=ye.useQuery,he=ye.useLazyQuery,be=ye.useLazyQuerySubscription,Se=ye.useQueryState,Re=ye.useQuerySubscription;safeAssign(le.endpoints[de],{useQuery:_e,useLazyQuery:he,useLazyQuerySubscription:be,useQueryState:Se,useQuerySubscription:Re}),ie["use"+capitalize$1(de)+"Query"]=_e,ie["useLazy"+capitalize$1(de)+"Query"]=he}else if(isMutationDefinition(me)){var Ce=ge(de);safeAssign(le.endpoints[de],{useMutation:Ce}),ie["use"+capitalize$1(de)+"Mutation"]=Ce}}}}}},createApi=buildCreateApi(coreModule(),reactHooksModule());let baseUrl="http://localhost:8000";const dynamicBaseQuery=(C,$,V)=>tr(this,null,function*(){return fetchBaseQuery({baseUrl,prepareHeaders:K=>{if(K.set("Content-Type","application/json"),typeof window!="undefined"){const J=document.querySelector('meta[name="csrf-token"]');J&&K.set("X-CSRF-Token",J.content)}return K}})(C,$,V)}),careerHubApi=createApi({reducerPath:"careerHubApi",baseQuery:dynamicBaseQuery,tagTypes:["CareerHub","Jobs","PipelineJobs","RelevantJobs","FilterOptions","JobPreview","JobAlerts"],endpoints:()=>({})}),setBaseUrl=C=>{C!==baseUrl&&(baseUrl=C)},BASE_URL="/api/v3/careers-hub/applications",createApplicationService=careerHubApi.injectEndpoints({endpoints:C=>({createApplication:C.mutation({query:({jobProfileId:$,utmMedium:V,utmSource:F,currentTab:K,utmId:J})=>({url:BASE_URL,method:"POST",body:{job_profile_id:$,medium:V!=null?V:"ch",origin:F!=null?F:"direct",tab_name:K,action_type:J!=null?J:"apply"}}),invalidatesTags:["Jobs","PipelineJobs","RelevantJobs"]}),getApplication:C.query({query:({applicationId:$,jobProfileId:V,status:F})=>({url:`${BASE_URL}/${$}`,params:{job_profile_id:V,step_name:F}})}),updateApplication:C.mutation({query:({applicationId:$,payload:V})=>({url:`${BASE_URL}/${$}`,method:"PATCH",body:V}),invalidatesTags:["Jobs","PipelineJobs","RelevantJobs"]})})}),{useCreateApplicationMutation,useGetApplicationQuery,useUpdateApplicationMutation}=createApplicationService,useCreateApplication=({jobProfileId:C,utmMedium:$,utmSource:V,currentTab:F,utmId:K})=>{const[J,ee]=React.useState(null),[te,ne]=React.useState(null),[re,{isLoading:ae,isError:oe,error:ie,isSuccess:se}]=useCreateApplicationMutation(),ce=React.useCallback(()=>tr(this,null,function*(){var ue,le,ve,fe;try{const ge=yield re({jobProfileId:C,utmMedium:$,utmSource:V,currentTab:F,utmId:K});ee((le=(ue=ge==null?void 0:ge.data)==null?void 0:ue.user_company)==null?void 0:le.id),ne((fe=(ve=ge==null?void 0:ge.data)==null?void 0:ve.user_company)==null?void 0:fe.status)}catch(ge){ee(null),ne(null)}}),[re,C,$,V,F,K]);return React.useEffect(()=>{ce()},[ce]),{retry:ce,data:{status:te,applicationId:J},isLoading:ae,isError:oe,error:ie,isSuccess:se}},useApplicationForm=({jobProfileId:C,applicationId:$,status:V})=>{var re;const{data:F,isLoading:K,isError:J,error:ee,isSuccess:te,refetch:ne}=useGetApplicationQuery({applicationId:$,jobProfileId:C,status:V},{skip:!$||!V});return{retry:ne,data:(re=F==null?void 0:F.details)==null?void 0:re.data,isLoading:K,isError:J,error:ee,isSuccess:te}};function convertArraySingletonsToObject(C){return C.map($=>({label:$,value:$}))}const JOB_CARD_CONFIG={home:{isExperienceCtcAvailable:!0,isNoticePeriodAvailable:!0,isAppliedDateAvailable:!1,isArchivedStatusAvailable:!1,isApplicationStatusAvailable:!1},all:{isExperienceCtcAvailable:!0,isNoticePeriodAvailable:!0,isAppliedDateAvailable:!1,isArchivedStatusAvailable:!1,isApplicationStatusAvailable:!1},eligible:{isExperienceCtcAvailable:!0,isNoticePeriodAvailable:!0,isAppliedDateAvailable:!1,isArchivedStatusAvailable:!1,isApplicationStatusAvailable:!1},saved:{isExperienceCtcAvailable:!0,isNoticePeriodAvailable:!0,isAppliedDateAvailable:!1,isArchivedStatusAvailable:!1,isApplicationStatusAvailable:!1},applications:{isExperienceCtcAvailable:!0,isNoticePeriodAvailable:!0,isAppliedDateAvailable:!0,isArchivedStatusAvailable:!0,isApplicationStatusAvailable:!0},archived:{isExperienceCtcAvailable:!0,isNoticePeriodAvailable:!0,isAppliedDateAvailable:!1,isArchivedStatusAvailable:!0,isApplicationStatusAvailable:!1}},APPLICATION_STATUS={NOT_APPLIED:"Not Applied",SAVED:"Saved",APPLIED:"Applied",IN_PIPELINE:"In Pipeline",ARCHIVED:"Archived"},JOB_PROFILE_STATUS={ACTIVE:"active",PAUSED:"paused",INACTIVE:"inactive"},TABS={HOME:"home",ALL:"all",ELIGIBLE:"eligible",SAVED:"saved",APPLICATIONS:"applications",ARCHIVED:"archived"},WITHDRAW_REASONS=convertArraySingletonsToObject(["Got another offer","Company didn't match expectations","Need more prep time","Applied by mistake","Other"]),useJobCardState=({currentTab:C,isActive:$,jobData:V})=>{const F=React.useMemo(()=>JOB_CARD_CONFIG[C]||JOB_CARD_CONFIG.all,[C]),K=React.useMemo(()=>!0,[]),J=React.useMemo(()=>V.expiry?new Date(V.expiry)<new Date||V.jobProfileStatus!=="active":!1,[V.expiry,V.jobProfileStatus]);return{cardConfig:F,shouldShowBody:K,isExpired:J}},useJobFilters=()=>{const C=reactRedux.useSelector(V=>{var F;return((F=V.scalantCareerHub)==null?void 0:F.filter)||{}});return React.useMemo(()=>{const{filters:V,per_page:F,tab:K,page_number:J,sortings:ee,skip_expired_jobs:te}=C;return{per_page:F,tab:K,filters:V||{keyword:""},sortings:ee,page_number:J,skip_expired_jobs:te}},[C])},useInfiniteScroll=({hasMore:C=!0,isLoading:$=!1,isFetchingMore:V=!1,rootMargin:F="100px",threshold:K=.1}={})=>{const J=reactRedux.useDispatch(),ee=reactRedux.useSelector(oe=>{var ie,se;return((se=(ie=oe.scalantCareerHub)==null?void 0:ie.filter)==null?void 0:se.page_number)||1}),te=React.useRef(null),ne=React.useRef(null),re=React.useCallback(()=>{!$&&!V&&C&&J(setPageNumber(ee+1))},[J,ee,$,V,C]);return React.useEffect(()=>{const oe=te.current;if(ne.current&&(oe&&ne.current.unobserve(oe),ne.current=null),!oe||!C||$||V)return;const ie=new IntersectionObserver(se=>{const[ce]=se;ce.isIntersecting&&re()},{root:null,rootMargin:F,threshold:K});return ie.observe(oe),ne.current=ie,()=>{ne.current&&oe&&(ne.current.unobserve(oe),ne.current=null)}},[re,C,$,V,F,K]),{sentinelRef:React.useCallback(oe=>{if(te.current&&ne.current&&(ne.current.unobserve(te.current),ne.current=null),te.current=oe,oe&&C&&!$&&!V){const ie=new IntersectionObserver(se=>{const[ce]=se;ce.isIntersecting&&re()},{root:null,rootMargin:F,threshold:K});ie.observe(oe),ne.current=ie}},[re,C,$,V,F,K])}},getCurrentSortingValue=(C=[])=>{if(!C||C.length===0)return"eligibility";const $=C[0];for(const V of Object.values(SORTING_OPTIONS))if(V.mapping.property===$.property&&V.mapping.direction===$.direction)return V.value;return"eligibility"},accumulateJobs=(C=[],$=[])=>{if(!$||$.length===0)return C;const V=new Set(C.map(K=>K.id)),F=$.filter(K=>!V.has(K.id));return[...C,...F]},accumulateCompaniesMap=(C={},$={})=>zn(zn({},C),$),useAccumulatedJobs=(C,$=!1,V=!1,F=null)=>{const K=reactRedux.useSelector(le=>{var ve,fe;return((fe=(ve=le.scalantCareerHub)==null?void 0:ve.filter)==null?void 0:fe.page_number)||1}),J=reactRedux.useSelector(le=>{var ve,fe;return((fe=(ve=le.scalantCareerHub)==null?void 0:ve.dashboard)==null?void 0:fe.processCounts)||{}}),[ee,te]=React.useState([]),[ne,re]=React.useState({}),ae=React.useMemo(()=>(C==null?void 0:C.jobs)||(C==null?void 0:C.results)||[],[C==null?void 0:C.jobs,C==null?void 0:C.results]),oe=React.useMemo(()=>(C==null?void 0:C.companiesMap)||{},[C==null?void 0:C.companiesMap]),ie=React.useMemo(()=>F||null,[F]),se=React.useMemo(()=>typeof(C==null?void 0:C.totalEntries)=="number"?C.totalEntries:ie?J[ie]||0:null,[ie,J,C==null?void 0:C.totalEntries]);React.useEffect(()=>{te([]),re({})},[F]),React.useEffect(()=>{K===1?(te(ae),re(oe)):ae.length>0&&(te(le=>accumulateJobs(le,ae)),re(le=>accumulateCompaniesMap(le,oe)))},[ae,oe,K]);const ce=React.useMemo(()=>se===null?ae.length>0:ee.length<se,[se,ee.length,ae.length]),ue=$&&K>1;return{accumulatedJobs:ee,accumulatedCompaniesMap:ne,hasMore:ce,isFetchingMore:ue,isLoading:(V||$)&&K===1}},filterService=careerHubApi.injectEndpoints({endpoints:C=>({getCompanies:C.query({query:$=>({url:"/job-tracker/filters/",params:{query_type:"companies",q:$}}),transformResponse:$=>($.data||[]).map(F=>({id:F.id,value:F.attributes.name})),providesTags:["FilterOptions"]}),getTitles:C.query({query:$=>({url:"/job-tracker/filters/",params:{query_type:"title",q:$}}),transformResponse:$=>{const V=($.data||[]).map(K=>({id:K.id,value:K.attributes.title||K.attributes.name}));let F={};return V.forEach(K=>{F[K.value]=K.value}),Object.keys(F).map(K=>({key:K,value:F[K]}))},providesTags:["FilterOptions"]}),getExperienceSkills:C.query({query:$=>({url:"/user/skills/all",params:{prefix_q:$}}),transformResponse:$=>($.all_skills||[]).map(F=>({skill_id:F.skill_id,key:F.key,skill_type:F.skill_type})).filter(F=>F.key&&F.skill_id&&F.skill_type).map(F=>({key:F.skill_id,value:F.key,type:F.skill_type})),providesTags:["FilterOptions"]})})}),{useGetCompaniesQuery,useGetTitlesQuery,useGetExperienceSkillsQuery}=filterService,convertToSelectOption=(C,$,V=$)=>!C||!Array.isArray(C)?[]:C.map(F=>({key:F[$],value:F[V]})),minCtcOptions=new Array(5).fill(1).map((C,$)=>({value:(C+$)*5,label:`>= ${(C+$)*5} Lakhs`})),minCtcUSOptions=[{value:20,label:">= 20K"},{value:30,label:">= 30K"},{value:50,label:">= 50K"},{value:75,label:">= 75K"},{value:100,label:">= 100K"}],mockInterviewSkillOptions=[{value:0,label:"Must to Have"},{value:1,label:"Good to Have"},{value:2,label:"Bar Raiser"},{value:3,label:"Must to Have (Eligibility)"}],datePostedOnOptions=[{value:1,label:"Last 24 hours"},{value:3,label:"Last 3 days"},{value:7,label:"Last 7 days"},{value:30,label:"Last 30 days"}],seniorityLevelOptions=[{value:202948,label:"Fresher"},{value:202949,label:"Entry - Mid"},{value:202950,label:"Mid - Senior"},{value:202951,label:"Senior"}],stipendOptions=[{value:1e4,label:">= 10K"},{value:2e4,label:">= 20K"},{value:3e4,label:">= 30K"},{value:4e4,label:">= 40K"},{value:5e4,label:">= 50K"},{value:6e4,label:">= 60K"}],internshipDurationOptions=[{value:3,label:">= 3 months"},{value:6,label:">= 6 months"},{value:9,label:">= 9 months"},{value:12,label:">= 12 months"}],jobTypeOptions=[{value:"Full time roles",key:"full_time"},{value:"Internship roles",key:"internship"}],MONTH_OPTIONS$1=new Array(3).fill(1).map((C,$)=>({value:((C+$+1)*30).toString(),label:`greater than ${C+$+1} Months`})),NOTICE_PERIOD_OPTIONS$1=[{value:"not filled",label:"Not Available"},{value:"0",label:"0 Days"},{value:"15",label:"greater than 15 Days"},{value:"30",label:"greater than 30 Days"},{value:"45",label:"greater than 45 Days"},...MONTH_OPTIONS$1],getMinCtcOptions=C=>C?minCtcUSOptions:minCtcOptions,getProficiencyOptions=C=>C?Object.entries(C).map(([$,V])=>({value:V,label:$})):mockInterviewSkillOptions,getMeritBasedSkillOptions=C=>!C||!Array.isArray(C)?[]:C.map($=>({value:$.id,label:$.title})),getExperienceSkillOptions=C=>!C||!Array.isArray(C)?[]:C.map($=>({value:$.subtopic_id,label:$.subtopic,type:$.eligible_class||"SubTopic"})),filterOptions={minCtcOptions,minCtcUSOptions,getMinCtcOptions,mockInterviewSkillOptions,datePostedOnOptions,seniorityLevelOptions,stipendOptions,internshipDurationOptions,jobTypeOptions,NOTICE_PERIOD_OPTIONS:NOTICE_PERIOD_OPTIONS$1,convertToSelectOption,getProficiencyOptions,getMeritBasedSkillOptions,getExperienceSkillOptions},initialState$7={companyOptions:[],titleOptions:[],experienceSkillOptions:[]},filterOptionsSlice=toolkit.createSlice({name:"filterOptions",initialState:initialState$7,reducers:{setCompanyOptions:(C,$)=>{C.companyOptions=convertToSelectOption($.payload,"id","value")},setTitleOptions:(C,$)=>{C.titleOptions=$.payload},setExperienceSkillOptions:(C,$)=>{C.experienceSkillOptions=$.payload},clearCompanyOptions:C=>{C.companyOptions=[]},clearTitleOptions:C=>{C.titleOptions=[]},clearExperienceSkillOptions:()=>{},clearAllOptions:C=>{C.companyOptions=[],C.titleOptions=[],C.experienceSkillOptions=[]}},extraReducers:C=>{C.addMatcher(filterService.endpoints.getCompanies.matchFulfilled,($,V)=>{$.companyOptions=convertToSelectOption(V.payload,"id","value")}),C.addMatcher(filterService.endpoints.getTitles.matchFulfilled,($,V)=>{$.titleOptions=V.payload}),C.addMatcher(filterService.endpoints.getExperienceSkills.matchFulfilled,($,V)=>{const F=V.payload||[],K=$.experienceSkillOptions||[],J=new Map(K.map(ee=>[ee.key,ee]));F.forEach(ee=>{J.set(ee.key,ee)}),$.experienceSkillOptions=Array.from(J.values())})}}),{setCompanyOptions,setTitleOptions,setExperienceSkillOptions,clearCompanyOptions,clearTitleOptions,clearExperienceSkillOptions,clearAllOptions}=filterOptionsSlice.actions,filterOptionsReducer=filterOptionsSlice.reducer,useDebounce=(C,$)=>{const V=React.useRef(null);return React.useCallback((...F)=>{V.current&&clearTimeout(V.current),V.current=setTimeout(()=>{C(...F)},$)},[C,$])},useAsyncFilterOptions=()=>{const C=reactRedux.useDispatch(),[$,V]=React.useState(""),[F,K]=React.useState(""),[J,ee]=React.useState(""),{isLoading:te,isFetching:ne}=useGetCompaniesQuery($,{skip:!$||$.length<3}),{isLoading:re,isFetching:ae}=useGetTitlesQuery(F,{skip:!F||F.length<3}),{isLoading:oe,isFetching:ie}=useGetExperienceSkillsQuery(J,{skip:!J||J.length<2});React.useEffect(()=>{(!$||$.length<3)&&C(clearCompanyOptions())},[$,C]),React.useEffect(()=>{(!F||F.length<3)&&C(clearTitleOptions())},[F,C]),React.useEffect(()=>{(!J||J.length<2)&&C(clearExperienceSkillOptions())},[J,C]);const se=React.useCallback(pe=>{V(pe)},[]),ce=useDebounce(se,300),ue=React.useCallback(pe=>{K(pe)},[]),le=useDebounce(ue,300),ve=React.useCallback(pe=>{ee(pe)},[]),fe=useDebounce(ve,300),ge=React.useCallback((pe,de)=>pe.map(me=>{const ye=de==null?void 0:de.find(_e=>_e.key===me);return{experience_skill_id:me,skill_type:(ye==null?void 0:ye.type)||"SubTopic"}}),[]);return{handleCompanySearch:ce,handleTitleSearch:le,handleExperienceSkillSearch:fe,handleExperienceSkillChange:ge,loadingCompanies:te||ne,loadingTitles:re||ae,loadingExperienceSkills:oe||ie}},useFilterMetaOptions=()=>{const C=reactRedux.useSelector(se=>{var ce;return((ce=se.scalantCareerHub.metaData)==null?void 0:ce.meta)||{}}),$=React.useMemo(()=>filterOptions.jobTypeOptions,[]),V=React.useMemo(()=>convertToSelectOption(C.jobCategories||[],"value","label"),[C.jobCategories]),F=React.useMemo(()=>convertToSelectOption(C.seniorityLevels||[],"value","label"),[C.seniorityLevels]),K=React.useMemo(()=>convertToSelectOption(C.companyCategories||[],"value","label"),[C.companyCategories]),J=React.useMemo(()=>convertToSelectOption(C.jobLocations||[],"label"),[C.jobLocations]),ee=React.useMemo(()=>convertToSelectOption(C.meritBasedSkills||[],"id","title"),[C.meritBasedSkills]),te=React.useMemo(()=>filterOptions.getMinCtcOptions(!1),[]),ne=React.useMemo(()=>filterOptions.stipendOptions,[]),re=React.useMemo(()=>filterOptions.internshipDurationOptions,[]),ae=React.useMemo(()=>filterOptions.NOTICE_PERIOD_OPTIONS,[]),oe=React.useMemo(()=>filterOptions.datePostedOnOptions,[]),ie=React.useMemo(()=>filterOptions.mockInterviewSkillOptions,[]);return{jobTypes:$,functions:V,seniorityLevels:F,companyCategories:K,locations:J,mbeSkills:ee,ctcRanges:te,stipendRanges:ne,durationRanges:re,noticePeriods:ae,datePostedOptions:oe,skillRatings:ie}},initialState$6={selectedJobId:null},layoutSlice=toolkit.createSlice({name:"layout",initialState:initialState$6,reducers:{setSelectedJobId:(C,$)=>{C.selectedJobId=$.payload},clearSelectedJobId:C=>{C.selectedJobId=null}}}),{setSelectedJobId,clearSelectedJobId}=layoutSlice.actions,layoutReducer=layoutSlice.reducer,serializeFiltersToQueryParams=C=>{const $=new URLSearchParams;return!C||typeof C!="object"||Object.keys(C).forEach(V=>{const F=C[V];if(!(F==null||F===""))if(Array.isArray(F))F.length>0&&$.append(V,F.join(","));else if(typeof F=="object")try{$.append(V,JSON.stringify(F))}catch(K){}else $.append(V,String(F))}),$},deserializeQueryParamsToFilters=C=>{const $={};return(typeof C=="string"?new URLSearchParams(C):C).forEach((F,K)=>{try{const J=JSON.parse(F);if(typeof J=="object"){$[K]=J;return}}catch(J){}if(F.includes(","))$[K]=F.split(",").filter(J=>J.trim()!=="");else if(!isNaN(F)&&F!==""){const J=Number(F);isNaN(J)?$[K]=F:$[K]=J}else $[K]=F}),$},updateURLWithFilters=C=>{if(typeof window=="undefined")return;const $=serializeFiltersToQueryParams(C),V=$.toString()?`${window.location.pathname}?${$.toString()}`:window.location.pathname;window.history.replaceState({},"",V)},getFiltersFromURL=()=>typeof window=="undefined"?{}:deserializeQueryParamsToFilters(window.location.search),updateURLWithJobId=C=>{if(typeof window=="undefined")return;const $=new URLSearchParams(window.location.search);C?$.set("job_ids",String(C)):$.delete("job_ids");const V=$.toString()?`${window.location.pathname}?${$.toString()}`:window.location.pathname;window.history.replaceState({},"",V)},getJobIdFromURL=()=>typeof window=="undefined"?null:new URLSearchParams(window.location.search).get("job_ids")||null,updateURLWithTab=C=>{if(typeof window=="undefined")return;const $=new URLSearchParams(window.location.search);C?$.set("tab",String(C)):$.delete("tab");const V=$.toString()?`${window.location.pathname}?${$.toString()}`:window.location.pathname;window.history.replaceState({},"",V)},getTabFromURL=()=>typeof window=="undefined"?null:new URLSearchParams(window.location.search).get("tab")||null;function useJobQueryParams({syncToURL:C=!0,syncFromURL:$=!0}={}){const V=reactRedux.useDispatch(),F=reactRedux.useSelector(ae=>ae.scalantCareerHub.layout.selectedJobId),K=reactRedux.useSelector(ae=>{var oe,ie;return((ie=(oe=ae.scalantCareerHub)==null?void 0:oe.filter)==null?void 0:ie.tab)||TAG_TO_TAB_MAPPING.relevant}),J=React.useRef(!1),ee=React.useRef(!1);React.useEffect(()=>{if(!$||J.current)return;ee.current=!0;const ae=getTabFromURL(),oe=getJobIdFromURL();if(ae&&Object.values(TAG_TO_TAB_MAPPING).includes(ae)&&V(setTab(ae)),oe){const ie=Number(oe);isNaN(ie)||V(setSelectedJobId(ie))}J.current=!0,ee.current=!1},[V,$]),React.useEffect(()=>{!C||ee.current||!J.current||updateURLWithTab(K)},[K,C]),React.useEffect(()=>{!C||ee.current||!J.current||updateURLWithJobId(F||null)},[F,C]);const te=ae=>{ae?V(setSelectedJobId(ae)):(V(clearSelectedJobId()),V(updateFormFilters({job_ids:null}))),C&&updateURLWithJobId(ae)},ne=ae=>{Object.values(TAG_TO_TAB_MAPPING).includes(ae)&&(V(setTab(ae)),C&&updateURLWithTab(ae))};return{currentTab:K,selectedJobId:F,updateJobId:te,updateTab:ne,updateTabAndJobId:(ae,oe)=>{ne(ae),te(oe)}}}const PRODUCT_NAME="Jobs Page V2",container$b="_container_lsttj_1",tag$2="_tag_lsttj_6",styles$L={container:container$b,tag:tag$2};function FilterTags({analytics:C}){const $=reactRedux.useDispatch(),{selectedJobId:V,updateJobId:F}=useJobQueryParams({syncFromURL:!1}),K=()=>{C==null||C.click("Filter Tags - Remove Job Filter",PRODUCT_NAME),F(null),$(updateFormFilters({job_ids:null}))};return V?React.createElement(Flex$1,{className:styles$L.container},React.createElement(Typography$1.Text,{className:styles$L.title},"Job Selected:"),React.createElement(Tag$1,{color:"blue",className:styles$L.tag,onClick:K},`ID#${V}`,React.createElement(CloseOutlined$1,{className:styles$L.closeIcon}))):React.createElement("div",{className:styles$L.container})}const content="_content_1lda0_1",header$2="_header_1lda0_10",sider="_sider_1lda0_18",layout="_layout_1lda0_23",styles$K={content,header:header$2,sider,layout},{Header,Sider,Content}=Layout$1;function JobsLayout({analytics:C,header:$,children:V,className:F,sider:K,siderWidth:J}){var re;const ee=React.useRef(null),[te,ne]=React.useState(0);return React.useEffect(()=>{var ae;ne((ae=ee.current)==null?void 0:ae.clientHeight)},[(re=ee.current)==null?void 0:re.clientHeight]),React.createElement(Layout$1,{className:F},React.createElement(Header,{className:styles$K.header},$||"Header"),React.createElement(FilterTags,{analytics:C}),React.createElement(Layout$1,{className:styles$K.layout},React.createElement(Content,{style:{height:`${te}px`},className:styles$K.content},V),K&&React.createElement(Sider,{ref:ee,className:styles$K.sider,width:J||"25%"},K)))}JobsLayout.propTypes={analytics:PropTypes.object,children:PropTypes.node.isRequired,className:PropTypes.string,sider:PropTypes.node,siderWidth:PropTypes.oneOfType([PropTypes.string,PropTypes.number])},JobsLayout.defaultProps={className:"",sider:null,siderWidth:"25%"};const toCamelCase=C=>C&&C.replace(/_([a-z])/g,$=>$[1].toUpperCase()),toTitleCase=C=>!C||typeof C!="string"?C:C.toLowerCase().split(/[\s_]+/).map($=>$.charAt(0).toUpperCase()+$.slice(1)).join(" "),toCase=(C,$)=>{if(!$||typeof $!="string")return $;switch(C){case"camelCase":return toCamelCase($);case"titleCase":return toTitleCase($);default:return $}},toCamelCaseObject=C=>{if(C==null)return C;if(Array.isArray(C))return C.map(toCamelCaseObject);if(typeof C=="object"){const $={};return Object.keys(C).forEach(V=>{const F=toCamelCase(V);$[F]=toCamelCaseObject(C[V])}),$}return C},countPendingSteps=(C,$)=>{let V=0;return C!=null&&C.data&&Object.values(C.data).forEach(F=>{F.contests&&F.contests.cleared===!1&&(V+=1),F.skills&&F.skills.cleared===!1&&(V+=1)}),$!=null&&$.data&&Object.values($.data).forEach(F=>{F.data&&F.data.cleared===!1&&(V+=1)}),V},checkAllOtherRequirementsMet=(C,$)=>["experience","notice_period"].every(F=>{if(F===$)return!0;const K=C[F];return!K||K.isEligible}),ELIGIBILITY_TYPES={quick_apply:"quick_apply",eligible:"eligible",ineligible:"ineligible",steps_to_apply:"steps_to_apply",notice_period_mismatch:"notice_period_mismatch",expired:"expired"},NON_WITHDRAW_STATUSES=["Rejected","Offer Withdrawn","To Be Offered","Offer Accepted","Offer Declined","Joined","Offer Received","Draft"],determineJobTag=(C,$)=>{const{isRelevant:V,expiry:F,jobProfileStatus:K}=toCamelCaseObject(C),{isEligible:J,reasons:ee=[]}=toCamelCaseObject($)||{};if(F&&(new Date(F)<new Date||K!=="active"))return{tag:"expired",text:"Missed",icon:"InfoCircleOutlined",color:"#FA541C",antdColor:"volcano"};const ne=ee.reduce((ce,ue)=>(ce[ue.label]=ue,ce),{}),re=ne.experience,ae=ne.notice_period,oe=ne.skills,ie=ne.tech_stacks;if(J&&V)return{tag:"quick_apply",text:"Quick Apply",icon:"CheckCircleOutlined",color:"#1A8452",antdColor:"green"};if(J)return{tag:"eligible",text:"Eligible",icon:"CheckCircleOutlined",color:"#1A8452",antdColor:"green"};if(re&&!re.isEligible)return{tag:"ineligible",text:"Ineligible",icon:"CloseCircleOutlined",color:"#a42137",antdColor:"error"};if(ae&&!ae.isEligible&&checkAllOtherRequirementsMet(ne,"notice_period"))return{tag:"notice_period_mismatch",text:"Notice Period Mismatch",icon:"CloseCircleOutlined",color:"#a42137",antdColor:"error"};const se=countPendingSteps(oe,ie);return se>0&&checkAllOtherRequirementsMet(ne,"skills")?{tag:"steps_to_apply",text:`${se} ${se===1?"step":"steps"} pending`,icon:"RocketOutlined",color:"#2F54EB",antdColor:"geekblue",count:se}:{tag:ELIGIBILITY_TYPES.ineligible,text:"Ineligible",icon:"CloseCircleOutlined",color:"#a42137",antdColor:"error"}},formatExperience$1=(C,$)=>{if(C===0&&$===0)return"Fresher";const V=Math.floor(C/12),F=Math.floor($/12);return V===F?`${V}y Experience`:F===0?"Fresher":V===0?`${F}y Experience`:`${V}y - ${F}y Experience`},formatCtc=({minCtc:C,maxCtc:$,openForDiscussionCtc:V,isInternship:F,stipend:K,userCountry:J="IN"})=>{if(F)return K?`₹${K}/month`:"Unpaid Internship";const ee=J==="US"?"$":"₹",te=J==="US"?"K":"L";if(C===null||$===null||C===void 0||$===void 0)return`${ee} (Flexible)`;let ne=`${ee}${C}${te} - ${ee}${$}${te} CTC`;return C===$&&(ne=`${ee}${C}${te} CTC`),V?`${ne} (Negotiable)`:ne},formatNoticePeriod=C=>!C||C===0?"Immediate":`${C} days Notice Period`,formatDate=C=>{if(!C)return"";const $=new Date(C),V=String($.getDate()).padStart(2,"0"),F=String($.getMonth()+1).padStart(2,"0"),K=$.getFullYear();return`${V}/${F}/${K}`},formatLocation=C=>{if(!C)return null;const $=C.split(",").map(V=>V.trim()).filter(Boolean);return $.length===0?null:$.length===1?$[0]:`${$[0]} +${$.length-1} more`};function formatProdErrorMessage(C){return"Minified Redux error #"+C+"; visit https://redux.js.org/Errors?code="+C+" for the full message or use the non-minified dev environment for full errors. "}var randomString=function(){return Math.random().toString(36).substring(7).split("").join(".")},ActionTypes={INIT:"@@redux/INIT"+randomString(),REPLACE:"@@redux/REPLACE"+randomString(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+randomString()}};function isPlainObject(C){if(typeof C!="object"||C===null)return!1;for(var $=C;Object.getPrototypeOf($)!==null;)$=Object.getPrototypeOf($);return Object.getPrototypeOf(C)===$}function miniKindOf(C){if(C===void 0)return"undefined";if(C===null)return"null";var $=typeof C;switch($){case"boolean":case"string":case"number":case"symbol":case"function":return $}if(Array.isArray(C))return"array";if(isDate(C))return"date";if(isError(C))return"error";var V=ctorName(C);switch(V){case"Symbol":case"Promise":case"WeakMap":case"WeakSet":case"Map":case"Set":return V}return $.slice(8,-1).toLowerCase().replace(/\s/g,"")}function ctorName(C){return typeof C.constructor=="function"?C.constructor.name:null}function isError(C){return C instanceof Error||typeof C.message=="string"&&C.constructor&&typeof C.constructor.stackTraceLimit=="number"}function isDate(C){return C instanceof Date?!0:typeof C.toDateString=="function"&&typeof C.getDate=="function"&&typeof C.setDate=="function"}function kindOf(C){var $=typeof C;return process.env.NODE_ENV!=="production"&&($=miniKindOf(C)),$}function warning$1(C){typeof console!="undefined"&&typeof console.error=="function"&&console.error(C);try{throw new Error(C)}catch($){}}function getUnexpectedStateShapeWarningMessage(C,$,V,F){var K=Object.keys($),J=V&&V.type===ActionTypes.INIT?"preloadedState argument passed to createStore":"previous state received by the reducer";if(K.length===0)return"Store does not have a valid reducer. Make sure the argument passed to combineReducers is an object whose values are reducers.";if(!isPlainObject(C))return"The "+J+' has unexpected type of "'+kindOf(C)+'". Expected argument to be an object with the following '+('keys: "'+K.join('", "')+'"');var ee=Object.keys(C).filter(function(te){return!$.hasOwnProperty(te)&&!F[te]});if(ee.forEach(function(te){F[te]=!0}),!(V&&V.type===ActionTypes.REPLACE)&&ee.length>0)return"Unexpected "+(ee.length>1?"keys":"key")+" "+('"'+ee.join('", "')+'" found in '+J+". ")+"Expected to find one of the known reducer keys instead: "+('"'+K.join('", "')+'". Unexpected keys will be ignored.')}function assertReducerShape(C){Object.keys(C).forEach(function($){var V=C[$],F=V(void 0,{type:ActionTypes.INIT});if(typeof F=="undefined")throw new Error(process.env.NODE_ENV==="production"?formatProdErrorMessage(12):'The slice reducer for key "'+$+`" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don't want to set a value for this reducer, you can use null instead of undefined.`);if(typeof V(void 0,{type:ActionTypes.PROBE_UNKNOWN_ACTION()})=="undefined")throw new Error(process.env.NODE_ENV==="production"?formatProdErrorMessage(13):'The slice reducer for key "'+$+'" returned undefined when probed with a random type. '+("Don't try to handle '"+ActionTypes.INIT+`' or other actions in "redux/*" `)+"namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.")})}function combineReducers(C){for(var $=Object.keys(C),V={},F=0;F<$.length;F++){var K=$[F];process.env.NODE_ENV!=="production"&&typeof C[K]=="undefined"&&warning$1('No reducer provided for key "'+K+'"'),typeof C[K]=="function"&&(V[K]=C[K])}var J=Object.keys(V),ee;process.env.NODE_ENV!=="production"&&(ee={});var te;try{assertReducerShape(V)}catch(ne){te=ne}return function(re,ae){if(re===void 0&&(re={}),te)throw te;if(process.env.NODE_ENV!=="production"){var oe=getUnexpectedStateShapeWarningMessage(re,V,ae,ee);oe&&warning$1(oe)}for(var ie=!1,se={},ce=0;ce<J.length;ce++){var ue=J[ce],le=V[ue],ve=re[ue],fe=le(ve,ae);if(typeof fe=="undefined"){var ge=ae&&ae.type;throw new Error(process.env.NODE_ENV==="production"?formatProdErrorMessage(14):"When called with an action of type "+(ge?'"'+String(ge)+'"':"(unknown type)")+', the slice reducer for key "'+ue+'" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.')}se[ue]=fe,ie=ie||fe!==ve}return ie=ie||J.length!==Object.keys(re).length,ie?se:re}}const initialState$5={processCounts:DEFAULT_PROCESS_COUNTS,userProfileData:null,filterModalOpen:!1,jobAlertModalOpen:!1},dashboardSlice=toolkit.createSlice({name:"dashboard",initialState:initialState$5,reducers:{setProcessCounts:(C,$)=>{C.processCounts=$.payload},setUserProfileData:(C,$)=>{C.userProfileData=$.payload},openFilterModal:C=>{C.filterModalOpen=!0},closeFilterModal:C=>{C.filterModalOpen=!1},openJobAlertModal:C=>{C.jobAlertModalOpen=!0},closeJobAlertModal:C=>{C.jobAlertModalOpen=!1}}}),{setProcessCounts,setUserProfileData,openFilterModal,closeFilterModal,openJobAlertModal,closeJobAlertModal}=dashboardSlice.actions,dashboardReducer=dashboardSlice.reducer,initialState$4={role_type:void 0,company_ids:[],job_title:[],job_category:[],seniority_level:[],company_categories:[],location:[],min_ctc:void 0,min_stipend:void 0,min_duration:void 0,notice_period:void 0,date_posted_on:void 0,mbe_skill_ids:{},experience_skill_ids:[],min_experience:void 0,max_experience:void 0},filterFormSlice=toolkit.createSlice({name:"filterForm",initialState:initialState$4,reducers:{updateFormField:(C,$)=>{const{field:V,value:F}=$.payload;C[V]=F},resetForm:()=>initialState$4,setFormData:(C,$)=>zn(zn({},C),$.payload),addRatingFilterInput:C=>{(!C.mbe_skill_ids||typeof C.mbe_skill_ids!="object")&&(C.mbe_skill_ids={});const $=`mbe_skill_${Date.now()}_${Math.random().toString(36).substr(2,9)}`;C.mbe_skill_ids[$]={subject:null,rating:null}},deleteRatingFilterInput:(C,$)=>{const{inputFieldKey:V}=$.payload;C.mbe_skill_ids&&C.mbe_skill_ids[V]&&delete C.mbe_skill_ids[V]},updateRatingFilterInput:(C,$)=>{const{inputFilterSubKey:V,value:F}=$.payload;(!C.mbe_skill_ids||typeof C.mbe_skill_ids!="object")&&(C.mbe_skill_ids={});const K=V.split("_").slice(-1)[0],J=V.replace(`_${K}`,"");C.mbe_skill_ids[J]||(C.mbe_skill_ids[J]={subject:null,rating:null}),K==="subject"?C.mbe_skill_ids[J].subject=F:K==="rating"&&(C.mbe_skill_ids[J].rating=F)}}}),{updateFormField,resetForm,setFormData,addRatingFilterInput,deleteRatingFilterInput,updateRatingFilterInput}=filterFormSlice.actions,filterFormReducer=filterFormSlice.reducer,company_categories=[{value:5,label:"large_enterprise"},{value:6,label:"large_startups"},{value:7,label:"early_startups"}],job_categories=[{value:56529,label:"Backend Engineer"},{value:56530,label:"FullStack Engineer"},{value:56531,label:"Frontend Engineer"},{value:56569,label:"Android Engineer"},{value:56570,label:"iOS Engineer"},{value:179985,label:"Testing Engineer"},{value:189726,label:"Data Scientist"},{value:189727,label:"Data Analyst"},{value:189728,label:"Business Analyst"},{value:202365,label:"Data Engineer"},{value:221192,label:"DevOps Engineer"}],job_locations=[{value:"Bangalore",label:"Bangalore"},{value:"Pune",label:"Pune"},{value:"Hyderabad",label:"Hyderabad"},{value:"Gurgaon",label:"Gurgaon"},{value:"Noida",label:"Noida"},{value:"Chennai",label:"Chennai"},{value:"Delhi",label:"Delhi"},{value:"Chandigarh",label:"Chandigarh"},{value:"Kolkata",label:"Kolkata"},{value:"Mumbai",label:"Mumbai"},{value:"Jaipur",label:"Jaipur"},{value:"Vadodara",label:"Vadodara"},{value:"Nagpur",label:"Nagpur"},{value:"Ahmedabad",label:"Ahmedabad"},{value:"Kochi",label:"Kochi"},{value:"Mysore",label:"Mysore"},{value:"Coimbatore",label:"Coimbatore"},{value:"Bangkok",label:"Bangkok"},{value:"Mauritius",label:"Mauritius"},{value:"Udaipur",label:"Udaipur"},{value:"Cochin",label:"Cochin"},{value:"Remote",label:"Remote"},{value:"Hubballi",label:"Hubballi"},{value:"Goa",label:"Goa"},{value:"Trivandrum",label:"Trivandrum"},{value:"Indore",label:"Indore"},{value:"London",label:"London"},{value:"Bhubaneswar",label:"Bhubaneswar"},{value:"Menlo Park",label:"Menlo Park"},{value:"Dehradun",label:"Dehradun"},{value:"Hosur",label:"Hosur"},{value:"Delaware",label:"Delaware"},{value:"Amsterdam",label:"Amsterdam"},{value:"California",label:"California"},{value:"Mohali",label:"Mohali"},{value:"New Jersey",label:"New Jersey"},{value:"Arizona",label:"Arizona"},{value:"North Carolina",label:"North Carolina"},{value:"Agra",label:"Agra"},{value:"Saudi Arabia",label:"Saudi Arabia"},{value:"Pondicherry",label:"Pondicherry"},{value:"Vizag",label:"Vizag"}],role_types=[{value:198018,label:"internship"},{value:198019,label:"full_time"}],seniority_levels=[{value:202948,label:"Fresher"},{value:202949,label:"Entry - Mid"},{value:202950,label:"Mid - Senior"},{value:202951,label:"Senior"}],proficiency_mapping={"Must to Have":0,"Good to Have":1,"Bar Raiser":2,"Must to Have (Eligibility)":3},onboarding_modal_clicked=!0,pipeline_stages=[{value:"draft",label:"Draft"},{value:"in_review",label:"In Review"},{value:"resume_sent",label:"Resume Sent"},{value:"resume_shortlisted",label:"Resume Shortlisted"},{value:"interviewing",label:"Interviewing"},{value:"to_be_offered",label:"To Be Offered"},{value:"rejected",label:"Rejected"},{value:"offer_received",label:"Offer Received"},{value:"offer_withdrawn",label:"Offer Withdrawn"},{value:"offer_accepted",label:"Offer Accepted"},{value:"offer_declined",label:"Offer Declined"},{value:"on_hold",label:"On Hold"},{value:"joined",label:"Joined"},{value:"saved",label:"Saved"},{value:"not_interested",label:"Not Interested"},{value:"application_withdrawn",label:"Application Withdrawn"},{value:"application_archived",label:"Application Archived"}],merit_based_skills=[{id:37223,title:"Databases and SQL",mentee_module_id:null},{id:37183,title:"Data Structures & Algorithms",mentee_module_id:null},{id:37184,title:"Python",mentee_module_id:null},{id:37185,title:"Java",mentee_module_id:null},{id:37186,title:"Javascript",mentee_module_id:null},{id:37187,title:"Low Level Design",mentee_module_id:3053255},{id:37188,title:"High Level Design",mentee_module_id:3053256},{id:37189,title:"Frontend (React)",mentee_module_id:3053258},{id:37190,title:"Backend (Java Spring/Springboot)",mentee_module_id:3053258},{id:37216,title:"Django",mentee_module_id:3053258},{id:37244,title:"Angular",mentee_module_id:3053258},{id:37191,title:"Python Libraries",mentee_module_id:null},{id:37192,title:"SQL",mentee_module_id:null},{id:37193,title:"Data Analytics - Tools",mentee_module_id:null},{id:37194,title:"EDA Fundamentals",mentee_module_id:null},{id:37195,title:"Supervised Learning",mentee_module_id:null},{id:37196,title:"Unsupervised Learning",mentee_module_id:null},{id:37197,title:"Computer Vision",mentee_module_id:7522793},{id:37198,title:"Natural Language Processing",mentee_module_id:7522794},{id:37194,title:"EDA Fundamentals",mentee_module_id:null},{id:37195,title:"Supervised Learning",mentee_module_id:null},{id:37196,title:"Unsupervised Learning",mentee_module_id:null},{id:37201,title:"DA tools",mentee_module_id:null},{id:37202,title:"Intermediate DSA",mentee_module_id:null},{id:37245,title:"DevOps - Data Structures & Algorithms",mentee_module_id:null},{id:37245,title:"DevOps - Data Structures & Algorithms",mentee_module_id:null},{id:37183,title:"Data Structures & Algorithms",mentee_module_id:null},{id:37223,title:"Databases and SQL",mentee_module_id:null},{id:37185,title:"Java",mentee_module_id:7532826},{id:37186,title:"Javascript",mentee_module_id:7532826},{id:37187,title:"Low Level Design",mentee_module_id:7532828},{id:37189,title:"Frontend (React)",mentee_module_id:7532828},{id:37244,title:"Angular",mentee_module_id:7532828},{id:37188,title:"High Level Design",mentee_module_id:null},{id:37192,title:"SQL",mentee_module_id:null},{id:37191,title:"Python Libraries",mentee_module_id:null},{id:37194,title:"EDA Fundamentals",mentee_module_id:null},{id:37195,title:"Supervised Learning",mentee_module_id:null},{id:37196,title:"Unsupervised Learning",mentee_module_id:7522864},{id:37184,title:"Python",mentee_module_id:5696347},{id:37185,title:"Java",mentee_module_id:5696347},{id:37186,title:"Javascript",mentee_module_id:5696347},{id:37184,title:"Python",mentee_module_id:null},{id:37185,title:"Java",mentee_module_id:null},{id:37186,title:"Javascript",mentee_module_id:null},{id:37187,title:"Low Level Design",mentee_module_id:null},{id:37186,title:"Javascript",mentee_module_id:5910715},{id:37189,title:"Frontend (React)",mentee_module_id:null},{id:37244,title:"Angular",mentee_module_id:null},{id:37224,title:"MERN",mentee_module_id:null},{id:37190,title:"Backend (Java Spring/Springboot)",mentee_module_id:null},{id:37216,title:"Django",mentee_module_id:null},{id:37224,title:"MERN",mentee_module_id:null},{id:37190,title:"Backend (Java Spring/Springboot)",mentee_module_id:null},{id:37216,title:"Django",mentee_module_id:null},{id:37224,title:"MERN",mentee_module_id:null},{id:37190,title:"Backend (Java Spring/Springboot)",mentee_module_id:null},{id:37216,title:"Django",mentee_module_id:null},{id:37224,title:"MERN",mentee_module_id:null},{id:37226,title:"Data Structures & Algorithms Advanced",mentee_module_id:7522524},{id:37190,title:"Backend (Java Spring/Springboot)",mentee_module_id:null},{id:37216,title:"Django",mentee_module_id:null},{id:37224,title:"MERN",mentee_module_id:null},{id:37184,title:"Python",mentee_module_id:null},{id:37185,title:"Java",mentee_module_id:null},{id:37186,title:"Javascript",mentee_module_id:null},{id:37187,title:"Low Level Design",mentee_module_id:null},{id:37188,title:"High Level Design",mentee_module_id:null},{id:37247,title:"Shell Scripting and CS Fundamentals",mentee_module_id:7522518},{id:37194,title:"EDA Fundamentals",mentee_module_id:null}],v1_onboarding_enabled=!0,v0_onboarding_completed=!0,initial_user_application_stage=4,is_discussion_hub_enabled=!1,resume_issues={total_issues:2},default_resume_details={id:17407,user_id:674153,name:"AswanthDefaultResume",default:!0,status:"active",meta:{social_profiles:{codechef:"",codeforces:"",geeksforgeeks:"",github:"",hackerearth:"",hackerrank:"",leetcode:"",portfolio:""},job_title:"Fullstack developer 1",interactions:{relevancy_alert_modal_displayed:!0}},modified_at:"2025-05-11T15:27:35.000Z",created_at:"2024-02-13T19:39:17.000Z",updated_at:"2025-05-11T15:27:35.000Z"},resume_builder_skills={language:[1167,1150,1148,1136,1128,1276,1270,1218,1217,1215,1213,1211,1210,1209],framework:[1206,1203,1200,1198,1197,1196,1195,1158,1157,1156,1145,1133],tools:[2431,2430,2435,1234,1231,1229,1228,1176,1175,2432,46262,58475]},skill_data=[{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1128,subtopic:"Javascript",eligible_topic_id:7591,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1133,subtopic:"Angular",eligible_topic_id:7580,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1136,subtopic:"CSS",eligible_topic_id:7586,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1145,subtopic:"Flutter",eligible_topic_id:8760,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1148,subtopic:"HTML",eligible_topic_id:7589,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1150,subtopic:"JavaScript",eligible_topic_id:7591,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1156,subtopic:"React",eligible_topic_id:7597,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1157,subtopic:"React Native",eligible_topic_id:8763,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1158,subtopic:"Redux",eligible_topic_id:8764,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1167,subtopic:"TypeScript",eligible_topic_id:8768,eligible_class:"Topic"},{id:null,topic:"Mobile Development",topic_id:401,subtopic_id:1175,subtopic:"Android Development",eligible_topic_id:8753,eligible_class:"Topic"},{id:null,topic:"Mobile Development",topic_id:401,subtopic_id:1176,subtopic:"iOS Development",eligible_topic_id:8770,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1195,subtopic:".NET",eligible_topic_id:7579,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1196,subtopic:"Django",eligible_topic_id:7587,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1197,subtopic:"Express.js",eligible_topic_id:8758,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1198,subtopic:"Flask",eligible_topic_id:8759,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1200,subtopic:"Node.js",eligible_topic_id:7594,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1203,subtopic:"Ruby on Rails",eligible_topic_id:null,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1206,subtopic:"Spring Boot",eligible_topic_id:7600,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1209,subtopic:"C",eligible_topic_id:8755,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1210,subtopic:"Go",eligible_topic_id:8761,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1211,subtopic:"Java",eligible_topic_id:7590,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1213,subtopic:"Python",eligible_topic_id:7596,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1215,subtopic:"Ruby",eligible_topic_id:null,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1217,subtopic:"Scala",eligible_topic_id:8765,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1218,subtopic:"Swift",eligible_topic_id:8766,eligible_class:"Topic"},{id:null,topic:"DBMS",topic_id:406,subtopic_id:1228,subtopic:"MongoDB",eligible_topic_id:8769,eligible_class:"Topic"},{id:null,topic:"DBMS",topic_id:406,subtopic_id:1229,subtopic:"MySQL",eligible_topic_id:7601,eligible_class:"Topic"},{id:null,topic:"DBMS",topic_id:406,subtopic_id:1231,subtopic:"PostgreSQL",eligible_topic_id:7601,eligible_class:"Topic"},{id:null,topic:"DBMS",topic_id:406,subtopic_id:1234,subtopic:"SQL Server",eligible_topic_id:7601,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1270,subtopic:"C#",eligible_topic_id:7584,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1276,subtopic:"C++",eligible_topic_id:7585,eligible_class:"Topic"},{id:null,topic:"Cloud Computing",topic_id:564,subtopic_id:2430,subtopic:"AWS",eligible_topic_id:7581,eligible_class:"Topic"},{id:null,topic:"CloudComputing",topic_id:564,subtopic_id:2431,subtopic:"Azure",eligible_topic_id:8754,eligible_class:"Topic"},{id:null,topic:"System Design",topic_id:563,subtopic_id:2432,subtopic:"Microservices",eligible_topic_id:7593,eligible_class:"Topic"},{id:null,topic:"DBMS",topic_id:406,subtopic_id:2435,subtopic:"SQL",eligible_topic_id:7601,eligible_class:"Topic"},{id:null,topic:"Machine Learning",topic_id:405,subtopic_id:46262,subtopic:"Tableau",eligible_topic_id:7604,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:58475,subtopic:"Power BI",eligible_topic_id:null,eligible_class:"Topic"}],commonData={company_categories,job_categories,job_locations,role_types,seniority_levels,proficiency_mapping,onboarding_modal_clicked,pipeline_stages,merit_based_skills,v1_onboarding_enabled,v0_onboarding_completed,initial_user_application_stage,is_discussion_hub_enabled,resume_issues,default_resume_details,resume_builder_skills,skill_data},capitalize=C=>!C||typeof C!="string"?C:C.charAt(0).toUpperCase()+C.slice(1).toLowerCase(),formatExperience=(C,$)=>{const V=C!=null?C:0,F=$!=null?$:0,K=[];return V>0&&K.push(`${V} ${V===1?"yr":"yrs"}`),K.push(`${F} ${F===1?"month":"months"}`),`${K.join(" ")} Experience`},transformCompanyCategories=C=>!C||!Array.isArray(C)?C:C.map($=>gr(zn({},$),{label:capitalize($.label||"").replace(/_/g," ")})),transformRoleTypes=C=>!C||!Array.isArray(C)?C:C.map($=>gr(zn({},$),{label:toCase("titleCase",$.label||"")})),transformMetaData=C=>{if(!C||typeof C!="object")return C;const $=toCamelCaseObject(C);return $.companyCategories&&($.companyCategories=transformCompanyCategories($.companyCategories)),$.roleTypes&&($.roleTypes=transformRoleTypes($.roleTypes)),$},rawMetaData=window.__CAREERS_HUB__||commonData,transformedMetaData=transformMetaData(rawMetaData),initialState$3={meta:transformedMetaData},metaDataSlice=toolkit.createSlice({name:"metaData",initialState:initialState$3,reducers:{setMetaData:(C,$)=>{C.meta=transformMetaData($.payload)}}});metaDataSlice.actions;const metaDataReducer=metaDataSlice.reducer,initialState$2={alerts:[],loading:!1,error:null},alertSlice=toolkit.createSlice({name:"alerts",initialState:initialState$2,reducers:{setAlerts:(C,$)=>{C.alerts=$.payload},addAlert:(C,$)=>{C.alerts.push($.payload)},setLoading:(C,$)=>{C.loading=$.payload},setError:(C,$)=>{C.error=$.payload}}}),{setAlerts,addAlert,setLoading,setError}=alertSlice.actions,alertReducer=alertSlice.reducer,initialState$1={savedJobs:{}},savedJobsSlice=toolkit.createSlice({name:"savedJobs",initialState:initialState$1,reducers:{setJobSavedStatus:(C,$)=>{const{jobId:V,status:F,lastUpdatedAt:K}=$.payload;F==="Saved"?C.savedJobs[V]={status:"Saved",lastUpdatedAt:K||new Date().toISOString()}:delete C.savedJobs[V]},initializeSavedJobs:(C,$)=>{($.payload||[]).forEach(F=>{F.applicationStatus==="Saved"&&(C.savedJobs[F.id]={status:"Saved",lastUpdatedAt:F.applicationLastUpdatedAt||new Date().toISOString()})})},clearSavedJobs:C=>{C.savedJobs={}}}}),{setJobSavedStatus,initializeSavedJobs,clearSavedJobs}=savedJobsSlice.actions,savedJobsReducer=savedJobsSlice.reducer;function isNullOrUndefined(C){return C==null}function getBlockerPointsChecklist(C){const{overall_resume_score:$,section_feedback:V,section_scores:F}=(C==null?void 0:C.resume_evaluation_result)||{};if(isNullOrUndefined($)||isNullOrUndefined(V)||$>2)return[];const K=[];return Object.keys(V).forEach(J=>{F[J]<2&&K.push(V[J][0])}),K}const initialState={fitmentScore:{},activeResumeId:null,activeResumeName:null,activeJobProfileId:null,activeResumeChecklist:[],isChecklistOpen:!1,resumeReviewData:{}},resumeFitmentSlice=toolkit.createSlice({name:"resumeFitment",initialState,reducers:{setFitmentScore:(C,$)=>{var ee,te,ne,re;const V=(ee=$.payload)==null?void 0:ee.job_profile_id,F=(te=$.payload)==null?void 0:te.user_resume_id,K=(ne=$.payload)==null?void 0:ne.score,J=(re=$.payload)==null?void 0:re.remarks;V&&F&&!isNullOrUndefined(K)&&(C.fitmentScore[V]=gr(zn({},C.fitmentScore[V]),{[F]:{score:K,remarks:J}}))},setResumeReviewData:(C,$)=>{const V=$.payload.resume_id;V&&(C.resumeReviewData[V]=$.payload)},setActiveResume:(C,$)=>{var J,ee,te,ne,re,ae;const V=(J=$.payload)==null?void 0:J.jobProfileId,F=(ee=$.payload)==null?void 0:ee.resumeId,K=(te=$.payload)==null?void 0:te.resumeName;if(V&&F){C.activeResumeId=F,C.activeJobProfileId=V,C.activeResumeName=K;const oe=(ae=(re=(ne=C.fitmentScore)==null?void 0:ne[V])==null?void 0:re[F])==null?void 0:ae.remarks;C.activeResumeChecklist=[...oe?[oe]:[],...getBlockerPointsChecklist(C.resumeReviewData[F])]}},setChecklistOpen:(C,$)=>{var V,F,K;(V=$.payload)!=null&&V.syncWithBlockerPoints?C.isChecklistOpen=((F=C.activeResumeChecklist)==null?void 0:F.length)>0:C.isChecklistOpen=(K=$.payload)==null?void 0:K.isOpen}}}),{setFitmentScore,setActiveResume,setChecklistOpen,setResumeReviewData}=resumeFitmentSlice.actions,resumeFitmentReducer=resumeFitmentSlice.reducer,rootReducer=combineReducers({[careerHubApi.reducerPath]:careerHubApi.reducer,layout:layoutReducer,filter:filterReducer,dashboard:dashboardReducer,filterForm:filterFormReducer,metaData:metaDataReducer,filterOptions:filterOptionsReducer,alerts:alertReducer,savedJobs:savedJobsReducer,resumeFitment:resumeFitmentReducer}),HelloWorld=()=>React.createElement("div",{style:{padding:"20px",textAlign:"center"}},React.createElement("h1",null,"Hello World - Career Hub"),React.createElement("p",null,"This is a dummy component.")),tagsSection="_tagsSection_gf6im_1",tag$1="_tag_gf6im_1",activeTag="_activeTag_gf6im_22",icon$1="_icon_gf6im_29",styles$J={tagsSection,tag:tag$1,activeTag,icon:icon$1};function TagsSection({analytics:C}){const{currentTab:$,updateTabAndJobId:V}=useJobQueryParams({syncToURL:!0,syncFromURL:!1}),F=$||TAG_TO_TAB_MAPPING.relevant,K=reactRedux.useSelector(ne=>{var re,ae;return((ae=(re=ne.scalantCareerHub)==null?void 0:re.dashboard)==null?void 0:ae.processCounts)||{}}),J=ne=>{var ae;C==null||C.click(`Tags Section - ${((ae=JOB_FILTER_TAGS[ne])==null?void 0:ae.label)||ne}`,PRODUCT_NAME);const re=TAG_TO_TAB_MAPPING[ne];re&&V(re)},ee=ne=>{const re=TAG_TO_TAB_MAPPING[ne];return F===re},te=ne=>{const re=COUNT_TO_TAB_MAPPING[ne];return K[re]||0};return React.createElement("div",{className:styles$J.tagsSection},Object.keys(JOB_FILTER_TAGS).map(ne=>React.createElement(Tag$1,{className:classNames(styles$J.tag,{[styles$J.activeTag]:ee(ne)}),key:ne,onClick:()=>J(ne)},React.createElement(JOB_FILTER_TAGS[ne].icon,{className:styles$J.icon}),JOB_FILTER_TAGS[ne].label," ",React.createElement("span",{className:styles$J.count},"(",te(ne),")"))))}const jobAlert="_jobAlert_10a9x_1",icon="_icon_10a9x_10",styles$I={jobAlert,icon};function JobAlert({analytics:C}){const $=reactRedux.useDispatch(),V=()=>{C==null||C.click("Job Alert - Open Modal",PRODUCT_NAME),$(openJobAlertModal())};return React.createElement("div",{className:styles$I.jobAlert,onClick:V},React.createElement(BellFilled$1,{className:styles$I.icon}),"Job Alerts")}const styles$H={};function Sorting({analytics:C}){const $=reactRedux.useDispatch(),V=reactRedux.useSelector(te=>{var ne,re;return((re=(ne=te.scalantCareerHub)==null?void 0:ne.filter)==null?void 0:re.sortings)||[]}),F=React.useMemo(()=>getCurrentSortingValue(V),[V]),K=te=>{const ne=SORTING_OPTIONS[te];ne&&(C==null||C.click("Sorting - Change",PRODUCT_NAME,{sortingValue:te,sortingLabel:ne.label}),$(setSortings([ne.mapping])))},J=Object.values(SORTING_OPTIONS).map(te=>({value:te.value,label:te.value===F?`Sorted By: ${te.label}`:te.label})),ee=te=>{const ne=SORTING_OPTIONS[te.value];return ne?ne.label:te.label};return React.createElement(Select$1,{className:styles$H.sorting,value:F,onChange:K,suffixIcon:React.createElement(DownOutlined$1,null),options:J,optionRender:ee})}const styles$G={};function Filter({analytics:C}){const $=reactRedux.useDispatch(),V=()=>{C==null||C.click("Filter - Open Drawer",PRODUCT_NAME),$(openFilterModal())};return React.createElement(Button$2,{type:"primary",className:styles$G.filter,onClick:V},"Filters ",React.createElement(DownOutlined$1,null))}const search="_search_hhvxj_1",iconContainer$2="_iconContainer_hhvxj_7",input="_input_hhvxj_20",slideIn="_slideIn_hhvxj_1",styles$F={search,iconContainer:iconContainer$2,input,slideIn};function Search({analytics:C}){const $=reactRedux.useDispatch(),V=reactRedux.useSelector(ie=>{var se,ce,ue;return((ue=(ce=(se=ie.scalantCareerHub)==null?void 0:se.filter)==null?void 0:ce.filters)==null?void 0:ue.keyword)||""}),[F,K]=React.useState(!1),[J,ee]=React.useState(V),te=React.useRef(null),ne=React.useRef(null);React.useEffect(()=>{ee(V)},[V]),React.useEffect(()=>{F&&te.current&&te.current.focus()},[F]);const re=()=>{C==null||C.click("Search - Icon Click",PRODUCT_NAME),K(!0)},ae=ie=>{const se=ie.target.value;ee(se),ne.current&&clearTimeout(ne.current),ne.current=setTimeout(()=>{$(setKeyword(se))},300)},oe=()=>{J.trim()||K(!1)};return React.useEffect(()=>()=>{ne.current&&clearTimeout(ne.current)},[]),React.createElement("div",{className:styles$F.search},F||J?React.createElement(Input$1,{ref:te,className:styles$F.input,placeholder:"Search for job or Company Name",value:J,onChange:ae,onBlur:oe,suffix:React.createElement(SearchOutlined$1,null)}):React.createElement("div",{className:styles$F.iconContainer,onClick:re},React.createElement(SearchOutlined$1,null)))}const actions$1="_actions_nxp1u_1",styles$E={actions:actions$1};function Actions$1({analytics:C}){return React.createElement("div",{className:styles$E.actions},React.createElement(JobAlert,{analytics:C}),React.createElement(Sorting,{analytics:C}),React.createElement(Filter,{analytics:C}),React.createElement(Search,{analytics:C}))}Actions$1.propTypes={analytics:PropTypes.object};const jobsHeaderContainer="_jobsHeaderContainer_1un8f_1",styles$D={jobsHeaderContainer};function JobsHeader({analytics:C,className:$}){return React.createElement("div",{className:classNames($,styles$D.jobsHeaderContainer)},React.createElement(TagsSection,{analytics:C}),React.createElement(Actions$1,{analytics:C}))}JobsHeader.propTypes={analytics:PropTypes.object,className:PropTypes.string},JobsHeader.defaultProps={className:""};const dashboardService=careerHubApi.injectEndpoints({endpoints:C=>({fetchProcessCounts:C.query({query:()=>({url:"/job-tracker/fetch-process-counts/",method:"POST"}),transformResponse:$=>$.process_counts||{},providesTags:["ProcessCounts"]}),updateJobStatus:C.mutation({query:$=>({url:"/academy/mentee/jobs-mapping/update-status",method:"POST",body:$}),transformResponse:$=>$})})}),{useUpdateJobStatusMutation}=dashboardService,profileName="_profileName_1n202_1",profileDetails="_profileDetails_1n202_5",profileDetailsItems="_profileDetailsItems_1n202_13",preferencesTitle="_preferencesTitle_1n202_18",preferencesDivider="_preferencesDivider_1n202_22",preferencesContent="_preferencesContent_1n202_27",preferenceLabel="_preferenceLabel_1n202_31",preferenceValue="_preferenceValue_1n202_37",preferenceTag="_preferenceTag_1n202_42",jobIntentContainer="_jobIntentContainer_1n202_51",notifyMeContainer="_notifyMeContainer_1n202_59",preferencesContainer="_preferencesContainer_1n202_63",styles$C={profileName,profileDetails,profileDetailsItems,preferencesTitle,preferencesDivider,preferencesContent,preferenceLabel,preferenceValue,preferenceTag,jobIntentContainer,notifyMeContainer,preferencesContainer},resumeService=careerHubApi.injectEndpoints({endpoints:C=>({getResumesEligibility:C.query({query:({jobProfileId:$})=>({url:"/api/v3/user-resumes/eligibility",params:{job_profile_id:$}})}),getResumeLink:C.query({query:({resumeId:$})=>({url:`/api/v3/user-resumes/${$}/download`,method:"GET"})}),updateResumeDetails:C.mutation({query:({resumeId:$,payload:V})=>({url:`/api/v3/user-resumes/${$}/`,method:"PUT",body:V})})})}),{useGetResumesEligibilityQuery,useGetResumeLinkQuery,useUpdateResumeDetailsMutation}=resumeService,useJobNotification=()=>{var te,ne,re;const C=reactRedux.useSelector(ae=>ae.scalantCareerHub.dashboard.userProfileData),[$]=useUpdateResumeDetailsMutation(),[V,F]=React.useState((ne=(te=C==null?void 0:C.resumeDetails)==null?void 0:te.relevancyAlert)!=null?ne:!1),[K,J]=React.useState(!1);return React.useEffect(()=>{var ae;((ae=C==null?void 0:C.resumeDetails)==null?void 0:ae.relevancyAlert)!==void 0&&F(C.resumeDetails.relevancyAlert)},[(re=C==null?void 0:C.resumeDetails)==null?void 0:re.relevancyAlert]),{jobNotificationsEnabled:V,isUpdatingNotification:K,handleNotificationToggle:ae=>tr(this,null,function*(){var oe,ie,se;try{J(!0);const ce={relevancy_alert:ae,form_stage:"preferences_details_v1_form"};ae&&(ce.experience=(C==null?void 0:C.experienceMonths)||(C==null?void 0:C.experienceInMonths),ce.preferred_location=(oe=C==null?void 0:C.userCompanyProfile)==null?void 0:oe.preferredLocation,ce.expected_ctc=(ie=C==null?void 0:C.userCompanyProfile)==null?void 0:ie.expectedCtc);const ue=(se=C==null?void 0:C.resumeDetails)==null?void 0:se.id;ue&&(yield $({resumeId:ue,payload:ce}).unwrap(),F(ae))}catch(ce){console.error("Failed to update notification preference:",ce)}finally{J(!1)}})}},parsePreferredLocations=C=>!C||typeof C!="string"?[]:C.toLowerCase()==="anywhere_in_india"?["Anywhere In India"]:C.split("/").map($=>$.trim()).filter($=>$.length>0).map($=>toTitleCase($)),parsePreferredJobRoles=C=>!C||typeof C!="string"?[]:C.split("/").map($=>$.trim()).filter($=>$.length>0);function ProfilePreferences(){var te,ne,re,ae,oe,ie,se,ce,ue,le,ve;const C=reactRedux.useSelector(fe=>fe.scalantCareerHub.dashboard.userProfileData),[$]=useUpdateResumeDetailsMutation(),[V,F]=React.useState(()=>{var ge;return(((ge=C==null?void 0:C.userCompanyProfile)==null?void 0:ge.preferredLocation)||"").split("/").map(pe=>pe.trim()).includes("Remote")}),[K,J]=React.useState(!1);React.useEffect(()=>{var pe;const ge=(((pe=C==null?void 0:C.userCompanyProfile)==null?void 0:pe.preferredLocation)||"").split("/").map(de=>de.trim()).includes("Remote");F(ge)},[(te=C==null?void 0:C.userCompanyProfile)==null?void 0:te.preferredLocation]);const ee=fe=>tr(this,null,function*(){var pe,de;const ge=fe.target.value==="yes";try{J(!0);let ye=(((pe=C==null?void 0:C.userCompanyProfile)==null?void 0:pe.preferredLocation)||"").split("/").map(Se=>Se.trim()).filter(Se=>Se.length>0);ge?ye.includes("Remote")||ye.push("Remote"):ye=ye.filter(Se=>Se!=="Remote");const he={form_stage:"preferences_details_v1_form",preferred_location:ye.join("/")},be=(de=C==null?void 0:C.resumeDetails)==null?void 0:de.id;be&&(yield $({resumeId:be,payload:he}).unwrap(),F(ge))}catch(me){console.error("Failed to update remote preference:",me)}finally{J(!1)}});return React.createElement(Flex$1,{vertical:!0,gap:16,className:styles$C.preferencesContent},React.createElement(Flex$1,{vertical:!0,gap:.4},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Location"),React.createElement(Flex$1,{gap:.4,wrap:!0},V&&React.createElement(Tag$1,{bordered:!1,className:styles$C.preferenceTag},"Remote"),parsePreferredLocations((ne=C==null?void 0:C.userCompanyProfile)==null?void 0:ne.preferredLocation).map((fe,ge)=>React.createElement(Tag$1,{key:ge,bordered:!1,className:styles$C.preferenceTag},fe)))),React.createElement(Flex$1,{vertical:!0,gap:.4},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Remote"),React.createElement(Radio$1.Group,{value:V?"yes":"no",onChange:ee,disabled:K},React.createElement(Radio$1,{value:"yes"},"Yes"),React.createElement(Radio$1,{value:"no"},"No"))),React.createElement(Flex$1,{vertical:!0,gap:.4},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Job roles"),React.createElement(Flex$1,{gap:.4,wrap:!0},parsePreferredJobRoles((re=C==null?void 0:C.userCompanyProfile)==null?void 0:re.preferredRole).map((fe,ge)=>React.createElement(Tag$1,{key:ge,className:styles$C.preferenceTag},fe)))),!isNullOrUndefined((ae=C==null?void 0:C.userCompanyProfile)==null?void 0:ae.currentCtc)&&React.createElement(Flex$1,{align:"center"},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Current CTC (LPA):"),React.createElement(Typography$1.Text,{className:styles$C.preferenceValue},(oe=C==null?void 0:C.userCompanyProfile)==null?void 0:oe.currentCtc)),!isNullOrUndefined((ie=C==null?void 0:C.userCompanyProfile)==null?void 0:ie.expectedCtc)&&React.createElement(Flex$1,{align:"center"},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Expected CTC (LPA):"),React.createElement(Typography$1.Text,{className:styles$C.preferenceValue},(se=C==null?void 0:C.userCompanyProfile)==null?void 0:se.expectedCtc)),((ce=C==null?void 0:C.userEducations)==null?void 0:ce.some(fe=>fe.graduationDate))&&React.createElement(Flex$1,{align:"center"},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Graduation year:"),React.createElement(Typography$1.Text,{className:styles$C.preferenceValue},new Date((ue=C.userEducations.find(fe=>fe.graduationDate))==null?void 0:ue.graduationDate).getFullYear())),React.createElement(Flex$1,{align:"center"},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Notice period (In days):"),React.createElement(Typography$1.Text,{className:styles$C.preferenceValue},(le=C==null?void 0:C.userCompanyProfile)==null?void 0:le.noticePeriod)),React.createElement(Flex$1,{align:"center"},((ve=C==null?void 0:C.userCompanyProfile)==null?void 0:ve.buyoutNotice)&&React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"*Buyout available")))}ProfilePreferences.propTypes={};const DISPLAY_LABEL_TO_STATUS={"Looking for a job":"active","Not looking for a job":"inactive","Need time to prepare":"need_time"},STATUS_TO_PLACEMENT_INTENT={active:"Interested",inactive:"Not Interested",need_time:"Need Time to Prepare"},PLACEMENT_INTENT_TO_DISPLAY_LABEL={Interested:"Looking for a job","Need Time to Prepare":"Need time to prepare","Not Interested":"Not looking for a job"},JOB_INTENT_OPTIONS=[{label:"Looking for a job",value:"Looking for a job"},{label:"Need time to prepare",value:"Need time to prepare"},{label:"Not looking for a job",value:"Not looking for a job"}];function ProfileDetails({analytics:C,className:$,onViewResume:V,onEditPreferences:F}){var le,ve,fe;const K=reactRedux.useSelector(ge=>ge.scalantCareerHub.dashboard.userProfileData),[J,{isLoading:ee}]=useUpdateJobStatusMutation(),[te,ne]=React.useState((K==null?void 0:K.placementIntent)||null),{jobNotificationsEnabled:re,isUpdatingNotification:ae,handleNotificationToggle:oe}=useJobNotification();React.useEffect(()=>{K!=null&&K.placementIntent&&ne(K.placementIntent)},[K==null?void 0:K.placementIntent]);const ie=()=>{C==null||C.click("Profile Details - View Resume",PRODUCT_NAME),V==null||V()},se=()=>{C==null||C.click("Profile Details - Edit Preferences",PRODUCT_NAME),F==null||F()},ce=ge=>tr(this,null,function*(){try{const pe=DISPLAY_LABEL_TO_STATUS[ge];pe&&(yield J({source:"careers_hub",status:pe}).unwrap(),ne(STATUS_TO_PLACEMENT_INTENT[pe]))}catch(pe){console.error("Failed to update job status:",pe)}}),ue=ge=>PLACEMENT_INTENT_TO_DISPLAY_LABEL[ge]||null;return React.createElement("div",{className:classNames(styles$C.profileDetails,$)},React.createElement(Flex$1,{align:"center",gap:8},React.createElement(Avatar$1,{shape:"square",size:48,src:K==null?void 0:K.avatar}),React.createElement(Flex$1,{justify:"center",vertical:!0,gap:4},React.createElement(Typography$1.Title,{level:5,className:styles$C.profileName},K==null?void 0:K.name),React.createElement(Typography$1.Text,{type:"secondary"},toTitleCase((le=K==null?void 0:K.mentee)==null?void 0:le.careersHubProduct)))),React.createElement(Flex$1,{vertical:!0,gap:8,className:styles$C.profileDetailsItems},React.createElement(Flex$1,{align:"center",gap:10},React.createElement(UserOutlined$1,null),React.createElement(Typography$1.Text,null,K==null?void 0:K.jobTitle)),React.createElement(Flex$1,{align:"center",gap:10},React.createElement(StarOutlined$1,null),React.createElement(Typography$1.Text,null,formatExperience((ve=K==null?void 0:K.experienceYears)!=null?ve:K==null?void 0:K.experienceInYears,(fe=K==null?void 0:K.experienceMonths)!=null?fe:K==null?void 0:K.experienceInMonths))),React.createElement(Flex$1,{align:"center",gap:10},React.createElement(FileTextTwoTone$1,null),React.createElement(Typography$1.Link,{onClick:ie},"View Resume")),React.createElement(Flex$1,{vertical:!0,className:styles$C.jobIntentContainer,gap:8},React.createElement(Typography$1.Text,{type:"secondary"},"Select your intent in Career's Hub"),React.createElement(Select$1,{placeholder:"Select your intent",value:ue(te),onChange:ce,disabled:ee,loading:ee,style:{width:"100%"},options:JOB_INTENT_OPTIONS,prefix:React.createElement(MonitorOutlined$1,null)})),React.createElement(Flex$1,{align:"center",gap:8,className:styles$C.notifyMeContainer},React.createElement(Typography$1.Text,{type:"secondary"},"Notify me:"),React.createElement(Switch$1,{checked:re,onChange:oe,loading:ae,size:"small"}),React.createElement(Typography$1.Text,null,re?"On":"Off"))),React.createElement(Flex$1,{vertical:!0,className:styles$C.preferencesContainer},React.createElement(Flex$1,{justify:"space-between"},React.createElement(Typography$1.Title,{level:5,className:styles$C.preferencesTitle},"Your Preferences"),React.createElement(EditTwoTone$1,{onClick:se})),React.createElement(Divider$1,{className:styles$C.preferencesDivider}),React.createElement(ProfilePreferences,null)))}ProfileDetails.propTypes={analytics:PropTypes.object,className:PropTypes.string,onViewResume:PropTypes.func,onEditPreferences:PropTypes.func},ProfileDetails.defaultProps={className:""};const jobPreviewApi=careerHubApi.injectEndpoints({endpoints:C=>({getJobPreview:C.query({query:$=>`/job-tracker/job_profile/${$}/`,providesTags:($,V,F)=>[{type:"JobPreview",id:F},{type:"JobPreview",id:"LIST"}],transformResponse:$=>{var ee,te,ne;const V=toCamelCaseObject($),F=((ee=V==null?void 0:V.data)==null?void 0:ee.attributes)||{},K=((ne=(te=V==null?void 0:V.included)==null?void 0:te.find(re=>re.type==="company"))==null?void 0:ne.attributes)||{},J=F.contestSkills||[];return{jobData:gr(zn({},F),{contestSkills:J,name:F.name||(K==null?void 0:K.name)||"Company"}),companyData:K,highlights:F.highlights,eligibilityCriteria:F.eligibilityCriteria}}})}),overrideExisting:!0}),{useGetJobPreviewQuery}=jobPreviewApi,JobPreviewContext=React.createContext(null),JobPreviewProvider=({analytics:C,country:$="IN",jobId:V,currentTab:F,defaultOpenedApplicationId:K,openMockInterviewModal:J=(ae,oe)=>{console.log("Method not implemented. We should get it from MIT"),console.log(ae,oe)},openResume:ee=()=>{console.log("Method not implemented. We should get it from MIT")},skip:te=!1,onCloseResumeBuilder:ne,children:re})=>{const{data:ae,isLoading:oe,error:ie,refetch:se}=useGetJobPreviewQuery(V,{skip:!V||te}),[ce,ue]=React.useState(),[le,ve]=React.useState(null),fe=pe=>{ue(pe),C==null||C.click("Job Preview - Active Tab Changed","Jobs Page V2",{tab:pe,jobId:V})};React.useEffect(()=>{K&&ve(K)},[K]);const ge={analytics:C,activeApplicationId:le,setActiveApplicationId:ve,activeTab:ce,setActiveTab:fe,country:$,jobId:V,data:ae,isLoading:oe,error:ie,refetch:se,openMockInterviewModal:J,openResume:ee,jobData:ae==null?void 0:ae.jobData,companyData:ae==null?void 0:ae.companyData,highlights:ae==null?void 0:ae.highlights,eligibilityCriteria:ae==null?void 0:ae.eligibilityCriteria,currentTab:F,onCloseResumeBuilder:ne};return React.createElement(JobPreviewContext.Provider,{value:ge},re)},useJobPreview=()=>{const C=React.useContext(JobPreviewContext);if(!C)throw new Error("useJobPreview must be used within a JobPreviewProvider");return C},ApplicationFormContext=React.createContext();function ApplicationFormProvider({children:C,onUploadFile:$=()=>(console.log("Method not implemented. We should get it from MIT"),""),onEditResume:V=()=>(console.log("Method not implemented. We should get it from MIT"),""),onAddResume:F=()=>(console.log("Method not implemented. We should get it from MIT"),""),stepName:K,jobProfileId:J,applicationId:ee,fitmentCheckEnabled:te}){const[ne,re]=React.useState(null),[ae,oe]=React.useState(K),[ie,se]=React.useState(null);return React.useEffect(()=>{K===APPLICATION_STATUS$1.RESUME_CHOICE_SELECT&&te?oe(APPLICATION_STATUS$1.RESUME_FITMENT_CHECK):oe(K)},[K,te]),React.createElement(ApplicationFormContext.Provider,{value:{onUploadFile:$,formInstance:ne,setFormInstance:re,stepName:ae,setStepName:oe,jobProfileId:J,applicationId:ee,selectedResume:ie,setSelectedResume:se,onEditResume:V,onAddResume:F,fitmentCheckEnabled:te}},C)}const useApplicationFormContext=()=>{const C=React.useContext(ApplicationFormContext);if(!C)throw new Error("useApplicationForm must be used within a ApplicationFormProvider");return C},descriptionContainer$1="_descriptionContainer_1ljyr_1",container$a="_container_1ljyr_6",recruiterAvatar="_recruiterAvatar_1ljyr_10",recruiterCardContent="_recruiterCardContent_1ljyr_14",recruiterName="_recruiterName_1ljyr_18",recruiterEmail="_recruiterEmail_1ljyr_24",offeredStepItem="_offeredStepItem_1ljyr_30",stepItem="_stepItem_1ljyr_41",extraInfoText="_extraInfoText_1ljyr_46",stageName="_stageName_1ljyr_52",pending="_pending_1ljyr_58",stageDate="_stageDate_1ljyr_62",stageComments="_stageComments_1ljyr_66",styles$B={descriptionContainer:descriptionContainer$1,container:container$a,recruiterAvatar,recruiterCardContent,recruiterName,recruiterEmail,offeredStepItem,stepItem,extraInfoText,stageName,pending,stageDate,stageComments},RecruiterCard=({recruiter:C})=>{const{name:$,avatar:V,email:F}=C||{},{analytics:K}=useJobPreview(),J=()=>{K==null||K.click("Recruiter - Send Email",PRODUCT_NAME,{recruiterName:$,recruiterEmail:F})};return React.createElement(Card$1,{size:"small"},React.createElement(Space$1,{direction:"horizontal"},React.createElement(Avatar$1,{size:48,src:V,className:styles$B.recruiterAvatar}),React.createElement(Space$1,{direction:"vertical",className:styles$B.recruiterCardContent},React.createElement(Typography$1.Text,{className:styles$B.recruiterName},$),React.createElement(Typography$1.Link,{className:styles$B.recruiterEmail,href:`mailto:${F}`,onClick:J},React.createElement(MailTwoTone$1,null),"Send Email To Recruiter"))))},Recruiters=()=>{const{jobData:C}=useJobPreview(),{recruiters:$}=C||{};return React.createElement(Space$1,{wrap:!0},$.map((V,F)=>React.createElement(RecruiterCard,{key:F,recruiter:V})))},monthFullNames=["January","February","March","April","May","June","July","August","September","October","November","December"],months=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function toStartOfDay(C){const $=new Date(C);return $.setMilliseconds(0),$.setSeconds(0),$.setMinutes(0),$.setHours(0),$}function getDaysDifference(C,$){const V=toStartOfDay(C),F=toStartOfDay($),K=V.getTime()-F.getTime();return parseInt(K/(24*60*60*1e3),10)}function getOrdinal(C){return C>=4&&C<=20||C>=24&&C<=30?"th":["st","nd","rd"][C%10-1]}function toDDMMM(C,{humanFriendly:$,fullMonth:V,withOrdinal:F}={}){const K=new Date(C);if($){const ne=getDaysDifference(Date.now(),K);if(ne===0)return"Today";if(ne===1)return"Yesterday"}const J=K.getDate(),ee=K.getMonth(),te=F?getOrdinal(J):"";return`${J}${te} ${V?monthFullNames[ee]:months[ee]}`}function toDDMMMYYYY(C,{fullMonth:$}={}){const V=new Date(C),F=V.getFullYear();return`${toDDMMM(V,{fullMonth:$})} ${F}`}const toDDMMYY=C=>{const $=new Date(C),V=String($.getMonth()+1).padStart(2,"0"),F=String($.getDate()).padStart(2,"0"),K=$.getFullYear().toString().slice(2);return[F,V,K].join("/")};function getDaysAgo(C){return C?getDaysDifference(new Date,new Date(C)):null}const OFFERED_STATUSES=["offer_received","offer_accepted","joined"],EXCLUDED_STATUSES=["to_be_offered",...OFFERED_STATUSES],APPLICATION_STAGE_STATUSES={ongoing:"ongoing",ongoing_test:"ongoing",rejected:"rejected",completed:"completed",pending:"pending",applicationArchived:"application_archived",applicationWithdrawn:"application_withdrawn"},getCurrentStep=(C,$,V)=>{const F=V.findIndex(J=>J.stageStatus===APPLICATION_STAGE_STATUSES.ongoing);return V.every(J=>J.stageStatus===APPLICATION_STAGE_STATUSES.completed)?V.length:C?$+1:F},TimelineSteps=()=>{const{jobData:C}=useJobPreview(),{applicationTimeline:$}=C||{},{timeline:V}=$||{},F=V.findIndex(ne=>ne.stageStatus===APPLICATION_STAGE_STATUSES.rejected),K=F!==-1,J=getCurrentStep(K,F,V);let ee=K?V.slice(0,F+1):V;ee=ee.filter(ne=>!EXCLUDED_STATUSES.includes(ne.status));const te=ee.map(ne=>{const{expectedUpdateDate:re,actualUpdateDate:ae,stageName:oe,stageComments:ie,stageStatus:se,status:ce}=ne,ue=OFFERED_STATUSES.includes(ce)&&se===APPLICATION_STAGE_STATUSES.completed,le=!!ae,ve=le&&getDaysDifference(ae,re)<0,fe=le&&getDaysDifference(ae,re)>0,ge=le&&getDaysDifference(ae,re)===0,pe=se===APPLICATION_STAGE_STATUSES.pending,de=se===APPLICATION_STAGE_STATUSES.rejected;let me=toDDMMMYYYY(re),ye=null;return re?ve?(me=toDDMMMYYYY(ae),ye=React.createElement(Typography$1.Text,{className:styles$B.extraInfoText},"Completed ",getDaysDifference(re,ae)," ","days early")):(fe||ge)&&(me=toDDMMMYYYY(ae)):me="Not Applicable",{title:React.createElement(Flex$1,{flex:1,justify:"space-between"},React.createElement(Typography$1.Text,{className:classNames(styles$B.stageName,{[styles$B.pending]:pe})},de&&!ae?"Unfortunately the round was not conducted":oe),React.createElement(Typography$1.Text,{className:classNames(styles$B.stageDate,{[styles$B.pending]:pe})},me)),description:React.createElement(Flex$1,{justify:"space-between"},React.createElement(Typography$1.Text,{className:styles$B.stageComments},ie),ye),status:de?"error":null,className:ue?styles$B.offeredStepItem:styles$B.stepItem}});return React.createElement(Steps$1,{current:J,items:te,direction:"vertical"})},container$9="_container_all86_1",styles$A={container:container$9},PlacementProcessDisclaimerBanner=()=>React.createElement(Flex$1,{className:styles$A.container},React.createElement(InfoCircleTwoTone$1,{twoToneColor:"#913ECE"}),React.createElement(Typography$1.Text,null,"Our placement team has access to the same application status and updates that are visible to you")),Timeline=()=>React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$B.descriptionContainer},React.createElement(Typography$1.Title,{level:3},"Your Application Status"),React.createElement(TimelineSteps,null)),RecruiterDetails=()=>{const{jobData:C}=useJobPreview(),{recruiters:$}=C||{};return!$||$.length===0?null:React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$B.descriptionContainer},React.createElement(Typography$1.Title,{level:3},"Recruiter Details"),React.createElement(Recruiters,null))},ApplicationTimelineTab=()=>React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$B.container},React.createElement(PlacementProcessDisclaimerBanner,null),React.createElement(Timeline,null),React.createElement(RecruiterDetails,null)),ICONS={bookmark:"https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/170/276/original/BookmarkSimple.svg?1765444708",exit:"https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/170/344/original/ExportOutlined.svg?1765460782",airplay:"https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/170/451/original/Vector.svg?1765523747",monitor:"https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/170/455/original/Vector_%281%29.svg?1765526679",likeBadge:"https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/171/516/original/Like-badge-_remix__1.svg?1766402587"},actionBanner="_actionBanner_13z26_1",actionBannerIcon="_actionBannerIcon_13z26_12",actionBannerContent="_actionBannerContent_13z26_17",actionBannerTitle="_actionBannerTitle_13z26_23",actionBannerDescription="_actionBannerDescription_13z26_29",actionBannerButton="_actionBannerButton_13z26_33",styles$z={actionBanner,actionBannerIcon,actionBannerContent,actionBannerTitle,actionBannerDescription,actionBannerButton},ActionBanner=({icon:C,title:$,description:V,buttonText:F,buttonIcon:K,className:J,onClick:ee,isLoading:te})=>React.createElement("div",{className:classNames(styles$z.actionBanner,J)},C,React.createElement("div",{className:styles$z.actionBannerContent},React.createElement("span",{className:styles$z.actionBannerTitle},$),React.createElement("span",{className:styles$z.actionBannerDescription},V)),React.createElement(Button$2,{icon:K,type:"primary",className:styles$z.actionBannerButton,onClick:ee,loading:te},F)),monitorBanner="_monitorBanner_gxbq6_1",monitorIcon="_monitorIcon_gxbq6_7",styles$y={monitorBanner,monitorIcon},INTERVIEW_QUESTIONS_URL="https://companion.scaler.com/interview-experiences",InterviewExperiencesBanner=()=>{var se;const C=reactRedux.useSelector(ce=>ce.scalantCareerHub.dashboard.userProfileData),$=(se=C==null?void 0:C.hasCompletedScreeningCall)!=null?se:!1,{analytics:V,jobData:F,companyData:K,currentTab:J}=useJobPreview(),{title:ee,applicationStatus:te,jobProfileStatus:ne}=F||{},re=te===APPLICATION_STATUS$1.WITHDRAWN,{name:ae}=K||{},oe=ne!==JOB_PROFILE_STATUS$1.active&&te===APPLICATION_STATUS_MAP.Draft,ie=React.useCallback(()=>{globalThis.open(`${INTERVIEW_QUESTIONS_URL}?company=${encodeURIComponent(ae)}&role=${encodeURIComponent(ee)}`,"_blank"),V==null||V.click("Interview Experiences - Explore",PRODUCT_NAME)},[V,ae,ee]);return!$||oe||J!==TAG_TO_TAB_MAPPING.applied||re?null:React.createElement(ActionBanner,{icon:React.createElement("img",{src:ICONS.monitor,className:styles$y.monitorIcon}),title:"We've got the resources you need for this role",description:"Explore Interview Experiences from Scaler learners who have attempted this before",buttonText:"Explore",buttonIcon:React.createElement(DoubleRightOutlined$1,null),className:styles$y.monitorBanner,onClick:ie})},jobDescriptionTab="_jobDescriptionTab_1g78n_1",contentContainer="_contentContainer_1g78n_5",descriptionTitle="_descriptionTitle_1g78n_10",descriptionText="_descriptionText_1g78n_19",stepText$1="_stepText_1g78n_19",descriptionLink="_descriptionLink_1g78n_33",list="_list_1g78n_37",steps="_steps_1g78n_41",stepTitle="_stepTitle_1g78n_48",descriptionContainer="_descriptionContainer_1g78n_59",container$8="_container_1g78n_64",indicatorContainer="_indicatorContainer_1g78n_69",indicatorLine="_indicatorLine_1g78n_74",indicatorDot="_indicatorDot_1g78n_82",extraIndicatorDot="_extraIndicatorDot_1g78n_82",styles$x={jobDescriptionTab,contentContainer,descriptionTitle,descriptionText,stepText:stepText$1,descriptionLink,list,steps,stepTitle,descriptionContainer,container:container$8,indicatorContainer,indicatorLine,indicatorDot,extraIndicatorDot},Company$1=()=>{const{companyData:C,analytics:$}=useJobPreview(),{name:V,employeeCount:F,companyVision:K,location:J,category:ee,companyWebsite:te}=C||{},ne=()=>{$==null||$.click("Company - Website Link",PRODUCT_NAME,{companyName:V})};return React.createElement(Space$1,{className:styles$x.contentContainer,direction:"vertical",size:"large"},React.createElement(Typography$1.Link,{className:styles$x.descriptionTitle,href:te,target:"_blank",onClick:ne},"About ",V),K&&React.createElement(Typography$1.Paragraph,{className:styles$x.descriptionText},React.createElement("div",{dangerouslySetInnerHTML:{__html:K}})),J&&React.createElement(Space$1,null,React.createElement(Typography$1.Text,{className:styles$x.descriptionTitle},"Office Location:"),React.createElement(Typography$1.Text,{className:styles$x.descriptionText},J)),ee&&React.createElement(Space$1,null,React.createElement(Typography$1.Text,{className:styles$x.descriptionTitle},"Company Category:"),React.createElement(Typography$1.Text,{className:styles$x.descriptionText},toTitleCase(ee))),F&&React.createElement(Space$1,null,React.createElement(Typography$1.Text,{className:styles$x.descriptionTitle},"No. of Employees:"),React.createElement(Typography$1.Text,{className:styles$x.descriptionText},F)))},collapsableContainer$1="_collapsableContainer_1s2ds_1",collapsed$1="_collapsed_1s2ds_5",viewMore$1="_viewMore_1s2ds_21",styles$w={collapsableContainer:collapsableContainer$1,collapsed:collapsed$1,viewMore:viewMore$1},CollapsableHTML=({analytics:C,html:$,contentClassName:V})=>{const[F,K]=React.useState(!1),J=()=>{C==null||C.click(`Collapsable HTML - ${F?"View Less":"View More"}`,PRODUCT_NAME),K(!F)};return React.createElement("div",{className:styles$w.collapsableContainer},React.createElement("div",{className:classNames(V,{[styles$w.collapsed]:!F}),dangerouslySetInnerHTML:{__html:$}}),React.createElement(Typography$1.Link,{className:styles$w.viewMore,onClick:J},F?"View Less":"View More"))},Description$1=()=>{const{jobData:C,analytics:$}=useJobPreview(),{jobDescText:V,jobDesc:F}=C||{},K=()=>{$==null||$.click("Job Description - Know More",PRODUCT_NAME)};return React.createElement(Space$1,{className:styles$x.contentContainer,direction:"vertical",size:"large"},React.createElement(Typography$1.Text,{className:styles$x.descriptionTitle},"About the Role"),V&&React.createElement(CollapsableHTML,{analytics:$,html:V,contentClassName:styles$x.descriptionText}),F&&React.createElement(Typography$1.Link,{className:styles$x.descriptionLink,href:F,target:"_blank",onClick:K},React.createElement(Space$1,null,React.createElement(LinkOutlined$1,null),"Know More")))},collapsableContainer="_collapsableContainer_1bjjt_1",collapsed="_collapsed_1bjjt_5",viewMore="_viewMore_1bjjt_21",styles$v={collapsableContainer,collapsed,viewMore},CollapsableContainer=({analytics:C,children:$,contentClassName:V})=>{const[F,K]=React.useState(!1),J=()=>{C==null||C.click(`Collapsable Container - ${F?"View Less":"View More"}`,PRODUCT_NAME),K(!F)};return React.createElement("div",{className:styles$v.collapsableContainer},React.createElement("div",{className:classNames(V,{[styles$v.collapsed]:!F})},$),React.createElement(Typography$1.Link,{className:styles$v.viewMore,onClick:J},F?"View Less":"View More"))},Benefits=()=>{const{jobData:C,country:$}=useJobPreview(),{benefits:V,visaSponsorship:F}=C||{},K=F==="yes";return!V&&!K||$!=="US"?null:React.createElement(Space$1,{className:styles$x.contentContainer,direction:"vertical",size:"large"},React.createElement(Typography$1.Text,{className:styles$x.descriptionTitle},"Benefits"),React.createElement(CollapsableContainer,{contentClassName:styles$x.descriptionText},React.createElement("ul",{className:styles$x.list},V==null?void 0:V.map(J=>React.createElement("li",{key:J},J)),K&&React.createElement("li",null,"Visa sponsorship available"))))},STEPS=[{title:"In Progress",description:"Once you apply, our team checks if it’s a right match"},{title:"Resume Forwarded",description:"We send your resume to the company"},{title:"Feedback Stage",description:"The company reviews and shares feedback"},{title:"Interview Process",description:"If selected, your interview rounds begin"}],Indicator=()=>React.createElement(Flex$1,{vertical:!0,className:styles$x.indicatorContainer},React.createElement("div",{className:styles$x.indicatorLine}),React.createElement(Flex$1,{flex:1,gap:12},STEPS.map((C,$)=>React.createElement(Flex$1,{key:$,flex:1},React.createElement("div",{className:styles$x.indicatorDot}))),React.createElement("div",{className:styles$x.extraIndicatorDot}))),HiringSteps=()=>{const C=STEPS.map($=>({title:React.createElement("span",{className:styles$x.stepTitle},$.title),description:React.createElement("span",{className:styles$x.stepText},$.description)}));return React.createElement(Flex$1,{vertical:!0,gap:12},React.createElement(Indicator,null),React.createElement(Flex$1,{className:styles$x.steps,gap:12},C.map(($,V)=>React.createElement(Flex$1,{vertical:!0,flex:1,key:V},$.title,$.description))))},BasicInfo$1=()=>React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$x.descriptionContainer},React.createElement(Typography$1.Title,{level:3},"Job Description"),React.createElement(Company$1,null),React.createElement(Description$1,null),React.createElement(Benefits,null)),PostApplicationProcess=()=>React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$x.descriptionContainer},React.createElement(Typography$1.Title,{level:3},"Post Application Process"),React.createElement(HiringSteps,null)),JobDescriptionTab=()=>React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$x.container},React.createElement(BasicInfo$1,null),React.createElement(PostApplicationProcess,null),React.createElement(PlacementProcessDisclaimerBanner,null),React.createElement(InterviewExperiencesBanner,null)),container$7="_container_tfeme_1",dot="_dot_tfeme_5",successDot="_successDot_tfeme_11",errorDot="_errorDot_tfeme_15",tableTitle="_tableTitle_tfeme_19",styles$u={container:container$7,dot,successDot,errorDot,tableTitle},STATUS_MAP$2={completed:"Completed",pending:"Pending",notRequired:"Not Required"},columns$2=[{title:"Skill Type",dataIndex:"skillType"},{title:"Status",dataIndex:"status"},{title:"Contests",dataIndex:"contests"},{title:"Mock Interview",dataIndex:"mockInterview"}],StatusColumnContent$2=({status:C})=>React.createElement(Tag$1,{color:C===STATUS_MAP$2.completed?"success":"warning"},C),ContestColumnContent=({contestDetails:C})=>{const{analytics:$}=useJobPreview();if(!C)return STATUS_MAP$2.notRequired;const{cleared:V,joinLink:F}=C,K=()=>{$==null||$.click("Certification - Attempt Contest",PRODUCT_NAME)};return V?React.createElement(Space$1,null,React.createElement("div",{className:classNames(styles$u.dot,styles$u.successDot)}),React.createElement(Typography$1.Text,null,"Success")):React.createElement(Typography$1.Link,{href:F,onClick:K,underline:!0},"Attempt Contest")},MockInterviewColumnContent=({mockInterviewDetails:C,skillId:$,skillName:V})=>{const{openMockInterviewModal:F,analytics:K}=useJobPreview();if(!C)return STATUS_MAP$2.notRequired;const{cleared:J}=C,ee=()=>{K==null||K.click("Certification - Schedule Interview",PRODUCT_NAME),F($,V)};return J?React.createElement(Space$1,null,React.createElement("div",{className:classNames(styles$u.dot,styles$u.successDot)}),React.createElement(Typography$1.Text,null,"Success")):React.createElement(Typography$1.Link,{onClick:ee,underline:!0},"Schedule Interview")},Certification=()=>{const{jobData:C}=useJobPreview(),{eligibilityCriteria:$}=C||{},{reasons:V}=$||{},F=V==null?void 0:V.find(J=>J.label==="skills");if(!F)return null;const K=Object.entries(F.data).map(([J,ee])=>{const te=ee.contests,ne=te?ee.contests.cleared?STATUS_MAP$2.completed:STATUS_MAP$2.pending:STATUS_MAP$2.notRequired,re=ee.skills,ae=re?ee.skills.cleared?STATUS_MAP$2.completed:STATUS_MAP$2.pending:STATUS_MAP$2.notRequired,oe=[ne,ae].every(ie=>ie!==STATUS_MAP$2.pending)?STATUS_MAP$2.completed:STATUS_MAP$2.pending;return{skillType:J,status:React.createElement(StatusColumnContent$2,{status:oe}),contests:React.createElement(ContestColumnContent,{contestDetails:te}),mockInterview:React.createElement(MockInterviewColumnContent,{mockInterviewDetails:re,skillId:ee.skillId,skillName:ee.skillName})}});return React.createElement(Table$1,{title:()=>React.createElement(Typography$1.Text,{className:styles$u.tableTitle,strong:!0},"Scaler certifications you need to apply"),columns:columns$2,dataSource:K,pagination:!1})},STATUS_MAP$1={added:"Added",missing:"Missing"},columns$1=[{title:"Stack Type",dataIndex:"stackType"},{title:"Experience (Yrs)",dataIndex:"experience"},{title:"Status",dataIndex:"status"},{title:"",dataIndex:"action"}],StatusColumnContent$1=({status:C})=>React.createElement(Space$1,null,React.createElement("div",{className:classNames(styles$u.dot,{[styles$u.successDot]:C===STATUS_MAP$1.added,[styles$u.errorDot]:C===STATUS_MAP$1.missing})}),React.createElement(Typography$1.Text,null,C)),ActionColumnContent=({status:C})=>{const{openResume:$,analytics:V}=useJobPreview(),F=()=>{V==null||V.click("Resume Skills - Add Skill",PRODUCT_NAME),$()};return C===STATUS_MAP$1.added?null:React.createElement(Typography$1.Link,{onClick:F,underline:!0},"Add Skill")},ResumeSkills=()=>{const{jobData:C}=useJobPreview(),{eligibilityCriteria:$}=C||{},{reasons:V}=$||{},F=V==null?void 0:V.find(J=>J.label==="tech_stacks");if(!(F!=null&&F.data))return null;const K=Object.entries(F.data).map(([J,ee])=>{var ne;const te=(ne=ee.data)!=null&&ne.cleared?STATUS_MAP$1.added:STATUS_MAP$1.missing;return{stackType:J,experience:`${Math.floor(ee.proficiencyPeriod/12)}+`,status:React.createElement(StatusColumnContent$1,{status:te}),action:React.createElement(ActionColumnContent,{status:te})}});return React.createElement(Table$1,{title:()=>React.createElement(Typography$1.Text,{className:styles$u.tableTitle,strong:!0},"Skills and Toolsets in your Resume"),columns:columns$1,dataSource:K,pagination:!1})},getExperienceText=(C,$)=>{const V=`${Math.floor(C/12)}y`,F=C%12===0?"":` ${C%12}m`,K=`${V}${F}`;if(!$)return`${K}+ Experience`;const J=`${Math.floor($/12)}y`,ee=$%12===0?"":`${$%12}m`;return`${K} - ${J} ${ee} Experience`},getNoticePeriodText=C=>C===0?"Immediate":C==null?"NA":`${C} days`,ADDITIONAL_ELIGIBILITY_MAPPING={diversity:()=>"Female Candidates Only",experience:({minExperience:C,maxExperience:$})=>getExperienceText(C,$),notice_period:({preferredNoticePeriod:C})=>`${getNoticePeriodText(C)} Notice Period`},ADDITIONAL_ELIGIBILITY_MAPPING_INELIGIBLE_REASONS={experience:"Unfortunately! Your profile does not have the relevant years of experience for this role",notice_period:"Unfortunately! Your notice period is not compatible with the notice period required for this role",placed_mentee:"You are ineligible to apply to this job since the CTC offered is less than 1.6x CTC of your previously accepted job offer",diversity:"Unfortunately! Your gender does not match the gender criteria for this role"},STATUS_MAP={eligible:"Eligible",ineligible:"Ineligible"},columns=[{title:"Requirement",dataIndex:"requirement"},{title:"Details",dataIndex:"details"},{title:"Status",dataIndex:"status"}],StatusColumnContent=({status:C})=>C===STATUS_MAP.eligible?React.createElement(Tag$1,{color:"success"},"Eligible"):React.createElement(Tag$1,{color:"error"},"Ineligible"),OtherRequirements=()=>{const{jobData:C}=useJobPreview(),{eligibilityCriteria:$}=C||{},{reasons:V}=$||{},F=V==null?void 0:V.filter(J=>J.label!=="skills"&&J.showText);if(!F)return null;const K=F.filter(J=>ADDITIONAL_ELIGIBILITY_MAPPING[J.label]).map(J=>{const ee=J.isEligible?STATUS_MAP.eligible:STATUS_MAP.ineligible;return{requirement:toTitleCase(J.label),details:ADDITIONAL_ELIGIBILITY_MAPPING[J.label](C),status:React.createElement(StatusColumnContent,{status:ee})}});return React.createElement(Table$1,{title:()=>React.createElement(Typography$1.Text,{className:styles$u.tableTitle,strong:!0},"Skills and Toolsets in your Resume"),columns,dataSource:K,pagination:!1})},SkillsRequiredTab=()=>{const{jobData:C}=useJobPreview(),{eligibilityCriteria:$}=C||{};return $?React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$u.container},React.createElement(Typography$1.Title,{level:3},"Job Check-list"),React.createElement(Certification,null),React.createElement(ResumeSkills,null),React.createElement(OtherRequirements,null)):null},bodyContainer="_bodyContainer_1nalq_1",tabs="_tabs_1nalq_5",styles$t={bodyContainer,tabs},ExpandedJobViewBody=()=>{var re;const{activeTab:C,setActiveTab:$,jobData:V,currentTab:F,analytics:K,jobId:J}=useJobPreview(),{applicationTimeline:ee}=V||{},te=((re=ee==null?void 0:ee.timeline)==null?void 0:re.length)>0&&F===TAG_TO_TAB_MAPPING.applied;React.useEffect(()=>{if(K&&C){const oe={[JOB_BODY_TABS.APPLICATION_TIMELINE.key]:"Application Timeline Tab",[JOB_BODY_TABS.ABOUT_ROLE.key]:"Job Description Tab",[JOB_BODY_TABS.REQUIREMENTS.key]:"Skills Required Tab"}[C]||"Unknown Tab";K.view(`Expanded Job View - ${oe}`,PRODUCT_NAME,{tab:C,jobId:J})}},[K,C,J]);const ne=[te&&{key:JOB_BODY_TABS.APPLICATION_TIMELINE.key,label:JOB_BODY_TABS.APPLICATION_TIMELINE.label,children:React.createElement(ApplicationTimelineTab,null)},{key:JOB_BODY_TABS.ABOUT_ROLE.key,label:JOB_BODY_TABS.ABOUT_ROLE.label,children:React.createElement(JobDescriptionTab,null)},{key:JOB_BODY_TABS.REQUIREMENTS.key,label:JOB_BODY_TABS.REQUIREMENTS.label,children:React.createElement(SkillsRequiredTab,null)}].filter(Boolean);return React.createElement("div",{className:styles$t.bodyContainer},React.createElement(Tabs$1,{activeKey:C,className:styles$t.tabs,items:ne,onChange:$}))},useUpdateApplicationStatusService=careerHubApi.injectEndpoints({endpoints:C=>({updateApplicationStatus:C.mutation({query:$=>({url:"/job-tracker/update-application/",method:"PATCH",body:$}),invalidatesTags:($,V,{job_profile_id:F})=>[{type:"JobPreview",id:F},"PipelineJobs"]})})}),{useUpdateApplicationStatusMutation}=useUpdateApplicationStatusService,appliedButton="_appliedButton_1f028_1",saveButton$1="_saveButton_1f028_9",savedButton$1="_savedButton_1f028_9",jobActions="_jobActions_1f028_30",withdrawalReasonForm="_withdrawalReasonForm_1f028_36",warningIcon$1="_warningIcon_1f028_41",withdrawalReasonRadioGroup="_withdrawalReasonRadioGroup_1f028_45",withdrawnText="_withdrawnText_1f028_52",styles$s={appliedButton,saveButton:saveButton$1,savedButton:savedButton$1,jobActions,withdrawalReasonForm,warningIcon:warningIcon$1,withdrawalReasonRadioGroup,withdrawnText},ModalContent=({withdrawalReason:C,setWithdrawalReason:$,withdrawalMessage:V,setWithdrawalMessage:F})=>{const K=ee=>{const te=ee.target.value;$(te),te!=="Other"&&F("")},J=ee=>{F(ee.target.value)};return React.createElement(React.Fragment,null,React.createElement(Typography$1.Text,null,"Please note that once withdrawn you will not be allowed to apply for this job again"),React.createElement(Form$1,{className:styles$s.withdrawalReasonForm},React.createElement(Form$1.Item,{layout:"vertical",label:"Select reason"},React.createElement(Radio$1.Group,{className:styles$s.withdrawalReasonRadioGroup,onChange:K,value:C},WITHDRAW_REASONS.map(ee=>React.createElement(Radio$1,{key:ee.value,value:ee.value},ee.label))),C==="Other"&&React.createElement(Form$1.Item,null,React.createElement(Input$1.TextArea,{value:V,onChange:J,placeholder:"Please specify your reason"})))))},Withdrawal=()=>{var ve;const{analytics:C,jobId:$,jobData:V,refetch:F,currentTab:K}=useJobPreview(),{applicationStatus:J}=V||{},[ee,te]=React.useState(!1),[ne,re]=React.useState((ve=WITHDRAW_REASONS[0])==null?void 0:ve.value),[ae,oe]=React.useState(""),[ie]=useUpdateApplicationStatusMutation(),{message:se}=App$1.useApp(),ce=()=>tr(this,null,function*(){var ge,pe;const fe=yield ie({job_profile_id:$,update_action:"withdraw",message:ae||ne});(ge=fe==null?void 0:fe.data)!=null&&ge.success?(se.success("Application withdrawn successfully"),te(!1),re((pe=WITHDRAW_REASONS[0])==null?void 0:pe.value),oe(""),F()):se.error("Failed to withdraw application"),C==null||C.click("Withdraw Application Ok",PRODUCT_NAME,{currentTab:K,jobId:$})}),ue=()=>{var fe;te(!1),re((fe=WITHDRAW_REASONS[0])==null?void 0:fe.value),oe("")},le=()=>{var fe;re((fe=WITHDRAW_REASONS[0])==null?void 0:fe.value),oe(""),te(!0),C==null||C.click("Expanded View - Withdraw Application",PRODUCT_NAME,{currentTab:K,jobId:$})};return J===APPLICATION_STATUS$1.WITHDRAWN?React.createElement("div",{className:styles$s.withdrawnText},React.createElement(CheckCircleFilled$1,null),"Your Application has been Withdrawn"):K===TAG_TO_TAB_MAPPING.applied&&!NON_WITHDRAW_STATUSES.includes(J)?React.createElement(React.Fragment,null,React.createElement(Button$2,{icon:React.createElement("img",{src:ICONS.exit,alt:"exit"}),onClick:le,className:styles$s.withdrawButton,ghost:!0,type:"primary",size:"large"},"Withdraw Application"),React.createElement(Modal$1,{title:React.createElement(Space$1,null,React.createElement(WarningFilled$1,{className:styles$s.warningIcon}),React.createElement(Typography$1.Text,null,"Withdraw My Application")),open:ee,onOk:ce,onCancel:ue},React.createElement(ModalContent,{withdrawalReason:ne,setWithdrawalReason:re,withdrawalMessage:ae,setWithdrawalMessage:oe}))):null},SaveButton$1=()=>{const{analytics:C,jobId:$,jobData:V,refetch:F,currentTab:K}=useJobPreview(),[J,{isLoading:ee}]=useUpdateApplicationStatusMutation(),{applicationStatus:te}=V||{},ne=te===APPLICATION_STATUS$1.SAVED,re=()=>tr(this,null,function*(){var oe;const ae=yield J({job_profile_id:$,update_action:"save"});(oe=ae==null?void 0:ae.data)!=null&&oe.success?(message$1.success("Application saved successfully"),F()):message$1.error("Failed to save application"),C==null||C.click("Expanded View - Save","Jobs Page V2",{currentTab:K,jobId:$})});return K===TAG_TO_TAB_MAPPING.applied?null:ne?React.createElement(Button$2,{icon:React.createElement("img",{src:ICONS.bookmark,alt:"bookmark"}),type:"text",size:"large",disabled:!0},"Saved"):React.createElement(Button$2,{icon:React.createElement(SaveTwoTone$1,null),type:"primary",ghost:!0,size:"large",onClick:re,loading:ee},"Save")},ApplyButton=()=>{const{jobData:C,eligibilityCriteria:$,setActiveApplicationId:V,jobId:F,currentTab:K,analytics:J}=useJobPreview(),{applicationStatus:ee,jobProfileStatus:te}=C||{},{isEligible:ne}=$||{},re=ee===APPLICATION_STATUS$1.WITHDRAWN,ae=ee===APPLICATION_STATUS_MAP.Draft,oe=te===JOB_PROFILE_STATUS$1.active,ie=()=>{V(F),J==null||J.click("Expanded View - Apply Now","Jobs Page V2",{currentTab:K,jobId:F})};return React.useEffect(()=>()=>{V(null)},[V]),re?null:K===TAG_TO_TAB_MAPPING.applied&&!ae?React.createElement(Button$2,{icon:React.createElement(CheckCircleFilled$1,null),className:styles$s.appliedButton,type:"text",size:"large"},"Applied"):React.createElement(Button$2,{icon:React.createElement(RiseOutlined$1,null),onClick:ie,className:styles$s.applyButton,type:"primary",size:"large",disabled:!ne||!oe},"Apply Now")},Actions=()=>React.createElement("div",{className:styles$s.jobActions},React.createElement(ApplyButton,null),React.createElement(SaveButton$1,null),React.createElement(Withdrawal,null)),missingLogo="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAACqElEQVR4Xu2bMUpEQRBEXQwNFLyKuYE38KDewMDcqyx8A0NRlAWFDbqKGYuezzP9tdMz7/X0Lrt42Lbt84K/NgQOCGnj4mcjCOnlAyHNfCAEId0INNsP7yEIaUag2XYiN+T48jR87Nv7x6E1OuxBOQBCFEqnzGhTKKUQolBCyDml0e5kZP1h2gFGhz0ol5GRpVBiZDGyjD7xox3GRYc9KOQYWQolRhYjy+gTP9phXHTYg0KOkaVQYmQxsow+8aMdxkWHPSjkGFkKJUYWI8voEz/aYVx02INCbpmRpRzmvzOj3zgr+0OIQon3EINSMMoNCcJWSiFEoRTMICQIWymFEIVSMIOQIGylFEIUSsEMQoKwlVIIUSgFMwgJwlZKIUShFMwgJAhbKYUQhVIwg5AgbKUUQhRKwUwLITN+aZvBbBTGKucof6Ba5SCV9FXOgZDK5OTn1U1HyGTg1XIIORFiZFWtYj6vOqtaDiEVIfM5Qha76pVfbkhFyHzODeGGmC2jxavG4mOvxnFaCiGL3XRuyLTe1xbihnBDtE5xU1VnVevxsbciZD5HyMSrfnl1beI/j9/cPQytsb0+D73++8Uf72/Da1SNFXlTrzYxfMrQAjPGXsUCIYZMhBiwElGEJCgbNRBiwEpEEZKgbNRAiAErEUVIgrJRAyEGrEQUIQnKRg2EGLASUYQkKBs1EGLASkQRkqBs1ECIASsRRUiCslFjN0KMM+8+2uL3kN1TNg6IEANWIoqQBGWjBkIMWIkoQhKUjRoIMWAloghJUDZqIMSAlYgiJEHZqIEQA1YiipAEZaMGQgxYiShCEpSNGggxYCWiCElQNmogxICViA4LSWySGr8Eyn/YAVaWAEKyvMtqCCkRZQMIyfIuqyGkRJQNICTLu6yGkBJRNvAFGmsSbsnlaLoAAAAASUVORK5CYII=",CompanyLogo=({logo:C,company:$,companiesList:V,companyName:F,size:K=48})=>{const J=()=>{var re;return C||($&&$[0]&&((re=V[$[0]])!=null&&re.logo)?V[$[0]].logo:missingLogo)},[ee,te]=React.useState(()=>J());React.useEffect(()=>{var re;if(C){te(C);return}if($&&$[0]&&((re=V[$[0]])!=null&&re.logo)){te(V[$[0]].logo);return}te(missingLogo)},[C,$,V]);const ne=()=>{te(missingLogo)};return React.createElement(Avatar$1,{size:K,src:ee,alt:F,onError:ne,shape:"square"})};CompanyLogo.propTypes={logo:PropTypes.string,company:PropTypes.arrayOf(PropTypes.number),companiesList:PropTypes.object,companyName:PropTypes.string,size:PropTypes.number},CompanyLogo.defaultProps={logo:null,company:[],companiesList:{},companyName:""};const basicInfo="_basicInfo_2vzae_1",companyInfo="_companyInfo_2vzae_12",companyName$1="_companyName_2vzae_18",container$6="_container_2vzae_25",extraDetails="_extraDetails_2vzae_33",extraDetailsDivider="_extraDetailsDivider_2vzae_44",jobTitle$1="_jobTitle_2vzae_51",jobLocation="_jobLocation_2vzae_58",styles$r={basicInfo,companyInfo,companyName:companyName$1,container:container$6,extraDetails,extraDetailsDivider,jobTitle:jobTitle$1,jobLocation},CompanyInfo=()=>{const{companyData:C}=useJobPreview(),{logo:$,name:V}=C||{};return React.createElement("div",{className:styles$r.companyInfo},React.createElement(CompanyLogo,{logo:$,companyName:V,size:50}),React.createElement("div",{className:styles$r.companyName},V))},JobTitle=()=>{const{jobData:C}=useJobPreview(),{title:$}=C||{};return React.createElement(Typography$1.Text,{ellipsis:!0,className:styles$r.jobTitle},$)},JobLocation=()=>{const{jobData:C}=useJobPreview(),{preferredCities:$}=C||{},V=formatLocation($);return React.createElement("div",{className:styles$r.jobLocation},V)},BasicInfo=()=>React.createElement("div",{className:styles$r.basicInfo},React.createElement(CompanyInfo,null),React.createElement(JobTitle,null),React.createElement(JobLocation,null)),ExtraDetails=()=>{const{jobData:C}=useJobPreview(),{minCtc:$,maxCtc:V,openForDiscussionCtc:F,isInternship:K,stipend:J,preferredNoticePeriod:ee,minExperience:te,maxExperience:ne}=C||{},re=formatCtc({minCtc:$,maxCtc:V,openForDiscussionCtc:F,isInternship:K,stipend:J}),ae=formatExperience$1(te,ne),oe=formatNoticePeriod(ee);return React.createElement("div",{className:styles$r.extraDetails},[re,ae,oe].filter(Boolean).map((ie,se)=>React.createElement(React.Fragment,{key:se},React.createElement("div",{className:styles$r.detail},ie),React.createElement(Divider$1,{size:"large",type:"vertical",className:styles$r.extraDetailsDivider}))))},ExpandedJobViewHeader=()=>React.createElement("div",{className:styles$r.container},React.createElement(BasicInfo,null),React.createElement(ExtraDetails,null),React.createElement(Actions,null)),field="_field_t90m2_1",checkboxAdjacentField="_checkboxAdjacentField_t90m2_7",fieldGroup="_fieldGroup_t90m2_11",checkboxFieldGroup="_checkboxFieldGroup_t90m2_17",fieldGroupLabel="_fieldGroupLabel_t90m2_21",styles$q={field,checkboxAdjacentField,fieldGroup,checkboxFieldGroup,fieldGroupLabel};function CTC({fieldName:C,fieldProps:$,label:V}){return React.createElement(Form$1.Item,{label:V,name:C,rules:[{required:!0,message:`${V} is required`}],layout:"vertical",className:styles$q.field,extra:"Enter amount in lakhs. For eg, if amount is 50 LPA, enter 50."},React.createElement(Input$1,zn({},$)))}function Linkedin({fieldName:C,label:$,fieldProps:V}){return React.createElement(Form$1.Item,{label:$,name:C,rules:[{required:!0,message:"Please enter your LinkedIn profile URL",type:"url"}],layout:"vertical",className:styles$q.field},React.createElement(Input$1,zn({},V)))}const selectOptionsService=careerHubApi.injectEndpoints({endpoints:C=>({getSelectOptions:C.query({query:({fieldType:$,query:V})=>({url:"/job-tracker/v1/custom-data",params:{field_type:$,q:V}}),transformResponse:($,V,F)=>{const K=($==null?void 0:$[F==null?void 0:F.fieldType])||[];return(K==null?void 0:K.map(J=>({text:J,value:J})))||[]}})})}),{useLazyGetSelectOptionsQuery}=selectOptionsService;function Company({fieldName:C,label:$}){const[V]=useLazyGetSelectOptionsQuery(),[F,K]=React.useState([]),J=ee=>tr(this,null,function*(){const te=yield V({fieldType:"companies",query:ee});K((te==null?void 0:te.data)||[])});return React.createElement(Form$1.Item,{label:$,name:C,rules:[{required:!0,message:"Please select a company"}],layout:"vertical",className:styles$q.field},React.createElement(Select$1,{mode:"tags",maxCount:1,options:F,showSearch:!0,filterOption:!1,onSearch:J}))}function Top5Skills({fieldName:C,label:$}){const V=reactRedux.useSelector(J=>J.scalantCareerHub.dashboard.userProfileData),F=(V==null?void 0:V.experienceBasedSkills)||[],K=getSkillOptions(F);return React.createElement(Space$1,{className:styles$q.fieldGroup},React.createElement(Form$1.Item,{label:$,name:C,rules:[{required:!0,message:"Please select upto 5 primary skills"}],className:styles$q.field},React.createElement(Select$1,{options:K,mode:"multiple",showSearch:!1})))}function GradYear({fieldName:C,label:$}){return React.createElement(Form$1.Item,{label:$,name:C,rules:[{required:!0,message:"Please select graduation year"}],className:styles$q.field},React.createElement(Select$1,{showSearch:!0,options:[...Array(71)].map((V,F)=>{const K=new Date().getFullYear()-60+F;return{label:K,value:`${K}-01-01`}}).reverse()}))}function CurrentLocation({fieldName:C,fieldProps:$,label:V}){return React.createElement(Form$1.Item,{label:V,name:C,rules:[{required:!0,message:"Please select current location"}],className:styles$q.field},React.createElement(Select$1,zn({},$)))}function NoticePeriod({label:C}){const $=Form$1.useWatch(NOTICE_PERIOD_FIELD_MAP.notice_period)==="-1";return React.createElement(Space$1,{className:styles$q.fieldGroup},React.createElement(Space$1,{className:classNames(styles$q.fieldGroup,styles$q.checkboxFieldGroup)},React.createElement(Form$1.Item,{label:C,name:NOTICE_PERIOD_FIELD_MAP.notice_period,rules:[{required:!0,message:"Please select notice period"}],className:classNames(styles$q.field,styles$q.checkboxAdjacentField)},React.createElement(Select$1,{options:NOTICE_PERIOD_OPTIONS})),React.createElement(Form$1.Item,{name:NOTICE_PERIOD_FIELD_MAP.buyout_notice,className:styles$q.field,valuePropName:"checked"},React.createElement(Checkbox$1,null,"Negotiable / Buyout available"))),$&&React.createElement(Form$1.Item,{label:"Last Date of Job",name:NOTICE_PERIOD_FIELD_MAP.available_joining_date,rules:[{required:!0,message:"Please enter last date"}],className:styles$q.field},React.createElement(Input$1,{type:"date"})))}function PreferredLocation({fieldName:C,label:$,fieldProps:V}){const F=Form$1.useWatch(CHECKBOX_FIELD_MAP.preferred_location_anywhere_in_india);return React.createElement(Space$1,{className:classNames(styles$q.fieldGroup,styles$q.checkboxFieldGroup)},React.createElement(Form$1.Item,{label:$,name:C,className:classNames(styles$q.field,styles$q.checkboxAdjacentField)},React.createElement(Select$1,gr(zn({},V),{disabled:F}))),React.createElement(Form$1.Item,{name:CHECKBOX_FIELD_MAP.preferred_location_anywhere_in_india,valuePropName:"checked"},React.createElement(Checkbox$1,null,"Anywhere in India")))}function TotalYearsOfExperience(){return React.createElement(Space$1,{className:styles$q.fieldGroup},React.createElement(Form$1.Item,{label:"Experience Years",name:EXPERIENCE_FIELD_MAP.years_of_experience,rules:[{required:!0,message:"Please select years of experience"}],className:styles$q.field},React.createElement(Select$1,{options:YEAR_OPTIONS,showSearch:!0})),React.createElement(Form$1.Item,{label:"Experience Months",name:EXPERIENCE_FIELD_MAP.months_of_experience,rules:[{required:!0,message:"Please select months of experience"}],className:styles$q.field},React.createElement(Select$1,{options:MONTH_OPTIONS,showSearch:!0})))}const NON_CUSTOM_FIELD_MAP={expected_ctc:"expected_ctc",current_ctc:"current_ctc",orgyear:"orgyear",linkedin:"linkedin",current_company:"current_company",current_location:"current_location",preferred_location:"preferred_location",notice_period:"notice_period",experience:"experience",skills:"skills"},CHECKBOX_FIELD_MAP={preferred_location_anywhere_in_india:"preferred_location_anywhere_in_india"},EXPERIENCE_FIELD_MAP={years_of_experience:"years_of_experience",months_of_experience:"months_of_experience"},NOTICE_PERIOD_FIELD_MAP={notice_period:"notice_period",serving_notice:"serving_notice",available_joining_date:"available_joining_date",buyout_notice:"buyout_notice"},LOCATION_FIELD_MAP={current_location:"current_location",preferred_location:"preferred_location"},NON_CUSTOM_FIELDS=Object.values(NON_CUSTOM_FIELD_MAP),NON_CUSTOM_FIELD_COMPONENT_MAPPING={[NON_CUSTOM_FIELD_MAP.expected_ctc]:{component:CTC,props:{fieldName:"expected_ctc",label:"Expected CTC",fieldProps:{type:"number",min:0}}},[NON_CUSTOM_FIELD_MAP.current_ctc]:{component:CTC,props:{fieldName:"current_ctc",label:"Current CTC",fieldProps:{type:"number",min:0}}},[NON_CUSTOM_FIELD_MAP.current_location]:{component:CurrentLocation,props:{fieldName:NON_CUSTOM_FIELD_MAP.current_location,label:"Current Locations",fieldProps:{options:((er=window==null?void 0:window[HYDRATION_KEY])==null?void 0:er.job_locations)||[],mode:"multiple"}}},[NON_CUSTOM_FIELD_MAP.preferred_location]:{component:PreferredLocation,props:{fieldName:NON_CUSTOM_FIELD_MAP.preferred_location,label:"Preferred Locations",fieldProps:{options:((nr=window==null?void 0:window[HYDRATION_KEY])==null?void 0:nr.job_locations)||[],mode:"multiple"}}},[NON_CUSTOM_FIELD_MAP.orgyear]:{component:GradYear,props:{fieldName:NON_CUSTOM_FIELD_MAP.orgyear,label:"Graduation Year"}},[NON_CUSTOM_FIELD_MAP.linkedin]:{component:Linkedin,props:{fieldName:NON_CUSTOM_FIELD_MAP.linkedin,label:"LinkedIn profile",fieldProps:{type:"url"}}},[NON_CUSTOM_FIELD_MAP.current_company]:{component:Company,props:{fieldName:NON_CUSTOM_FIELD_MAP.current_company,label:"Company"}},[NON_CUSTOM_FIELD_MAP.notice_period]:{component:NoticePeriod,props:{fieldName:NON_CUSTOM_FIELD_MAP.notice_period,label:"Notice Period"}},[NON_CUSTOM_FIELD_MAP.experience]:{component:TotalYearsOfExperience,props:{fieldName:NON_CUSTOM_FIELD_MAP.experience,label:"Total Years of Experience"}},[NON_CUSTOM_FIELD_MAP.skills]:{component:Top5Skills,props:{fieldName:NON_CUSTOM_FIELD_MAP.skills,label:"Select upto 5 primary skills that you want to share to recruiters"}}},YEAR_OPTIONS=new Array(50).fill(0).map((C,$)=>({label:`${$} Years`,value:`${$}`})),MONTH_OPTIONS=new Array(12).fill(0).map((C,$)=>({label:`${$} Months`,value:`${$}`})),NOTICE_PERIOD_OPTIONS=[{value:"-1",label:"Currently Serving"},{value:"0",label:"Immediately Available"},{value:"15",label:"15 Days"},{value:"30",label:"30 Days"},{value:"45",label:"45 Days"},{value:"60",label:"60 Days"},{value:"90",label:"90 Days"}],ANYWHERE_IN_INDIA="anywhere_in_india",getSkillOptions=C=>(C==null?void 0:C.map($=>{var K,J,ee,te;const V=((K=$.proficiency_period)==null?void 0:K.years)||((J=$.proficiencyPeriod)==null?void 0:J.years),F=((ee=$.proficiency_period)==null?void 0:ee.months)||((te=$.proficiencyPeriod)==null?void 0:te.months);return{label:`${$.name} (${V}Y ${F}M)`,value:`${$.skillId}`}}))||[],CUSTOM_FIELD_TYPE_MAP={text:"text",date_time:"date_time",upload:"upload",number:"number"},getInitialFormData=C=>{const $=Object.fromEntries(Object.entries(C).map(([J,ee])=>{switch(J){case NON_CUSTOM_FIELD_MAP.current_location:return[J,ee==null?void 0:ee.split("/")];case NON_CUSTOM_FIELD_MAP.preferred_location:return ee===ANYWHERE_IN_INDIA?[J,null]:[J,ee==null?void 0:ee.split("/")];case NON_CUSTOM_FIELD_MAP.skills:return[J,ee==null?void 0:ee.map(te=>te.skill_id)];default:return[J,ee]}})),V=C[NON_CUSTOM_FIELD_MAP.notice_period]||{},F=C[NON_CUSTOM_FIELD_MAP.experience]||{},K=C[NON_CUSTOM_FIELD_MAP.preferred_location];return Object.entries(V).forEach(([J,ee])=>{J===NOTICE_PERIOD_FIELD_MAP.buyout_notice?$[J]=ee==="true":$[J]=ee}),Object.entries(F).forEach(([J,ee])=>{$[J]=ee}),$[CHECKBOX_FIELD_MAP.preferred_location_anywhere_in_india]=K===ANYWHERE_IN_INDIA,$},getInitialCustomFormData=C=>C.reduce((V,F)=>gr(zn({},V),{[F.id]:F.response}),{}),createNoticePeriodFieldPayload=C=>gr(zn({},C),{[NOTICE_PERIOD_FIELD_MAP.serving_notice]:C[NOTICE_PERIOD_FIELD_MAP.notice_period]==="-1"}),createExperienceFieldPayload=C=>{let $=0;return $+=(Number(C[EXPERIENCE_FIELD_MAP.years_of_experience])||0)*12,$+=Number(C[EXPERIENCE_FIELD_MAP.months_of_experience])||0,$},createSkillsFieldPayload=(C,$)=>$.map(V=>gr(zn({},V),{is_top_5:C==null?void 0:C.includes(String(V.skillId))})),createCustomFieldsPayload=C=>{const $=Object.keys(NON_CUSTOM_FIELD_MAP)+Object.keys(CHECKBOX_FIELD_MAP)+Object.keys(EXPERIENCE_FIELD_MAP)+Object.keys(NOTICE_PERIOD_FIELD_MAP);return Object.entries(C).filter(([V])=>!$.includes(V)).map(([V,F])=>({id:V,response:F}))},createDefaultFieldsPayload=(C,$)=>{const V={};Object.entries(C).forEach(([J,ee])=>{NON_CUSTOM_FIELDS.includes(J)&&(LOCATION_FIELD_MAP[J]?V[J]=ee==null?void 0:ee.join("/"):V[J]=ee)});const F={},K={};return Object.entries(C).forEach(([J,ee])=>{NOTICE_PERIOD_FIELD_MAP[J]?F[J]=ee:EXPERIENCE_FIELD_MAP[J]?K[J]=ee:CHECKBOX_FIELD_MAP.preferred_location_anywhere_in_india===J&&ee&&(V[NON_CUSTOM_FIELD_MAP.preferred_location]=ANYWHERE_IN_INDIA)}),V[NON_CUSTOM_FIELD_MAP.notice_period]=createNoticePeriodFieldPayload(F),V[NON_CUSTOM_FIELD_MAP.experience]=createExperienceFieldPayload(K),V[NON_CUSTOM_FIELD_MAP.skills]=createSkillsFieldPayload(C[NON_CUSTOM_FIELD_MAP.skills],$),V},createApplicationFormPayload=(C,$)=>({default_fields:createDefaultFieldsPayload(C,$),custom_fields:createCustomFieldsPayload(C)});function GenericField({formType:C,field:$}){return React.createElement(Form$1.Item,{label:$.attributes.title,name:$.id,rules:[{required:!0,message:`${$.attributes.title} is required`}],layout:"vertical",className:styles$q.field},React.createElement(Input$1,{type:C}))}function UploadField({field:C}){const{onUploadFile:$}=useApplicationFormContext(),[V,F]=React.useState(!1),K=Form$1.useFormInstance(),J=Form$1.useWatch(C.id)||{},ee=te=>tr(this,null,function*(){var re,ae;const ne=(ae=(re=te==null?void 0:te.target)==null?void 0:re.files)==null?void 0:ae[0];if(ne){F(!0),K.setFieldValue(C.id,{file_name:ne.name});try{if($){const oe=yield $(ne);K.setFieldValue(C.id,{file_name:ne.name,file_url:oe}),message$1.success("File uploaded successfully")}else throw new Error("Upload file function not provided")}catch(oe){message$1.error("Failed to upload file")}finally{F(!1)}}});return React.createElement(Form$1.Item,{label:C.attributes.title,name:C.id,rules:[{required:!0,message:`${C.attributes.title} is required`}],layout:"vertical",className:styles$q.field},React.createElement(Upload$1,{multiple:!1,accept:".pdf,.doc,.docx,.txt,.md",showUploadList:!1,beforeUpload:()=>!1,onChange:({file:te})=>{if(te){const ne={target:{files:[te.originFileObj||te]}};ee(ne)}},disabled:V},React.createElement(Button$2,{className:styles$q.field,loading:V,icon:!!J.file_name&&React.createElement(CheckCircleFilled$1,null)},!!J.file_name&&J.file_name,!J.file_name&&!V&&"Upload File")))}function CustomField({field:C}){switch(C.attributes.form_type){case CUSTOM_FIELD_TYPE_MAP.upload:return React.createElement(UploadField,{field:C});case CUSTOM_FIELD_TYPE_MAP.date_time:return React.createElement(GenericField,{formType:"date",field:C});default:return React.createElement(GenericField,{formType:C.attributes.form_type,field:C})}}const form="_form_1ip4j_1",styles$p={form};function NonCustomField({field:C}){var K;if(!NON_CUSTOM_FIELD_COMPONENT_MAPPING[(K=C==null?void 0:C.attributes)==null?void 0:K.title])return null;const{title:$}=C.attributes,{component:V,props:F}=NON_CUSTOM_FIELD_COMPONENT_MAPPING[$];return React.createElement(V,zn({},F))}function ApplicationForm(){const{applicationId:C,stepName:$,jobProfileId:V}=useApplicationFormContext(),{data:F,isLoading:K}=useApplicationForm({jobProfileId:V,applicationId:C,status:$}),[J]=Form$1.useForm(),{setFormInstance:ee}=useApplicationFormContext(),te=React.useMemo(()=>F==null?void 0:F.reduce((re,ae)=>(ae.attributes.custom||(re[ae.attributes.title]=ae),re),{}),[F]),ne=React.useMemo(()=>F==null?void 0:F.filter(re=>re.attributes.custom),[F]);return React.useEffect(()=>{if(!te||!ne)return;const re=Object.fromEntries(Object.entries(te).map(([oe,ie])=>[oe,ie.attributes.response])),ae=ne.map(oe=>({id:oe.id,response:oe.attributes.response}));J.setFieldsValue(zn(zn({},getInitialFormData(re)),getInitialCustomFormData(ae)))},[te,ne,J]),React.useEffect(()=>{ee(J)},[J,ee]),K||!te||!ne?React.createElement(Skeleton$1,{active:!0}):React.createElement(Form$1,{layout:"vertical",className:styles$p.form,form:J},NON_CUSTOM_FIELDS.map(re=>React.createElement(NonCustomField,{key:re,field:te[re]})),Object.entries(ne).map(([re,ae])=>React.createElement(CustomField,{key:re,field:ae})))}const fitmentService=careerHubApi.injectEndpoints({endpoints:C=>({getFitment:C.query({query:({jobProfileId:$})=>({url:"/api/v3/user-resumes/job-fitment-evaluation",params:{job_profile_id:$},method:"POST"})})})}),{useGetFitmentQuery}=fitmentService,applicationFormFooterContainer="_applicationFormFooterContainer_x88g1_1",resumeChoiceSelectFooterContainer="_resumeChoiceSelectFooterContainer_x88g1_7",styles$o={applicationFormFooterContainer,resumeChoiceSelectFooterContainer},ApplicationFormFooter=({onCancel:C})=>{const $=reactRedux.useSelector(ce=>ce.scalantCareerHub.dashboard.userProfileData),V=($==null?void 0:$.experienceBasedSkills)||[],{applicationId:F,formInstance:K,jobProfileId:J,stepName:ee,setStepName:te,fitmentCheckEnabled:ne}=useApplicationFormContext(),{analytics:re}=useJobPreview(),[ae,{isLoading:oe}]=useUpdateApplicationMutation(),ie=()=>tr(this,null,function*(){var ce,ue;re==null||re.click("Application Form - Next",PRODUCT_NAME);try{const le={job_profile_id:J,step_name:ee,form_data:createApplicationFormPayload(K.getFieldsValue(),V)},ve=yield ae({applicationId:F,payload:le});(ce=ve==null?void 0:ve.data)!=null&&ce.success&&ne?te(APPLICATION_STATUS$1.RESUME_FITMENT_CHECK):(ue=ve==null?void 0:ve.data)!=null&&ue.success?te(APPLICATION_STATUS$1.RESUME_CHOICE_SELECT):message$1.error("Failed to update application")}catch(le){console.error(le),message$1.error("Failed to update application")}}),se=()=>{re==null||re.click("Application Form - Cancel",PRODUCT_NAME),C()};return React.createElement(Space$1,{className:styles$o.applicationFormFooterContainer},React.createElement(Button$2,{onClick:se},"Cancel"),React.createElement(Button$2,{loading:oe,type:"primary",onClick:ie},"Next"))},ResumeChoiceSelectFooter=()=>{const{applicationId:C,selectedResume:$,jobProfileId:V,stepName:F,setStepName:K}=useApplicationFormContext(),{analytics:J}=useJobPreview(),[ee,{isLoading:te}]=useUpdateApplicationMutation(),ne=()=>{J==null||J.click("Resume Choice - Go Back",PRODUCT_NAME),K(APPLICATION_STATUS$1.APPLICATION_FORM)},re=()=>tr(this,null,function*(){var ae;J==null||J.click("Resume Choice - Proceed to Apply",PRODUCT_NAME);try{const ie=yield ee({applicationId:C,payload:{job_profile_id:V,step_name:F,resume_id:$}});(ae=ie==null?void 0:ie.data)!=null&&ae.success?K(APPLICATION_STATUS$1.SUCCESSFULLY_APPLIED):message$1.error("Failed to update application")}catch(oe){console.error(oe),message$1.error("Failed to update application")}});return React.createElement(Space$1,{className:styles$o.resumeChoiceSelectFooterContainer},React.createElement(Space$1,null,React.createElement(BulbTwoTone$1,null),React.createElement(Typography$1.Text,{strong:!0},"Quick Tip: "),React.createElement(Typography$1.Text,null,"Complete the improvements to boost your hiring chances")),React.createElement(Space$1,null,React.createElement(Button$2,{onClick:ne},"Go Back"),React.createElement(Button$2,{type:"primary",onClick:re,loading:te,disabled:!$},"Proceed to Apply")))},ResumeFitmentCheckErrorFooter=()=>{const{setStepName:C,jobProfileId:$}=useApplicationFormContext(),{analytics:V}=useJobPreview(),{refetch:F}=useGetFitmentQuery({jobProfileId:$}),K=()=>{C(APPLICATION_STATUS$1.RESUME_CHOICE_SELECT),V==null||V.click("Resume Fitment Check Error - Skip Fitment Check",PRODUCT_NAME)},J=()=>{F(),C(APPLICATION_STATUS$1.RESUME_FITMENT_CHECK),V==null||V.click("Resume Fitment Check Error - Retry Fitment Check",PRODUCT_NAME)};return React.createElement(Space$1,{className:styles$o.applicationFormFooterContainer},React.createElement(Button$2,{onClick:K},"Continue to Application"),React.createElement(Button$2,{type:"primary",onClick:J},"Generate your Resume Score"))};function Footer$1({onCancel:C}){const{stepName:$}=useApplicationFormContext();switch($){case APPLICATION_STATUS$1.APPLICATION_FORM:return React.createElement(ApplicationFormFooter,{onCancel:C});case APPLICATION_STATUS$1.RESUME_CHOICE_SELECT:return React.createElement(ResumeChoiceSelectFooter,null);case APPLICATION_STATUS$1.RESUME_FITMENT_CHECK_ERROR:return React.createElement(ResumeFitmentCheckErrorFooter,null);default:return null}}const transformJobsData=C=>{if(!C||!(C!=null&&C.data)||!Array.isArray(C==null?void 0:C.data))return[];const $={};return C!=null&&C.included&&Array.isArray(C==null?void 0:C.included)&&(C==null||C.included.forEach(V=>{V.type==="company"&&V.attributes&&($[V.id]=V.attributes)})),C==null?void 0:C.data.map(V=>{if(V.type!=="job_profile"||!V.attributes)return null;const F=V.attributes,K=V.relationships||{};let J=null;if(K.company&&K.company.data){const te=K.company.data.id;J=$[te]||null}return{id:parseInt(V.id,10),title:F.title||"",name:F.title||"",slug:F.slug||"",jobDesc:F.job_desc||"",jobDescText:F.job_desc_text||"",minExperience:F.min_experience?parseFloat(F.min_experience):null,maxExperience:F.max_experience?parseFloat(F.max_experience):null,minCtc:F.min_ctc?parseFloat(F.min_ctc):null,maxCtc:F.max_ctc?parseFloat(F.max_ctc):null,validTill:F.valid_till||null,createdAt:F.created_at||null,jobType:F.job_type||null,preferredCities:F.preferred_cities||"",preferredNoticePeriod:F.preferred_notice_period||null,meritBasedSkills:F.merit_based_skills||[],contestSkills:F.contest_skills||[],applicationStatus:F.application_status||null,expiry:F.expiry||null,applicationId:F.application_id||null,userCompanyStatus:F.user_company_status||null,applicationLastUpdatedAt:F.application_last_upated_at||null,jobSource:F.job_source||null,jobProfileId:F.job_profile_id||null,jobProfileStatus:F.job_profile_status||"active",datePostedOn:F.date_posted_on||null,openForDiscussionCtc:F.open_for_discussion_ctc||!1,appliedOn:F.applied_on||null,seniorityLevel:F.seniority_level||null,roleType:F.role_type||"full_time",duration:F.duration||null,stipend:F.stipend||null,eligibilityCriteria:F.eligibility_criteria||{is_eligible:!1,reasons:[]},exceptionalJob:F.exceptional_job||!1,isRelevant:F.is_relevant||!1,isInternship:F.role_type==="internship",company:J?[parseInt(K.company.data.id,10)]:[],logo:(J==null?void 0:J.logo)||null,companyName:(J==null?void 0:J.name)||null,companySlug:(J==null?void 0:J.slug)||null,companyLocation:(J==null?void 0:J.location)||null,companyWebsite:(J==null?void 0:J.company_website)||null,companyVision:(J==null?void 0:J.company_vision)||null,companyTagline:(J==null?void 0:J.tagline)||null,companyCategory:(J==null?void 0:J.category)||null,companyEmployeeCount:(J==null?void 0:J.employee_count)||null}}).filter(Boolean)},createCompaniesMap=C=>{const $={};return C!=null&&C.included&&Array.isArray(C.included)&&C.included.forEach(V=>{V.type==="company"&&V.attributes&&($[V.id]=zn({id:V.id},V.attributes))}),$},normalizeJobsResponse=(C={})=>{var J,ee,te,ne;const $=C.jobs_data||C,V=transformJobsData($),F=createCompaniesMap($),K=(ne=(te=(J=C.total_entries)!=null?J:$.total_entries)!=null?te:(ee=$==null?void 0:$.meta)==null?void 0:ee.total_entries)!=null?ne:null;return{jobs:V,companiesMap:F,results:V,totalEntries:K}},jobsService=careerHubApi.injectEndpoints({endpoints:C=>({fetchAllJobs:C.query({query:($={})=>({url:"/job-tracker/fetch-all-jobs/",method:"POST",body:$}),transformResponse:normalizeJobsResponse,providesTags:["Jobs"]}),fetchPipelineJobs:C.query({query:($={})=>({url:"/job-tracker/fetch-pipeline-jobs/",method:"POST",body:$}),transformResponse:normalizeJobsResponse,providesTags:["PipelineJobs"]}),fetchRelevantJobs:C.query({query:($={})=>({url:"/job-tracker/relevancy/",method:"POST",body:gr(zn({},$),{include_exceptional_jobs:!0})}),transformResponse:normalizeJobsResponse,providesTags:["RelevantJobs"]})})}),{useFetchAllJobsQuery,useFetchPipelineJobsQuery,useFetchRelevantJobsQuery,util:jobsServiceUtil}=jobsService,stepText="_stepText_14qm3_1",titleContainer$1="_titleContainer_14qm3_5",titleIcon="_titleIcon_14qm3_9",titleText="_titleText_14qm3_14",styles$n={stepText,titleContainer:titleContainer$1,titleIcon,titleText},{Text:Text$4}=Typography$1,STEP_MAP={[APPLICATION_STATUS$1.APPLICATION_FORM]:{currentStep:1,icon:InfoCircleFilled$1,title:"Required Details",totalSteps:2},[APPLICATION_STATUS$1.RESUME_FITMENT_CHECK]:{currentStep:2,icon:FileTextTwoTone$1,title:"Select which Resume to share for this job application",totalSteps:2},[APPLICATION_STATUS$1.RESUME_FITMENT_CHECK_ERROR]:{currentStep:2,icon:FileTextTwoTone$1,title:"Select which Resume to share for this job application",totalSteps:2},[APPLICATION_STATUS$1.RESUME_CHOICE_SELECT]:{currentStep:2,icon:FileTextTwoTone$1,title:"Select which Resume to share for this job application",totalSteps:2},[APPLICATION_STATUS$1.SUCCESSFULLY_APPLIED]:{currentStep:2,icon:FileTextTwoTone$1,title:"Select which Resume to share for this job application",totalSteps:2}};function FormHeader({onClose:C}){const{stepName:$,jobProfileId:V}=useApplicationFormContext(),{analytics:F}=useJobPreview(),{updateTab:K}=useJobQueryParams({syncToURL:!0,syncFromURL:!1}),{refetch:J}=useGetJobPreviewQuery(V,{skip:!V});if(!STEP_MAP[$])return null;const{currentStep:ee,icon:te,title:ne,totalSteps:re}=STEP_MAP[$]||{},ae=()=>{F==null||F.click("Application Form - Close",PRODUCT_NAME),$===APPLICATION_STATUS$1.SUCCESSFULLY_APPLIED&&(jobsServiceUtil.invalidateTags(["PipelineJobs","RelevantJobs","Jobs"]),K(TAG_TO_TAB_MAPPING.applied),J()),C==null||C()};return React.createElement(Flex$1,{justify:"space-between"},React.createElement(Space$1,{className:styles$n.container,direction:"vertical"},React.createElement(Text$4,{className:styles$n.stepText},"Step ",ee,"/",re),React.createElement(Space$1,{className:styles$n.titleContainer},React.createElement(te,{className:styles$n.titleIcon}),React.createElement(Text$4,{className:styles$n.titleText},ne))),React.createElement(Button$2,{icon:React.createElement(CloseOutlined$1,null),type:"text",onClick:ae}))}function commonjsRequire(C){throw new Error('Could not dynamically require "'+C+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}var pdf={exports:{}};const __viteBrowserExternal={},__viteBrowserExternal$1=Object.freeze(Object.defineProperty({__proto__:null,default:__viteBrowserExternal},Symbol.toStringTag,{value:"Module"})),require$$5=getAugmentedNamespace(__viteBrowserExternal$1);(function(module,exports){(function($,V){module.exports=V()})(commonjsGlobal,function(){return(()=>{var __webpack_modules__=[,(C,$,V)=>{function F(Le){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?F=function(Pe){return typeof Pe}:F=function(Pe){return Pe&&typeof Symbol=="function"&&Pe.constructor===Symbol&&Pe!==Symbol.prototype?"symbol":typeof Pe},F(Le)}Object.defineProperty($,"__esModule",{value:!0}),$.StatTimer=$.RenderingCancelledException=$.PixelsPerInch=$.PageViewport=$.PDFDateString=$.LinkTarget=$.DOMStandardFontDataFactory=$.DOMSVGFactory=$.DOMCanvasFactory=$.DOMCMapReaderFactory=void 0,$.addLinkAttributes=De,$.deprecated=Xe,$.getFilenameFromUrl=Ae,$.getPdfFilenameFromUrl=ke,$.getXfaPageViewport=Ue,$.isDataScheme=Oe,$.isPdfFile=Te,$.isValidFetchUrl=ze,$.loadScript=Ve;var K=te(V(2)),J=V(4),ee=V(135);function te(Le){return Le&&Le.__esModule?Le:{default:Le}}function ne(Le,we){var Pe=typeof Symbol!="undefined"&&Le[Symbol.iterator]||Le["@@iterator"];if(!Pe){if(Array.isArray(Le)||(Pe=re(Le))||we&&Le&&typeof Le.length=="number"){Pe&&(Le=Pe);var Me=0,He=function(){};return{s:He,n:function(){return Me>=Le.length?{done:!0}:{done:!1,value:Le[Me++]}},e:function(it){throw it},f:He}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
|
|
434
|
+
You must add the middleware for RTK-Query to function correctly!`);Ae=!!ke}var je=!Ae&&Fe.current;return ae(function(){Fe.current=Ae}),ae(function(){je&&(Ne.current=void 0)},[je]),ae(function(){var ze,Ve=Ne.current;if(typeof process!="undefined"&&process.env.NODE_ENV==="removeMeOnCompilation"&&console.log(je),$e===skipToken){Ve==null||Ve.unsubscribe(),Ne.current=void 0;return}var Xe=(ze=Ne.current)==null?void 0:ze.subscriptionOptions;if(!Ve||Ve.arg!==$e){Ve==null||Ve.unsubscribe();var Ye=xe(Ce($e,{subscriptionOptions:Ie,forceRefetch:_e}));Ne.current=Ye}else Ie!==Xe&&Ve.updateSubscriptionOptions(Ie)},[xe,Ce,_e,$e,Ie,je]),React.useEffect(function(){return function(){var ze;(ze=Ne.current)==null||ze.unsubscribe(),Ne.current=void 0}},[]),React.useMemo(function(){return{refetch:function(){var ze;if(!Ne.current)throw new Error("Cannot refetch a query that has not been started yet.");return(ze=Ne.current)==null?void 0:ze.refetch()}}},[])},ve=function(ge){var pe=ge===void 0?{}:ge,de=pe.refetchOnReconnect,me=pe.refetchOnFocus,ye=pe.pollingInterval,_e=ye===void 0?0:ye,he=$.endpoints[ue].initiate,be=K(),Se=React.useState(UNINITIALIZED_VALUE),Re=Se[0],Ce=Se[1],xe=React.useRef(),$e=useShallowStableValue({refetchOnReconnect:de,refetchOnFocus:me,pollingInterval:_e});ae(function(){var Ne,De,Oe=(Ne=xe.current)==null?void 0:Ne.subscriptionOptions;$e!==Oe&&((De=xe.current)==null||De.updateSubscriptionOptions($e))},[$e]);var Ie=React.useRef($e);ae(function(){Ie.current=$e},[$e]);var Fe=React.useCallback(function(Ne,De){De===void 0&&(De=!1);var Oe;return F(function(){var Te;(Te=xe.current)==null||Te.unsubscribe(),xe.current=Oe=be(he(Ne,{subscriptionOptions:Ie.current,forceRefetch:!De})),Ce(Ne)}),Oe},[be,he]);return React.useEffect(function(){return function(){var Ne;(Ne=xe==null?void 0:xe.current)==null||Ne.unsubscribe()}},[]),React.useEffect(function(){Re!==UNINITIALIZED_VALUE&&!xe.current&&Fe(Re,!0)},[Re,Fe]),React.useMemo(function(){return[Fe,Re]},[Fe,Re])},fe=function(ge,pe){var de=pe===void 0?{}:pe,me=de.skip,ye=me===void 0?!1:me,_e=de.selectFromResult,he=$.endpoints[ue].select,be=useStableQueryArgs(ye?skipToken:ge,ne,re.endpointDefinitions[ue],ue),Se=React.useRef(),Re=React.useMemo(function(){return toolkit.createSelector([he(be),function(Fe,Ne){return Ne},function(Fe){return be}],oe)},[he,be]),Ce=React.useMemo(function(){return _e?toolkit.createSelector([Re],_e):Re},[Re,_e]),xe=J(function(Fe){return Ce(Fe,Se.current)},reactRedux.shallowEqual),$e=ee(),Ie=Re($e.getState(),Se.current);return useIsomorphicLayoutEffect(function(){Se.current=Ie},[Ie]),xe};return{useQueryState:fe,useQuerySubscription:le,useLazyQuerySubscription:ve,useLazyQuery:function(ge){var pe=ve(ge),de=pe[0],me=pe[1],ye=fe(me,__spreadProps(__spreadValues({},ge),{skip:me===UNINITIALIZED_VALUE})),_e=React.useMemo(function(){return{lastArg:me}},[me]);return React.useMemo(function(){return[de,ye,_e]},[de,ye,_e])},useQuery:function(ge,pe){var de=le(ge,pe),me=fe(ge,__spreadValues({selectFromResult:ge===skipToken||pe!=null&&pe.skip?void 0:noPendingQueryStateSelector},pe)),ye=me.data,_e=me.status,he=me.isLoading,be=me.isSuccess,Se=me.isError,Re=me.error;return React.useDebugValue({data:ye,status:_e,isLoading:he,isSuccess:be,isError:Se,error:Re}),React.useMemo(function(){return __spreadValues(__spreadValues({},me),de)},[me,de])}}}function ce(ue){return function(le){var ve=le===void 0?{}:le,fe=ve.selectFromResult,ge=fe===void 0?defaultMutationStateSelector:fe,pe=ve.fixedCacheKey,de=$.endpoints[ue],me=de.select,ye=de.initiate,_e=K(),he=React.useState(),be=he[0],Se=he[1];React.useEffect(function(){return function(){be!=null&&be.arg.fixedCacheKey||be==null||be.reset()}},[be]);var Re=React.useCallback(function(Ve){var Xe=_e(ye(Ve,{fixedCacheKey:pe}));return Se(Xe),Xe},[_e,ye,pe]),Ce=(be||{}).requestId,xe=React.useMemo(function(){return toolkit.createSelector([me({fixedCacheKey:pe,requestId:be==null?void 0:be.requestId})],ge)},[me,be,ge,pe]),$e=J(xe,reactRedux.shallowEqual),Ie=pe==null?be==null?void 0:be.arg.originalArgs:void 0,Fe=React.useCallback(function(){F(function(){be&&Se(void 0),pe&&_e($.internalActions.removeMutationResult({requestId:Ce,fixedCacheKey:pe}))})},[_e,pe,be,Ce]),Ne=$e.endpointName,De=$e.data,Oe=$e.status,Te=$e.isLoading,Ae=$e.isSuccess,ke=$e.isError,je=$e.error;React.useDebugValue({endpointName:Ne,data:De,status:Oe,isLoading:Te,isSuccess:Ae,isError:ke,error:je});var ze=React.useMemo(function(){return __spreadProps(__spreadValues({},$e),{originalArgs:Ie,reset:Fe})},[$e,Ie,Fe]);return React.useMemo(function(){return[Re,ze]},[Re,ze])}}}var DefinitionType;(function(C){C.query="query",C.mutation="mutation"})(DefinitionType||(DefinitionType={}));function isQueryDefinition(C){return C.type===DefinitionType.query}function isMutationDefinition(C){return C.type===DefinitionType.mutation}function capitalize$1(C){return C.replace(C[0],C[0].toUpperCase())}function safeAssign(C){for(var $=[],V=1;V<arguments.length;V++)$[V-1]=arguments[V];Object.assign.apply(Object,__spreadArray$1([C],$))}var reactHooksModuleName=Symbol(),reactHooksModule=function(C){var $=C===void 0?{}:C,V=$.batch,F=V===void 0?reactRedux.batch:V,K=$.useDispatch,J=K===void 0?reactRedux.useDispatch:K,ee=$.useSelector,te=ee===void 0?reactRedux.useSelector:ee,ne=$.useStore,re=ne===void 0?reactRedux.useStore:ne,ae=$.unstable__sideEffectsInRender,oe=ae===void 0?!1:ae;return{name:reactHooksModuleName,init:function(ie,se,ce){var ue=se.serializeQueryArgs,le=ie,ve=buildHooks({api:ie,moduleOptions:{batch:F,useDispatch:J,useSelector:te,useStore:re,unstable__sideEffectsInRender:oe},serializeQueryArgs:ue,context:ce}),fe=ve.buildQueryHooks,ge=ve.buildMutationHook,pe=ve.usePrefetch;return safeAssign(le,{usePrefetch:pe}),safeAssign(ce,{batch:F}),{injectEndpoint:function(de,me){if(isQueryDefinition(me)){var ye=fe(de),_e=ye.useQuery,he=ye.useLazyQuery,be=ye.useLazyQuerySubscription,Se=ye.useQueryState,Re=ye.useQuerySubscription;safeAssign(le.endpoints[de],{useQuery:_e,useLazyQuery:he,useLazyQuerySubscription:be,useQueryState:Se,useQuerySubscription:Re}),ie["use"+capitalize$1(de)+"Query"]=_e,ie["useLazy"+capitalize$1(de)+"Query"]=he}else if(isMutationDefinition(me)){var Ce=ge(de);safeAssign(le.endpoints[de],{useMutation:Ce}),ie["use"+capitalize$1(de)+"Mutation"]=Ce}}}}}},createApi=buildCreateApi(coreModule(),reactHooksModule());let baseUrl="http://localhost:8000";const dynamicBaseQuery=(C,$,V)=>tr(this,null,function*(){return fetchBaseQuery({baseUrl,prepareHeaders:K=>{if(K.set("Content-Type","application/json"),typeof window!="undefined"){const J=document.querySelector('meta[name="csrf-token"]');J&&K.set("X-CSRF-Token",J.content)}return K}})(C,$,V)}),careerHubApi=createApi({reducerPath:"careerHubApi",baseQuery:dynamicBaseQuery,tagTypes:["CareerHub","Jobs","PipelineJobs","RelevantJobs","FilterOptions","JobPreview","JobAlerts"],endpoints:()=>({})}),setBaseUrl=C=>{C!==baseUrl&&(baseUrl=C)},BASE_URL="/api/v3/careers-hub/applications",createApplicationService=careerHubApi.injectEndpoints({endpoints:C=>({createApplication:C.mutation({query:({jobProfileId:$,utmMedium:V,utmSource:F,currentTab:K,utmId:J})=>({url:BASE_URL,method:"POST",body:{job_profile_id:$,medium:V!=null?V:"ch",origin:F!=null?F:"direct",tab_name:K,action_type:J!=null?J:"apply"}}),invalidatesTags:["Jobs","PipelineJobs","RelevantJobs"]}),getApplication:C.query({query:({applicationId:$,jobProfileId:V,status:F})=>({url:`${BASE_URL}/${$}`,params:{job_profile_id:V,step_name:F}})}),updateApplication:C.mutation({query:({applicationId:$,payload:V})=>({url:`${BASE_URL}/${$}`,method:"PATCH",body:V}),invalidatesTags:["Jobs","PipelineJobs","RelevantJobs"]})})}),{useCreateApplicationMutation,useGetApplicationQuery,useUpdateApplicationMutation}=createApplicationService,useCreateApplication=({jobProfileId:C,utmMedium:$,utmSource:V,currentTab:F,utmId:K})=>{const[J,ee]=React.useState(null),[te,ne]=React.useState(null),[re,{isLoading:ae,isError:oe,error:ie,isSuccess:se}]=useCreateApplicationMutation(),ce=React.useCallback(()=>tr(this,null,function*(){var ue,le,ve,fe;try{const ge=yield re({jobProfileId:C,utmMedium:$,utmSource:V,currentTab:F,utmId:K});ee((le=(ue=ge==null?void 0:ge.data)==null?void 0:ue.user_company)==null?void 0:le.id),ne((fe=(ve=ge==null?void 0:ge.data)==null?void 0:ve.user_company)==null?void 0:fe.status)}catch(ge){ee(null),ne(null)}}),[re,C,$,V,F,K]);return React.useEffect(()=>{ce()},[ce]),{retry:ce,data:{status:te,applicationId:J},isLoading:ae,isError:oe,error:ie,isSuccess:se}},useApplicationForm=({jobProfileId:C,applicationId:$,status:V})=>{var re;const{data:F,isLoading:K,isError:J,error:ee,isSuccess:te,refetch:ne}=useGetApplicationQuery({applicationId:$,jobProfileId:C,status:V},{skip:!$||!V});return{retry:ne,data:(re=F==null?void 0:F.details)==null?void 0:re.data,isLoading:K,isError:J,error:ee,isSuccess:te}};function convertArraySingletonsToObject(C){return C.map($=>({label:$,value:$}))}const JOB_CARD_CONFIG={home:{isExperienceCtcAvailable:!0,isNoticePeriodAvailable:!0,isAppliedDateAvailable:!1,isArchivedStatusAvailable:!1,isApplicationStatusAvailable:!1},all:{isExperienceCtcAvailable:!0,isNoticePeriodAvailable:!0,isAppliedDateAvailable:!1,isArchivedStatusAvailable:!1,isApplicationStatusAvailable:!1},eligible:{isExperienceCtcAvailable:!0,isNoticePeriodAvailable:!0,isAppliedDateAvailable:!1,isArchivedStatusAvailable:!1,isApplicationStatusAvailable:!1},saved:{isExperienceCtcAvailable:!0,isNoticePeriodAvailable:!0,isAppliedDateAvailable:!1,isArchivedStatusAvailable:!1,isApplicationStatusAvailable:!1},applications:{isExperienceCtcAvailable:!0,isNoticePeriodAvailable:!0,isAppliedDateAvailable:!0,isArchivedStatusAvailable:!0,isApplicationStatusAvailable:!0},archived:{isExperienceCtcAvailable:!0,isNoticePeriodAvailable:!0,isAppliedDateAvailable:!1,isArchivedStatusAvailable:!0,isApplicationStatusAvailable:!1}},APPLICATION_STATUS={NOT_APPLIED:"Not Applied",SAVED:"Saved",APPLIED:"Applied",IN_PIPELINE:"In Pipeline",ARCHIVED:"Archived"},JOB_PROFILE_STATUS={ACTIVE:"active",PAUSED:"paused",INACTIVE:"inactive"},TABS={HOME:"home",ALL:"all",ELIGIBLE:"eligible",SAVED:"saved",APPLICATIONS:"applications",ARCHIVED:"archived"},WITHDRAW_REASONS=convertArraySingletonsToObject(["Got another offer","Company didn't match expectations","Need more prep time","Applied by mistake","Other"]),useJobCardState=({currentTab:C,isActive:$,jobData:V})=>{const F=React.useMemo(()=>JOB_CARD_CONFIG[C]||JOB_CARD_CONFIG.all,[C]),K=React.useMemo(()=>!0,[]),J=React.useMemo(()=>V.expiry?new Date(V.expiry)<new Date||V.jobProfileStatus!=="active":!1,[V.expiry,V.jobProfileStatus]);return{cardConfig:F,shouldShowBody:K,isExpired:J}},useJobFilters=()=>{const C=reactRedux.useSelector(V=>{var F;return((F=V.scalantCareerHub)==null?void 0:F.filter)||{}});return React.useMemo(()=>{const{filters:V,per_page:F,tab:K,page_number:J,sortings:ee,skip_expired_jobs:te}=C;return{per_page:F,tab:K,filters:V||{keyword:""},sortings:ee,page_number:J,skip_expired_jobs:te}},[C])},useInfiniteScroll=({hasMore:C=!0,isLoading:$=!1,isFetchingMore:V=!1,rootMargin:F="100px",threshold:K=.1}={})=>{const J=reactRedux.useDispatch(),ee=reactRedux.useSelector(oe=>{var ie,se;return((se=(ie=oe.scalantCareerHub)==null?void 0:ie.filter)==null?void 0:se.page_number)||1}),te=React.useRef(null),ne=React.useRef(null),re=React.useCallback(()=>{!$&&!V&&C&&J(setPageNumber(ee+1))},[J,ee,$,V,C]);return React.useEffect(()=>{const oe=te.current;if(ne.current&&(oe&&ne.current.unobserve(oe),ne.current=null),!oe||!C||$||V)return;const ie=new IntersectionObserver(se=>{const[ce]=se;ce.isIntersecting&&re()},{root:null,rootMargin:F,threshold:K});return ie.observe(oe),ne.current=ie,()=>{ne.current&&oe&&(ne.current.unobserve(oe),ne.current=null)}},[re,C,$,V,F,K]),{sentinelRef:React.useCallback(oe=>{if(te.current&&ne.current&&(ne.current.unobserve(te.current),ne.current=null),te.current=oe,oe&&C&&!$&&!V){const ie=new IntersectionObserver(se=>{const[ce]=se;ce.isIntersecting&&re()},{root:null,rootMargin:F,threshold:K});ie.observe(oe),ne.current=ie}},[re,C,$,V,F,K])}},getCurrentSortingValue=(C=[])=>{if(!C||C.length===0)return"eligibility";const $=C[0];for(const V of Object.values(SORTING_OPTIONS))if(V.mapping.property===$.property&&V.mapping.direction===$.direction)return V.value;return"eligibility"},accumulateJobs=(C=[],$=[])=>{if(!$||$.length===0)return C;const V=new Set(C.map(K=>K.id)),F=$.filter(K=>!V.has(K.id));return[...C,...F]},accumulateCompaniesMap=(C={},$={})=>zn(zn({},C),$),useAccumulatedJobs=(C,$=!1,V=!1,F=null)=>{const K=reactRedux.useSelector(le=>{var ve,fe;return((fe=(ve=le.scalantCareerHub)==null?void 0:ve.filter)==null?void 0:fe.page_number)||1}),J=reactRedux.useSelector(le=>{var ve,fe;return((fe=(ve=le.scalantCareerHub)==null?void 0:ve.dashboard)==null?void 0:fe.processCounts)||{}}),[ee,te]=React.useState([]),[ne,re]=React.useState({}),ae=React.useMemo(()=>(C==null?void 0:C.jobs)||(C==null?void 0:C.results)||[],[C==null?void 0:C.jobs,C==null?void 0:C.results]),oe=React.useMemo(()=>(C==null?void 0:C.companiesMap)||{},[C==null?void 0:C.companiesMap]),ie=React.useMemo(()=>F||null,[F]),se=React.useMemo(()=>typeof(C==null?void 0:C.totalEntries)=="number"?C.totalEntries:ie?J[ie]||0:null,[ie,J,C==null?void 0:C.totalEntries]);React.useEffect(()=>{te([]),re({})},[F]),React.useEffect(()=>{K===1?(te(ae),re(oe)):ae.length>0&&(te(le=>accumulateJobs(le,ae)),re(le=>accumulateCompaniesMap(le,oe)))},[ae,oe,K]);const ce=React.useMemo(()=>se===null?ae.length>0:ee.length<se,[se,ee.length,ae.length]),ue=$&&K>1;return{accumulatedJobs:ee,accumulatedCompaniesMap:ne,hasMore:ce,isFetchingMore:ue,isLoading:(V||$)&&K===1}},filterService=careerHubApi.injectEndpoints({endpoints:C=>({getCompanies:C.query({query:$=>({url:"/job-tracker/filters/",params:{query_type:"companies",q:$}}),transformResponse:$=>($.data||[]).map(F=>({id:F.id,value:F.attributes.name})),providesTags:["FilterOptions"]}),getTitles:C.query({query:$=>({url:"/job-tracker/filters/",params:{query_type:"title",q:$}}),transformResponse:$=>{const V=($.data||[]).map(K=>({id:K.id,value:K.attributes.title||K.attributes.name}));let F={};return V.forEach(K=>{F[K.value]=K.value}),Object.keys(F).map(K=>({key:K,value:F[K]}))},providesTags:["FilterOptions"]}),getExperienceSkills:C.query({query:$=>({url:"/user/skills/all",params:{prefix_q:$}}),transformResponse:$=>($.all_skills||[]).map(F=>({skill_id:F.skill_id,key:F.key,skill_type:F.skill_type})).filter(F=>F.key&&F.skill_id&&F.skill_type).map(F=>({key:F.skill_id,value:F.key,type:F.skill_type})),providesTags:["FilterOptions"]})})}),{useGetCompaniesQuery,useGetTitlesQuery,useGetExperienceSkillsQuery}=filterService,convertToSelectOption=(C,$,V=$)=>!C||!Array.isArray(C)?[]:C.map(F=>({key:F[$],value:F[V]})),minCtcOptions=new Array(5).fill(1).map((C,$)=>({value:(C+$)*5,label:`>= ${(C+$)*5} Lakhs`})),minCtcUSOptions=[{value:20,label:">= 20K"},{value:30,label:">= 30K"},{value:50,label:">= 50K"},{value:75,label:">= 75K"},{value:100,label:">= 100K"}],mockInterviewSkillOptions=[{value:0,label:"Must to Have"},{value:1,label:"Good to Have"},{value:2,label:"Bar Raiser"},{value:3,label:"Must to Have (Eligibility)"}],datePostedOnOptions=[{value:1,label:"Last 24 hours"},{value:3,label:"Last 3 days"},{value:7,label:"Last 7 days"},{value:30,label:"Last 30 days"}],seniorityLevelOptions=[{value:202948,label:"Fresher"},{value:202949,label:"Entry - Mid"},{value:202950,label:"Mid - Senior"},{value:202951,label:"Senior"}],stipendOptions=[{value:1e4,label:">= 10K"},{value:2e4,label:">= 20K"},{value:3e4,label:">= 30K"},{value:4e4,label:">= 40K"},{value:5e4,label:">= 50K"},{value:6e4,label:">= 60K"}],internshipDurationOptions=[{value:3,label:">= 3 months"},{value:6,label:">= 6 months"},{value:9,label:">= 9 months"},{value:12,label:">= 12 months"}],jobTypeOptions=[{value:"Full time roles",key:"full_time"},{value:"Internship roles",key:"internship"}],MONTH_OPTIONS$1=new Array(3).fill(1).map((C,$)=>({value:((C+$+1)*30).toString(),label:`greater than ${C+$+1} Months`})),NOTICE_PERIOD_OPTIONS$1=[{value:"not filled",label:"Not Available"},{value:"0",label:"0 Days"},{value:"15",label:"greater than 15 Days"},{value:"30",label:"greater than 30 Days"},{value:"45",label:"greater than 45 Days"},...MONTH_OPTIONS$1],getMinCtcOptions=C=>C?minCtcUSOptions:minCtcOptions,getProficiencyOptions=C=>C?Object.entries(C).map(([$,V])=>({value:V,label:$})):mockInterviewSkillOptions,getMeritBasedSkillOptions=C=>!C||!Array.isArray(C)?[]:C.map($=>({value:$.id,label:$.title})),getExperienceSkillOptions=C=>!C||!Array.isArray(C)?[]:C.map($=>({value:$.subtopic_id,label:$.subtopic,type:$.eligible_class||"SubTopic"})),filterOptions={minCtcOptions,minCtcUSOptions,getMinCtcOptions,mockInterviewSkillOptions,datePostedOnOptions,seniorityLevelOptions,stipendOptions,internshipDurationOptions,jobTypeOptions,NOTICE_PERIOD_OPTIONS:NOTICE_PERIOD_OPTIONS$1,convertToSelectOption,getProficiencyOptions,getMeritBasedSkillOptions,getExperienceSkillOptions},initialState$7={companyOptions:[],titleOptions:[],experienceSkillOptions:[]},filterOptionsSlice=toolkit.createSlice({name:"filterOptions",initialState:initialState$7,reducers:{setCompanyOptions:(C,$)=>{C.companyOptions=convertToSelectOption($.payload,"id","value")},setTitleOptions:(C,$)=>{C.titleOptions=$.payload},setExperienceSkillOptions:(C,$)=>{C.experienceSkillOptions=$.payload},clearCompanyOptions:C=>{C.companyOptions=[]},clearTitleOptions:C=>{C.titleOptions=[]},clearExperienceSkillOptions:()=>{},clearAllOptions:C=>{C.companyOptions=[],C.titleOptions=[],C.experienceSkillOptions=[]}},extraReducers:C=>{C.addMatcher(filterService.endpoints.getCompanies.matchFulfilled,($,V)=>{$.companyOptions=convertToSelectOption(V.payload,"id","value")}),C.addMatcher(filterService.endpoints.getTitles.matchFulfilled,($,V)=>{$.titleOptions=V.payload}),C.addMatcher(filterService.endpoints.getExperienceSkills.matchFulfilled,($,V)=>{const F=V.payload||[],K=$.experienceSkillOptions||[],J=new Map(K.map(ee=>[ee.key,ee]));F.forEach(ee=>{J.set(ee.key,ee)}),$.experienceSkillOptions=Array.from(J.values())})}}),{setCompanyOptions,setTitleOptions,setExperienceSkillOptions,clearCompanyOptions,clearTitleOptions,clearExperienceSkillOptions,clearAllOptions}=filterOptionsSlice.actions,filterOptionsReducer=filterOptionsSlice.reducer,useDebounce=(C,$)=>{const V=React.useRef(null);return React.useCallback((...F)=>{V.current&&clearTimeout(V.current),V.current=setTimeout(()=>{C(...F)},$)},[C,$])},useAsyncFilterOptions=()=>{const C=reactRedux.useDispatch(),[$,V]=React.useState(""),[F,K]=React.useState(""),[J,ee]=React.useState(""),{isLoading:te,isFetching:ne}=useGetCompaniesQuery($,{skip:!$||$.length<3}),{isLoading:re,isFetching:ae}=useGetTitlesQuery(F,{skip:!F||F.length<3}),{isLoading:oe,isFetching:ie}=useGetExperienceSkillsQuery(J,{skip:!J||J.length<2});React.useEffect(()=>{(!$||$.length<3)&&C(clearCompanyOptions())},[$,C]),React.useEffect(()=>{(!F||F.length<3)&&C(clearTitleOptions())},[F,C]),React.useEffect(()=>{(!J||J.length<2)&&C(clearExperienceSkillOptions())},[J,C]);const se=React.useCallback(pe=>{V(pe)},[]),ce=useDebounce(se,300),ue=React.useCallback(pe=>{K(pe)},[]),le=useDebounce(ue,300),ve=React.useCallback(pe=>{ee(pe)},[]),fe=useDebounce(ve,300),ge=React.useCallback((pe,de)=>pe.map(me=>{const ye=de==null?void 0:de.find(_e=>_e.key===me);return{experience_skill_id:me,skill_type:(ye==null?void 0:ye.type)||"SubTopic"}}),[]);return{handleCompanySearch:ce,handleTitleSearch:le,handleExperienceSkillSearch:fe,handleExperienceSkillChange:ge,loadingCompanies:te||ne,loadingTitles:re||ae,loadingExperienceSkills:oe||ie}},useFilterMetaOptions=()=>{const C=reactRedux.useSelector(se=>{var ce;return((ce=se.scalantCareerHub.metaData)==null?void 0:ce.meta)||{}}),$=React.useMemo(()=>filterOptions.jobTypeOptions,[]),V=React.useMemo(()=>convertToSelectOption(C.jobCategories||[],"value","label"),[C.jobCategories]),F=React.useMemo(()=>convertToSelectOption(C.seniorityLevels||[],"value","label"),[C.seniorityLevels]),K=React.useMemo(()=>convertToSelectOption(C.companyCategories||[],"value","label"),[C.companyCategories]),J=React.useMemo(()=>convertToSelectOption(C.jobLocations||[],"label"),[C.jobLocations]),ee=React.useMemo(()=>convertToSelectOption(C.meritBasedSkills||[],"id","title"),[C.meritBasedSkills]),te=React.useMemo(()=>filterOptions.getMinCtcOptions(!1),[]),ne=React.useMemo(()=>filterOptions.stipendOptions,[]),re=React.useMemo(()=>filterOptions.internshipDurationOptions,[]),ae=React.useMemo(()=>filterOptions.NOTICE_PERIOD_OPTIONS,[]),oe=React.useMemo(()=>filterOptions.datePostedOnOptions,[]),ie=React.useMemo(()=>filterOptions.mockInterviewSkillOptions,[]);return{jobTypes:$,functions:V,seniorityLevels:F,companyCategories:K,locations:J,mbeSkills:ee,ctcRanges:te,stipendRanges:ne,durationRanges:re,noticePeriods:ae,datePostedOptions:oe,skillRatings:ie}},initialState$6={selectedJobId:null},layoutSlice=toolkit.createSlice({name:"layout",initialState:initialState$6,reducers:{setSelectedJobId:(C,$)=>{C.selectedJobId=$.payload},clearSelectedJobId:C=>{C.selectedJobId=null}}}),{setSelectedJobId,clearSelectedJobId}=layoutSlice.actions,layoutReducer=layoutSlice.reducer,serializeFiltersToQueryParams=C=>{const $=new URLSearchParams;return!C||typeof C!="object"||Object.keys(C).forEach(V=>{const F=C[V];if(!(F==null||F===""))if(Array.isArray(F))F.length>0&&$.append(V,F.join(","));else if(typeof F=="object")try{$.append(V,JSON.stringify(F))}catch(K){}else $.append(V,String(F))}),$},deserializeQueryParamsToFilters=C=>{const $={};return(typeof C=="string"?new URLSearchParams(C):C).forEach((F,K)=>{try{const J=JSON.parse(F);if(typeof J=="object"){$[K]=J;return}}catch(J){}if(F.includes(","))$[K]=F.split(",").filter(J=>J.trim()!=="");else if(!isNaN(F)&&F!==""){const J=Number(F);isNaN(J)?$[K]=F:$[K]=J}else $[K]=F}),$},updateURLWithFilters=C=>{if(typeof window=="undefined")return;const $=serializeFiltersToQueryParams(C),V=$.toString()?`${window.location.pathname}?${$.toString()}`:window.location.pathname;window.history.replaceState({},"",V)},getFiltersFromURL=()=>typeof window=="undefined"?{}:deserializeQueryParamsToFilters(window.location.search),updateURLWithJobId=C=>{if(typeof window=="undefined")return;const $=new URLSearchParams(window.location.search);C?$.set("job_ids",String(C)):$.delete("job_ids");const V=$.toString()?`${window.location.pathname}?${$.toString()}`:window.location.pathname;window.history.replaceState({},"",V)},getJobIdFromURL=()=>typeof window=="undefined"?null:new URLSearchParams(window.location.search).get("job_ids")||null,updateURLWithTab=C=>{if(typeof window=="undefined")return;const $=new URLSearchParams(window.location.search);C?$.set("tab",String(C)):$.delete("tab");const V=$.toString()?`${window.location.pathname}?${$.toString()}`:window.location.pathname;window.history.replaceState({},"",V)},getTabFromURL=()=>typeof window=="undefined"?null:new URLSearchParams(window.location.search).get("tab")||null;function useJobQueryParams({syncToURL:C=!0,syncFromURL:$=!0}={}){const V=reactRedux.useDispatch(),F=reactRedux.useSelector(ae=>ae.scalantCareerHub.layout.selectedJobId),K=reactRedux.useSelector(ae=>{var oe,ie;return((ie=(oe=ae.scalantCareerHub)==null?void 0:oe.filter)==null?void 0:ie.tab)||TAG_TO_TAB_MAPPING.relevant}),J=React.useRef(!1),ee=React.useRef(!1);React.useEffect(()=>{if(!$||J.current)return;ee.current=!0;const ae=getTabFromURL(),oe=getJobIdFromURL();if(ae&&Object.values(TAG_TO_TAB_MAPPING).includes(ae)&&V(setTab(ae)),oe){const ie=Number(oe);isNaN(ie)||V(setSelectedJobId(ie))}J.current=!0,ee.current=!1},[V,$]),React.useEffect(()=>{!C||ee.current||!J.current||updateURLWithTab(K)},[K,C]),React.useEffect(()=>{!C||ee.current||!J.current||updateURLWithJobId(F||null)},[F,C]);const te=ae=>{ae?V(setSelectedJobId(ae)):(V(clearSelectedJobId()),V(updateFormFilters({job_ids:null}))),C&&updateURLWithJobId(ae)},ne=ae=>{Object.values(TAG_TO_TAB_MAPPING).includes(ae)&&(V(setTab(ae)),C&&updateURLWithTab(ae))};return{currentTab:K,selectedJobId:F,updateJobId:te,updateTab:ne,updateTabAndJobId:(ae,oe)=>{ne(ae),te(oe)}}}const PRODUCT_NAME="Jobs Page V2",container$b="_container_lsttj_1",tag$2="_tag_lsttj_6",styles$L={container:container$b,tag:tag$2};function FilterTags({analytics:C}){const $=reactRedux.useDispatch(),{selectedJobId:V,updateJobId:F}=useJobQueryParams({syncFromURL:!1}),K=()=>{C==null||C.click("Filter Tags - Remove Job Filter",PRODUCT_NAME),F(null),$(updateFormFilters({job_ids:null}))};return V?React.createElement(Flex$1,{className:styles$L.container},React.createElement(Typography$1.Text,{className:styles$L.title},"Job Selected:"),React.createElement(Tag$1,{color:"blue",className:styles$L.tag,onClick:K},`ID#${V}`,React.createElement(CloseOutlined$1,{className:styles$L.closeIcon}))):React.createElement("div",{className:styles$L.container})}const content="_content_1lda0_1",header$2="_header_1lda0_10",sider="_sider_1lda0_18",layout="_layout_1lda0_23",styles$K={content,header:header$2,sider,layout},{Header,Sider,Content}=Layout$1;function JobsLayout({analytics:C,header:$,children:V,className:F,sider:K,siderWidth:J}){var re;const ee=React.useRef(null),[te,ne]=React.useState(0);return React.useEffect(()=>{var ae;ne((ae=ee.current)==null?void 0:ae.clientHeight)},[(re=ee.current)==null?void 0:re.clientHeight]),React.createElement(Layout$1,{className:F},React.createElement(Header,{className:styles$K.header},$||"Header"),React.createElement(FilterTags,{analytics:C}),React.createElement(Layout$1,{className:styles$K.layout},React.createElement(Content,{style:{height:`${te}px`},className:styles$K.content},V),K&&React.createElement(Sider,{ref:ee,className:styles$K.sider,width:J||"25%"},K)))}JobsLayout.propTypes={analytics:PropTypes.object,children:PropTypes.node.isRequired,className:PropTypes.string,sider:PropTypes.node,siderWidth:PropTypes.oneOfType([PropTypes.string,PropTypes.number])},JobsLayout.defaultProps={className:"",sider:null,siderWidth:"25%"};const toCamelCase=C=>C&&C.replace(/_([a-z])/g,$=>$[1].toUpperCase()),toTitleCase=C=>!C||typeof C!="string"?C:C.toLowerCase().split(/[\s_]+/).map($=>$.charAt(0).toUpperCase()+$.slice(1)).join(" "),toCase=(C,$)=>{if(!$||typeof $!="string")return $;switch(C){case"camelCase":return toCamelCase($);case"titleCase":return toTitleCase($);default:return $}},toCamelCaseObject=C=>{if(C==null)return C;if(Array.isArray(C))return C.map(toCamelCaseObject);if(typeof C=="object"){const $={};return Object.keys(C).forEach(V=>{const F=toCamelCase(V);$[F]=toCamelCaseObject(C[V])}),$}return C},countPendingSteps=(C,$)=>{let V=0;return C!=null&&C.data&&Object.values(C.data).forEach(F=>{F.contests&&F.contests.cleared===!1&&(V+=1),F.skills&&F.skills.cleared===!1&&(V+=1)}),$!=null&&$.data&&Object.values($.data).forEach(F=>{F.data&&F.data.cleared===!1&&(V+=1)}),V},checkAllOtherRequirementsMet=(C,$)=>["experience","notice_period"].every(F=>{if(F===$)return!0;const K=C[F];return!K||K.isEligible}),ELIGIBILITY_TYPES={quick_apply:"quick_apply",eligible:"eligible",ineligible:"ineligible",steps_to_apply:"steps_to_apply",notice_period_mismatch:"notice_period_mismatch",expired:"expired"},NON_WITHDRAW_STATUSES=["Rejected","Offer Withdrawn","To Be Offered","Offer Accepted","Offer Declined","Joined","Offer Received","Draft"],FINAL_OFFERED_STATUSES=["Offer Received","Offer Accepted","Joined","Offer Declined","To Be Offered"],determineJobTag=(C,$)=>{const{isRelevant:V,expiry:F,jobProfileStatus:K}=toCamelCaseObject(C),{isEligible:J,reasons:ee=[]}=toCamelCaseObject($)||{};if(F&&(new Date(F)<new Date||K!=="active"))return{tag:"expired",text:"Missed",icon:"InfoCircleOutlined",color:"#FA541C",antdColor:"volcano"};const ne=ee.reduce((ce,ue)=>(ce[ue.label]=ue,ce),{}),re=ne.experience,ae=ne.notice_period,oe=ne.skills,ie=ne.tech_stacks;if(J&&V)return{tag:"quick_apply",text:"Quick Apply",icon:"CheckCircleOutlined",color:"#1A8452",antdColor:"green"};if(J)return{tag:"eligible",text:"Eligible",icon:"CheckCircleOutlined",color:"#1A8452",antdColor:"green"};if(re&&!re.isEligible)return{tag:"ineligible",text:"Ineligible",icon:"CloseCircleOutlined",color:"#a42137",antdColor:"error"};if(ae&&!ae.isEligible&&checkAllOtherRequirementsMet(ne,"notice_period"))return{tag:"notice_period_mismatch",text:"Notice Period Mismatch",icon:"CloseCircleOutlined",color:"#a42137",antdColor:"error"};const se=countPendingSteps(oe,ie);return se>0&&checkAllOtherRequirementsMet(ne,"skills")?{tag:"steps_to_apply",text:`${se} ${se===1?"step":"steps"} pending`,icon:"RocketOutlined",color:"#2F54EB",antdColor:"geekblue",count:se}:{tag:ELIGIBILITY_TYPES.ineligible,text:"Ineligible",icon:"CloseCircleOutlined",color:"#a42137",antdColor:"error"}},formatExperience$1=(C,$)=>{if(C===0&&$===0)return"Fresher";const V=Math.floor(C/12),F=Math.floor($/12);return V===F?`${V}y Experience`:F===0?"Fresher":V===0?`${F}y Experience`:`${V}y - ${F}y Experience`},formatCtc=({minCtc:C,maxCtc:$,openForDiscussionCtc:V,isInternship:F,stipend:K,userCountry:J="IN"})=>{if(F)return K?`₹${K}/month`:"Unpaid Internship";const ee=J==="US"?"$":"₹",te=J==="US"?"K":"L";if(C===null||$===null||C===void 0||$===void 0)return`${ee} (Flexible)`;let ne=`${ee}${C}${te} - ${ee}${$}${te} CTC`;return C===$&&(ne=`${ee}${C}${te} CTC`),V?`${ne} (Negotiable)`:ne},formatNoticePeriod=C=>!C||C===0?"Immediate":`${C} days Notice Period`,formatDate=C=>{if(!C)return"";const $=new Date(C),V=String($.getDate()).padStart(2,"0"),F=String($.getMonth()+1).padStart(2,"0"),K=$.getFullYear();return`${V}/${F}/${K}`},formatLocation=C=>{if(!C)return null;const $=C.split(",").map(V=>V.trim()).filter(Boolean);return $.length===0?null:$.length===1?$[0]:`${$[0]} +${$.length-1} more`};function formatProdErrorMessage(C){return"Minified Redux error #"+C+"; visit https://redux.js.org/Errors?code="+C+" for the full message or use the non-minified dev environment for full errors. "}var randomString=function(){return Math.random().toString(36).substring(7).split("").join(".")},ActionTypes={INIT:"@@redux/INIT"+randomString(),REPLACE:"@@redux/REPLACE"+randomString(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+randomString()}};function isPlainObject(C){if(typeof C!="object"||C===null)return!1;for(var $=C;Object.getPrototypeOf($)!==null;)$=Object.getPrototypeOf($);return Object.getPrototypeOf(C)===$}function miniKindOf(C){if(C===void 0)return"undefined";if(C===null)return"null";var $=typeof C;switch($){case"boolean":case"string":case"number":case"symbol":case"function":return $}if(Array.isArray(C))return"array";if(isDate(C))return"date";if(isError(C))return"error";var V=ctorName(C);switch(V){case"Symbol":case"Promise":case"WeakMap":case"WeakSet":case"Map":case"Set":return V}return $.slice(8,-1).toLowerCase().replace(/\s/g,"")}function ctorName(C){return typeof C.constructor=="function"?C.constructor.name:null}function isError(C){return C instanceof Error||typeof C.message=="string"&&C.constructor&&typeof C.constructor.stackTraceLimit=="number"}function isDate(C){return C instanceof Date?!0:typeof C.toDateString=="function"&&typeof C.getDate=="function"&&typeof C.setDate=="function"}function kindOf(C){var $=typeof C;return process.env.NODE_ENV!=="production"&&($=miniKindOf(C)),$}function warning$1(C){typeof console!="undefined"&&typeof console.error=="function"&&console.error(C);try{throw new Error(C)}catch($){}}function getUnexpectedStateShapeWarningMessage(C,$,V,F){var K=Object.keys($),J=V&&V.type===ActionTypes.INIT?"preloadedState argument passed to createStore":"previous state received by the reducer";if(K.length===0)return"Store does not have a valid reducer. Make sure the argument passed to combineReducers is an object whose values are reducers.";if(!isPlainObject(C))return"The "+J+' has unexpected type of "'+kindOf(C)+'". Expected argument to be an object with the following '+('keys: "'+K.join('", "')+'"');var ee=Object.keys(C).filter(function(te){return!$.hasOwnProperty(te)&&!F[te]});if(ee.forEach(function(te){F[te]=!0}),!(V&&V.type===ActionTypes.REPLACE)&&ee.length>0)return"Unexpected "+(ee.length>1?"keys":"key")+" "+('"'+ee.join('", "')+'" found in '+J+". ")+"Expected to find one of the known reducer keys instead: "+('"'+K.join('", "')+'". Unexpected keys will be ignored.')}function assertReducerShape(C){Object.keys(C).forEach(function($){var V=C[$],F=V(void 0,{type:ActionTypes.INIT});if(typeof F=="undefined")throw new Error(process.env.NODE_ENV==="production"?formatProdErrorMessage(12):'The slice reducer for key "'+$+`" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don't want to set a value for this reducer, you can use null instead of undefined.`);if(typeof V(void 0,{type:ActionTypes.PROBE_UNKNOWN_ACTION()})=="undefined")throw new Error(process.env.NODE_ENV==="production"?formatProdErrorMessage(13):'The slice reducer for key "'+$+'" returned undefined when probed with a random type. '+("Don't try to handle '"+ActionTypes.INIT+`' or other actions in "redux/*" `)+"namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.")})}function combineReducers(C){for(var $=Object.keys(C),V={},F=0;F<$.length;F++){var K=$[F];process.env.NODE_ENV!=="production"&&typeof C[K]=="undefined"&&warning$1('No reducer provided for key "'+K+'"'),typeof C[K]=="function"&&(V[K]=C[K])}var J=Object.keys(V),ee;process.env.NODE_ENV!=="production"&&(ee={});var te;try{assertReducerShape(V)}catch(ne){te=ne}return function(re,ae){if(re===void 0&&(re={}),te)throw te;if(process.env.NODE_ENV!=="production"){var oe=getUnexpectedStateShapeWarningMessage(re,V,ae,ee);oe&&warning$1(oe)}for(var ie=!1,se={},ce=0;ce<J.length;ce++){var ue=J[ce],le=V[ue],ve=re[ue],fe=le(ve,ae);if(typeof fe=="undefined"){var ge=ae&&ae.type;throw new Error(process.env.NODE_ENV==="production"?formatProdErrorMessage(14):"When called with an action of type "+(ge?'"'+String(ge)+'"':"(unknown type)")+', the slice reducer for key "'+ue+'" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.')}se[ue]=fe,ie=ie||fe!==ve}return ie=ie||J.length!==Object.keys(re).length,ie?se:re}}const initialState$5={processCounts:DEFAULT_PROCESS_COUNTS,userProfileData:null,filterModalOpen:!1,jobAlertModalOpen:!1},dashboardSlice=toolkit.createSlice({name:"dashboard",initialState:initialState$5,reducers:{setProcessCounts:(C,$)=>{C.processCounts=$.payload},setUserProfileData:(C,$)=>{C.userProfileData=$.payload},openFilterModal:C=>{C.filterModalOpen=!0},closeFilterModal:C=>{C.filterModalOpen=!1},openJobAlertModal:C=>{C.jobAlertModalOpen=!0},closeJobAlertModal:C=>{C.jobAlertModalOpen=!1}}}),{setProcessCounts,setUserProfileData,openFilterModal,closeFilterModal,openJobAlertModal,closeJobAlertModal}=dashboardSlice.actions,dashboardReducer=dashboardSlice.reducer,initialState$4={role_type:void 0,company_ids:[],job_title:[],job_category:[],seniority_level:[],company_categories:[],location:[],min_ctc:void 0,min_stipend:void 0,min_duration:void 0,notice_period:void 0,date_posted_on:void 0,mbe_skill_ids:{},experience_skill_ids:[],min_experience:void 0,max_experience:void 0},filterFormSlice=toolkit.createSlice({name:"filterForm",initialState:initialState$4,reducers:{updateFormField:(C,$)=>{const{field:V,value:F}=$.payload;C[V]=F},resetForm:()=>initialState$4,setFormData:(C,$)=>zn(zn({},C),$.payload),addRatingFilterInput:C=>{(!C.mbe_skill_ids||typeof C.mbe_skill_ids!="object")&&(C.mbe_skill_ids={});const $=`mbe_skill_${Date.now()}_${Math.random().toString(36).substr(2,9)}`;C.mbe_skill_ids[$]={subject:null,rating:null}},deleteRatingFilterInput:(C,$)=>{const{inputFieldKey:V}=$.payload;C.mbe_skill_ids&&C.mbe_skill_ids[V]&&delete C.mbe_skill_ids[V]},updateRatingFilterInput:(C,$)=>{const{inputFilterSubKey:V,value:F}=$.payload;(!C.mbe_skill_ids||typeof C.mbe_skill_ids!="object")&&(C.mbe_skill_ids={});const K=V.split("_").slice(-1)[0],J=V.replace(`_${K}`,"");C.mbe_skill_ids[J]||(C.mbe_skill_ids[J]={subject:null,rating:null}),K==="subject"?C.mbe_skill_ids[J].subject=F:K==="rating"&&(C.mbe_skill_ids[J].rating=F)}}}),{updateFormField,resetForm,setFormData,addRatingFilterInput,deleteRatingFilterInput,updateRatingFilterInput}=filterFormSlice.actions,filterFormReducer=filterFormSlice.reducer,company_categories=[{value:5,label:"large_enterprise"},{value:6,label:"large_startups"},{value:7,label:"early_startups"}],job_categories=[{value:56529,label:"Backend Engineer"},{value:56530,label:"FullStack Engineer"},{value:56531,label:"Frontend Engineer"},{value:56569,label:"Android Engineer"},{value:56570,label:"iOS Engineer"},{value:179985,label:"Testing Engineer"},{value:189726,label:"Data Scientist"},{value:189727,label:"Data Analyst"},{value:189728,label:"Business Analyst"},{value:202365,label:"Data Engineer"},{value:221192,label:"DevOps Engineer"}],job_locations=[{value:"Bangalore",label:"Bangalore"},{value:"Pune",label:"Pune"},{value:"Hyderabad",label:"Hyderabad"},{value:"Gurgaon",label:"Gurgaon"},{value:"Noida",label:"Noida"},{value:"Chennai",label:"Chennai"},{value:"Delhi",label:"Delhi"},{value:"Chandigarh",label:"Chandigarh"},{value:"Kolkata",label:"Kolkata"},{value:"Mumbai",label:"Mumbai"},{value:"Jaipur",label:"Jaipur"},{value:"Vadodara",label:"Vadodara"},{value:"Nagpur",label:"Nagpur"},{value:"Ahmedabad",label:"Ahmedabad"},{value:"Kochi",label:"Kochi"},{value:"Mysore",label:"Mysore"},{value:"Coimbatore",label:"Coimbatore"},{value:"Bangkok",label:"Bangkok"},{value:"Mauritius",label:"Mauritius"},{value:"Udaipur",label:"Udaipur"},{value:"Cochin",label:"Cochin"},{value:"Remote",label:"Remote"},{value:"Hubballi",label:"Hubballi"},{value:"Goa",label:"Goa"},{value:"Trivandrum",label:"Trivandrum"},{value:"Indore",label:"Indore"},{value:"London",label:"London"},{value:"Bhubaneswar",label:"Bhubaneswar"},{value:"Menlo Park",label:"Menlo Park"},{value:"Dehradun",label:"Dehradun"},{value:"Hosur",label:"Hosur"},{value:"Delaware",label:"Delaware"},{value:"Amsterdam",label:"Amsterdam"},{value:"California",label:"California"},{value:"Mohali",label:"Mohali"},{value:"New Jersey",label:"New Jersey"},{value:"Arizona",label:"Arizona"},{value:"North Carolina",label:"North Carolina"},{value:"Agra",label:"Agra"},{value:"Saudi Arabia",label:"Saudi Arabia"},{value:"Pondicherry",label:"Pondicherry"},{value:"Vizag",label:"Vizag"}],role_types=[{value:198018,label:"internship"},{value:198019,label:"full_time"}],seniority_levels=[{value:202948,label:"Fresher"},{value:202949,label:"Entry - Mid"},{value:202950,label:"Mid - Senior"},{value:202951,label:"Senior"}],proficiency_mapping={"Must to Have":0,"Good to Have":1,"Bar Raiser":2,"Must to Have (Eligibility)":3},onboarding_modal_clicked=!0,pipeline_stages=[{value:"draft",label:"Draft"},{value:"in_review",label:"In Review"},{value:"resume_sent",label:"Resume Sent"},{value:"resume_shortlisted",label:"Resume Shortlisted"},{value:"interviewing",label:"Interviewing"},{value:"to_be_offered",label:"To Be Offered"},{value:"rejected",label:"Rejected"},{value:"offer_received",label:"Offer Received"},{value:"offer_withdrawn",label:"Offer Withdrawn"},{value:"offer_accepted",label:"Offer Accepted"},{value:"offer_declined",label:"Offer Declined"},{value:"on_hold",label:"On Hold"},{value:"joined",label:"Joined"},{value:"saved",label:"Saved"},{value:"not_interested",label:"Not Interested"},{value:"application_withdrawn",label:"Application Withdrawn"},{value:"application_archived",label:"Application Archived"}],merit_based_skills=[{id:37223,title:"Databases and SQL",mentee_module_id:null},{id:37183,title:"Data Structures & Algorithms",mentee_module_id:null},{id:37184,title:"Python",mentee_module_id:null},{id:37185,title:"Java",mentee_module_id:null},{id:37186,title:"Javascript",mentee_module_id:null},{id:37187,title:"Low Level Design",mentee_module_id:3053255},{id:37188,title:"High Level Design",mentee_module_id:3053256},{id:37189,title:"Frontend (React)",mentee_module_id:3053258},{id:37190,title:"Backend (Java Spring/Springboot)",mentee_module_id:3053258},{id:37216,title:"Django",mentee_module_id:3053258},{id:37244,title:"Angular",mentee_module_id:3053258},{id:37191,title:"Python Libraries",mentee_module_id:null},{id:37192,title:"SQL",mentee_module_id:null},{id:37193,title:"Data Analytics - Tools",mentee_module_id:null},{id:37194,title:"EDA Fundamentals",mentee_module_id:null},{id:37195,title:"Supervised Learning",mentee_module_id:null},{id:37196,title:"Unsupervised Learning",mentee_module_id:null},{id:37197,title:"Computer Vision",mentee_module_id:7522793},{id:37198,title:"Natural Language Processing",mentee_module_id:7522794},{id:37194,title:"EDA Fundamentals",mentee_module_id:null},{id:37195,title:"Supervised Learning",mentee_module_id:null},{id:37196,title:"Unsupervised Learning",mentee_module_id:null},{id:37201,title:"DA tools",mentee_module_id:null},{id:37202,title:"Intermediate DSA",mentee_module_id:null},{id:37245,title:"DevOps - Data Structures & Algorithms",mentee_module_id:null},{id:37245,title:"DevOps - Data Structures & Algorithms",mentee_module_id:null},{id:37183,title:"Data Structures & Algorithms",mentee_module_id:null},{id:37223,title:"Databases and SQL",mentee_module_id:null},{id:37185,title:"Java",mentee_module_id:7532826},{id:37186,title:"Javascript",mentee_module_id:7532826},{id:37187,title:"Low Level Design",mentee_module_id:7532828},{id:37189,title:"Frontend (React)",mentee_module_id:7532828},{id:37244,title:"Angular",mentee_module_id:7532828},{id:37188,title:"High Level Design",mentee_module_id:null},{id:37192,title:"SQL",mentee_module_id:null},{id:37191,title:"Python Libraries",mentee_module_id:null},{id:37194,title:"EDA Fundamentals",mentee_module_id:null},{id:37195,title:"Supervised Learning",mentee_module_id:null},{id:37196,title:"Unsupervised Learning",mentee_module_id:7522864},{id:37184,title:"Python",mentee_module_id:5696347},{id:37185,title:"Java",mentee_module_id:5696347},{id:37186,title:"Javascript",mentee_module_id:5696347},{id:37184,title:"Python",mentee_module_id:null},{id:37185,title:"Java",mentee_module_id:null},{id:37186,title:"Javascript",mentee_module_id:null},{id:37187,title:"Low Level Design",mentee_module_id:null},{id:37186,title:"Javascript",mentee_module_id:5910715},{id:37189,title:"Frontend (React)",mentee_module_id:null},{id:37244,title:"Angular",mentee_module_id:null},{id:37224,title:"MERN",mentee_module_id:null},{id:37190,title:"Backend (Java Spring/Springboot)",mentee_module_id:null},{id:37216,title:"Django",mentee_module_id:null},{id:37224,title:"MERN",mentee_module_id:null},{id:37190,title:"Backend (Java Spring/Springboot)",mentee_module_id:null},{id:37216,title:"Django",mentee_module_id:null},{id:37224,title:"MERN",mentee_module_id:null},{id:37190,title:"Backend (Java Spring/Springboot)",mentee_module_id:null},{id:37216,title:"Django",mentee_module_id:null},{id:37224,title:"MERN",mentee_module_id:null},{id:37226,title:"Data Structures & Algorithms Advanced",mentee_module_id:7522524},{id:37190,title:"Backend (Java Spring/Springboot)",mentee_module_id:null},{id:37216,title:"Django",mentee_module_id:null},{id:37224,title:"MERN",mentee_module_id:null},{id:37184,title:"Python",mentee_module_id:null},{id:37185,title:"Java",mentee_module_id:null},{id:37186,title:"Javascript",mentee_module_id:null},{id:37187,title:"Low Level Design",mentee_module_id:null},{id:37188,title:"High Level Design",mentee_module_id:null},{id:37247,title:"Shell Scripting and CS Fundamentals",mentee_module_id:7522518},{id:37194,title:"EDA Fundamentals",mentee_module_id:null}],v1_onboarding_enabled=!0,v0_onboarding_completed=!0,initial_user_application_stage=4,is_discussion_hub_enabled=!1,resume_issues={total_issues:2},default_resume_details={id:17407,user_id:674153,name:"AswanthDefaultResume",default:!0,status:"active",meta:{social_profiles:{codechef:"",codeforces:"",geeksforgeeks:"",github:"",hackerearth:"",hackerrank:"",leetcode:"",portfolio:""},job_title:"Fullstack developer 1",interactions:{relevancy_alert_modal_displayed:!0}},modified_at:"2025-05-11T15:27:35.000Z",created_at:"2024-02-13T19:39:17.000Z",updated_at:"2025-05-11T15:27:35.000Z"},resume_builder_skills={language:[1167,1150,1148,1136,1128,1276,1270,1218,1217,1215,1213,1211,1210,1209],framework:[1206,1203,1200,1198,1197,1196,1195,1158,1157,1156,1145,1133],tools:[2431,2430,2435,1234,1231,1229,1228,1176,1175,2432,46262,58475]},skill_data=[{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1128,subtopic:"Javascript",eligible_topic_id:7591,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1133,subtopic:"Angular",eligible_topic_id:7580,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1136,subtopic:"CSS",eligible_topic_id:7586,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1145,subtopic:"Flutter",eligible_topic_id:8760,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1148,subtopic:"HTML",eligible_topic_id:7589,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1150,subtopic:"JavaScript",eligible_topic_id:7591,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1156,subtopic:"React",eligible_topic_id:7597,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1157,subtopic:"React Native",eligible_topic_id:8763,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1158,subtopic:"Redux",eligible_topic_id:8764,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:1167,subtopic:"TypeScript",eligible_topic_id:8768,eligible_class:"Topic"},{id:null,topic:"Mobile Development",topic_id:401,subtopic_id:1175,subtopic:"Android Development",eligible_topic_id:8753,eligible_class:"Topic"},{id:null,topic:"Mobile Development",topic_id:401,subtopic_id:1176,subtopic:"iOS Development",eligible_topic_id:8770,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1195,subtopic:".NET",eligible_topic_id:7579,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1196,subtopic:"Django",eligible_topic_id:7587,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1197,subtopic:"Express.js",eligible_topic_id:8758,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1198,subtopic:"Flask",eligible_topic_id:8759,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1200,subtopic:"Node.js",eligible_topic_id:7594,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1203,subtopic:"Ruby on Rails",eligible_topic_id:null,eligible_class:"Topic"},{id:null,topic:"Backend Development",topic_id:403,subtopic_id:1206,subtopic:"Spring Boot",eligible_topic_id:7600,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1209,subtopic:"C",eligible_topic_id:8755,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1210,subtopic:"Go",eligible_topic_id:8761,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1211,subtopic:"Java",eligible_topic_id:7590,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1213,subtopic:"Python",eligible_topic_id:7596,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1215,subtopic:"Ruby",eligible_topic_id:null,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1217,subtopic:"Scala",eligible_topic_id:8765,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1218,subtopic:"Swift",eligible_topic_id:8766,eligible_class:"Topic"},{id:null,topic:"DBMS",topic_id:406,subtopic_id:1228,subtopic:"MongoDB",eligible_topic_id:8769,eligible_class:"Topic"},{id:null,topic:"DBMS",topic_id:406,subtopic_id:1229,subtopic:"MySQL",eligible_topic_id:7601,eligible_class:"Topic"},{id:null,topic:"DBMS",topic_id:406,subtopic_id:1231,subtopic:"PostgreSQL",eligible_topic_id:7601,eligible_class:"Topic"},{id:null,topic:"DBMS",topic_id:406,subtopic_id:1234,subtopic:"SQL Server",eligible_topic_id:7601,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1270,subtopic:"C#",eligible_topic_id:7584,eligible_class:"Topic"},{id:null,topic:"Programming",topic_id:404,subtopic_id:1276,subtopic:"C++",eligible_topic_id:7585,eligible_class:"Topic"},{id:null,topic:"Cloud Computing",topic_id:564,subtopic_id:2430,subtopic:"AWS",eligible_topic_id:7581,eligible_class:"Topic"},{id:null,topic:"CloudComputing",topic_id:564,subtopic_id:2431,subtopic:"Azure",eligible_topic_id:8754,eligible_class:"Topic"},{id:null,topic:"System Design",topic_id:563,subtopic_id:2432,subtopic:"Microservices",eligible_topic_id:7593,eligible_class:"Topic"},{id:null,topic:"DBMS",topic_id:406,subtopic_id:2435,subtopic:"SQL",eligible_topic_id:7601,eligible_class:"Topic"},{id:null,topic:"Machine Learning",topic_id:405,subtopic_id:46262,subtopic:"Tableau",eligible_topic_id:7604,eligible_class:"Topic"},{id:null,topic:"Frontend Development",topic_id:400,subtopic_id:58475,subtopic:"Power BI",eligible_topic_id:null,eligible_class:"Topic"}],commonData={company_categories,job_categories,job_locations,role_types,seniority_levels,proficiency_mapping,onboarding_modal_clicked,pipeline_stages,merit_based_skills,v1_onboarding_enabled,v0_onboarding_completed,initial_user_application_stage,is_discussion_hub_enabled,resume_issues,default_resume_details,resume_builder_skills,skill_data},capitalize=C=>!C||typeof C!="string"?C:C.charAt(0).toUpperCase()+C.slice(1).toLowerCase(),formatExperience=(C,$)=>{const V=C!=null?C:0,F=$!=null?$:0,K=[];return V>0&&K.push(`${V} ${V===1?"yr":"yrs"}`),K.push(`${F} ${F===1?"month":"months"}`),`${K.join(" ")} Experience`},transformCompanyCategories=C=>!C||!Array.isArray(C)?C:C.map($=>gr(zn({},$),{label:capitalize($.label||"").replace(/_/g," ")})),transformRoleTypes=C=>!C||!Array.isArray(C)?C:C.map($=>gr(zn({},$),{label:toCase("titleCase",$.label||"")})),transformMetaData=C=>{if(!C||typeof C!="object")return C;const $=toCamelCaseObject(C);return $.companyCategories&&($.companyCategories=transformCompanyCategories($.companyCategories)),$.roleTypes&&($.roleTypes=transformRoleTypes($.roleTypes)),$},rawMetaData=window.__CAREERS_HUB__||commonData,transformedMetaData=transformMetaData(rawMetaData),initialState$3={meta:transformedMetaData},metaDataSlice=toolkit.createSlice({name:"metaData",initialState:initialState$3,reducers:{setMetaData:(C,$)=>{C.meta=transformMetaData($.payload)}}});metaDataSlice.actions;const metaDataReducer=metaDataSlice.reducer,initialState$2={alerts:[],loading:!1,error:null},alertSlice=toolkit.createSlice({name:"alerts",initialState:initialState$2,reducers:{setAlerts:(C,$)=>{C.alerts=$.payload},addAlert:(C,$)=>{C.alerts.push($.payload)},setLoading:(C,$)=>{C.loading=$.payload},setError:(C,$)=>{C.error=$.payload}}}),{setAlerts,addAlert,setLoading,setError}=alertSlice.actions,alertReducer=alertSlice.reducer,initialState$1={savedJobs:{}},savedJobsSlice=toolkit.createSlice({name:"savedJobs",initialState:initialState$1,reducers:{setJobSavedStatus:(C,$)=>{const{jobId:V,status:F,lastUpdatedAt:K}=$.payload;F==="Saved"?C.savedJobs[V]={status:"Saved",lastUpdatedAt:K||new Date().toISOString()}:delete C.savedJobs[V]},initializeSavedJobs:(C,$)=>{($.payload||[]).forEach(F=>{F.applicationStatus==="Saved"&&(C.savedJobs[F.id]={status:"Saved",lastUpdatedAt:F.applicationLastUpdatedAt||new Date().toISOString()})})},clearSavedJobs:C=>{C.savedJobs={}}}}),{setJobSavedStatus,initializeSavedJobs,clearSavedJobs}=savedJobsSlice.actions,savedJobsReducer=savedJobsSlice.reducer;function isNullOrUndefined(C){return C==null}function getBlockerPointsChecklist(C){const{overall_resume_score:$,section_feedback:V,section_scores:F}=(C==null?void 0:C.resume_evaluation_result)||{};if(isNullOrUndefined($)||isNullOrUndefined(V)||$>2)return[];const K=[];return Object.keys(V).forEach(J=>{F[J]<2&&K.push(V[J][0])}),K}const initialState={fitmentScore:{},activeResumeId:null,activeResumeName:null,activeJobProfileId:null,activeResumeChecklist:[],isChecklistOpen:!1,resumeReviewData:{}},resumeFitmentSlice=toolkit.createSlice({name:"resumeFitment",initialState,reducers:{setFitmentScore:(C,$)=>{var ee,te,ne,re;const V=(ee=$.payload)==null?void 0:ee.job_profile_id,F=(te=$.payload)==null?void 0:te.user_resume_id,K=(ne=$.payload)==null?void 0:ne.score,J=(re=$.payload)==null?void 0:re.remarks;V&&F&&!isNullOrUndefined(K)&&(C.fitmentScore[V]=gr(zn({},C.fitmentScore[V]),{[F]:{score:K,remarks:J}}))},setResumeReviewData:(C,$)=>{const V=$.payload.resume_id;V&&(C.resumeReviewData[V]=$.payload)},setActiveResume:(C,$)=>{var J,ee,te,ne,re,ae;const V=(J=$.payload)==null?void 0:J.jobProfileId,F=(ee=$.payload)==null?void 0:ee.resumeId,K=(te=$.payload)==null?void 0:te.resumeName;if(V&&F){C.activeResumeId=F,C.activeJobProfileId=V,C.activeResumeName=K;const oe=(ae=(re=(ne=C.fitmentScore)==null?void 0:ne[V])==null?void 0:re[F])==null?void 0:ae.remarks;C.activeResumeChecklist=[...oe?[oe]:[],...getBlockerPointsChecklist(C.resumeReviewData[F])]}},setChecklistOpen:(C,$)=>{var V,F,K;(V=$.payload)!=null&&V.syncWithBlockerPoints?C.isChecklistOpen=((F=C.activeResumeChecklist)==null?void 0:F.length)>0:C.isChecklistOpen=(K=$.payload)==null?void 0:K.isOpen}}}),{setFitmentScore,setActiveResume,setChecklistOpen,setResumeReviewData}=resumeFitmentSlice.actions,resumeFitmentReducer=resumeFitmentSlice.reducer,rootReducer=combineReducers({[careerHubApi.reducerPath]:careerHubApi.reducer,layout:layoutReducer,filter:filterReducer,dashboard:dashboardReducer,filterForm:filterFormReducer,metaData:metaDataReducer,filterOptions:filterOptionsReducer,alerts:alertReducer,savedJobs:savedJobsReducer,resumeFitment:resumeFitmentReducer}),HelloWorld=()=>React.createElement("div",{style:{padding:"20px",textAlign:"center"}},React.createElement("h1",null,"Hello World - Career Hub"),React.createElement("p",null,"This is a dummy component.")),tagsSection="_tagsSection_gf6im_1",tag$1="_tag_gf6im_1",activeTag="_activeTag_gf6im_22",icon$1="_icon_gf6im_29",styles$J={tagsSection,tag:tag$1,activeTag,icon:icon$1};function TagsSection({analytics:C}){const{currentTab:$,updateTabAndJobId:V}=useJobQueryParams({syncToURL:!0,syncFromURL:!1}),F=$||TAG_TO_TAB_MAPPING.relevant,K=reactRedux.useSelector(ne=>{var re,ae;return((ae=(re=ne.scalantCareerHub)==null?void 0:re.dashboard)==null?void 0:ae.processCounts)||{}}),J=ne=>{var ae;C==null||C.click(`Tags Section - ${((ae=JOB_FILTER_TAGS[ne])==null?void 0:ae.label)||ne}`,PRODUCT_NAME);const re=TAG_TO_TAB_MAPPING[ne];re&&V(re)},ee=ne=>{const re=TAG_TO_TAB_MAPPING[ne];return F===re},te=ne=>{const re=COUNT_TO_TAB_MAPPING[ne];return K[re]||0};return React.createElement("div",{className:styles$J.tagsSection},Object.keys(JOB_FILTER_TAGS).map(ne=>React.createElement(Tag$1,{className:classNames(styles$J.tag,{[styles$J.activeTag]:ee(ne)}),key:ne,onClick:()=>J(ne)},React.createElement(JOB_FILTER_TAGS[ne].icon,{className:styles$J.icon}),JOB_FILTER_TAGS[ne].label," ",React.createElement("span",{className:styles$J.count},"(",te(ne),")"))))}const jobAlert="_jobAlert_10a9x_1",icon="_icon_10a9x_10",styles$I={jobAlert,icon};function JobAlert({analytics:C}){const $=reactRedux.useDispatch(),V=()=>{C==null||C.click("Job Alert - Open Modal",PRODUCT_NAME),$(openJobAlertModal())};return React.createElement("div",{className:styles$I.jobAlert,onClick:V},React.createElement(BellFilled$1,{className:styles$I.icon}),"Job Alerts")}const styles$H={};function Sorting({analytics:C}){const $=reactRedux.useDispatch(),V=reactRedux.useSelector(te=>{var ne,re;return((re=(ne=te.scalantCareerHub)==null?void 0:ne.filter)==null?void 0:re.sortings)||[]}),F=React.useMemo(()=>getCurrentSortingValue(V),[V]),K=te=>{const ne=SORTING_OPTIONS[te];ne&&(C==null||C.click("Sorting - Change",PRODUCT_NAME,{sortingValue:te,sortingLabel:ne.label}),$(setSortings([ne.mapping])))},J=Object.values(SORTING_OPTIONS).map(te=>({value:te.value,label:te.value===F?`Sorted By: ${te.label}`:te.label})),ee=te=>{const ne=SORTING_OPTIONS[te.value];return ne?ne.label:te.label};return React.createElement(Select$1,{className:styles$H.sorting,value:F,onChange:K,suffixIcon:React.createElement(DownOutlined$1,null),options:J,optionRender:ee})}const styles$G={};function Filter({analytics:C}){const $=reactRedux.useDispatch(),V=()=>{C==null||C.click("Filter - Open Drawer",PRODUCT_NAME),$(openFilterModal())};return React.createElement(Button$2,{type:"primary",className:styles$G.filter,onClick:V},"Filters ",React.createElement(DownOutlined$1,null))}const search="_search_hhvxj_1",iconContainer$2="_iconContainer_hhvxj_7",input="_input_hhvxj_20",slideIn="_slideIn_hhvxj_1",styles$F={search,iconContainer:iconContainer$2,input,slideIn};function Search({analytics:C}){const $=reactRedux.useDispatch(),V=reactRedux.useSelector(ie=>{var se,ce,ue;return((ue=(ce=(se=ie.scalantCareerHub)==null?void 0:se.filter)==null?void 0:ce.filters)==null?void 0:ue.keyword)||""}),[F,K]=React.useState(!1),[J,ee]=React.useState(V),te=React.useRef(null),ne=React.useRef(null);React.useEffect(()=>{ee(V)},[V]),React.useEffect(()=>{F&&te.current&&te.current.focus()},[F]);const re=()=>{C==null||C.click("Search - Icon Click",PRODUCT_NAME),K(!0)},ae=ie=>{const se=ie.target.value;ee(se),ne.current&&clearTimeout(ne.current),ne.current=setTimeout(()=>{$(setKeyword(se))},300)},oe=()=>{J.trim()||K(!1)};return React.useEffect(()=>()=>{ne.current&&clearTimeout(ne.current)},[]),React.createElement("div",{className:styles$F.search},F||J?React.createElement(Input$1,{ref:te,className:styles$F.input,placeholder:"Search for job or Company Name",value:J,onChange:ae,onBlur:oe,suffix:React.createElement(SearchOutlined$1,null)}):React.createElement("div",{className:styles$F.iconContainer,onClick:re},React.createElement(SearchOutlined$1,null)))}const actions$1="_actions_nxp1u_1",styles$E={actions:actions$1};function Actions$1({analytics:C}){return React.createElement("div",{className:styles$E.actions},React.createElement(JobAlert,{analytics:C}),React.createElement(Sorting,{analytics:C}),React.createElement(Filter,{analytics:C}),React.createElement(Search,{analytics:C}))}Actions$1.propTypes={analytics:PropTypes.object};const jobsHeaderContainer="_jobsHeaderContainer_1un8f_1",styles$D={jobsHeaderContainer};function JobsHeader({analytics:C,className:$}){return React.createElement("div",{className:classNames($,styles$D.jobsHeaderContainer)},React.createElement(TagsSection,{analytics:C}),React.createElement(Actions$1,{analytics:C}))}JobsHeader.propTypes={analytics:PropTypes.object,className:PropTypes.string},JobsHeader.defaultProps={className:""};const dashboardService=careerHubApi.injectEndpoints({endpoints:C=>({fetchProcessCounts:C.query({query:()=>({url:"/job-tracker/fetch-process-counts/",method:"POST"}),transformResponse:$=>$.process_counts||{},providesTags:["ProcessCounts"]}),updateJobStatus:C.mutation({query:$=>({url:"/academy/mentee/jobs-mapping/update-status",method:"POST",body:$}),transformResponse:$=>$})})}),{useUpdateJobStatusMutation}=dashboardService,profileName="_profileName_1n202_1",profileDetails="_profileDetails_1n202_5",profileDetailsItems="_profileDetailsItems_1n202_13",preferencesTitle="_preferencesTitle_1n202_18",preferencesDivider="_preferencesDivider_1n202_22",preferencesContent="_preferencesContent_1n202_27",preferenceLabel="_preferenceLabel_1n202_31",preferenceValue="_preferenceValue_1n202_37",preferenceTag="_preferenceTag_1n202_42",jobIntentContainer="_jobIntentContainer_1n202_51",notifyMeContainer="_notifyMeContainer_1n202_59",preferencesContainer="_preferencesContainer_1n202_63",styles$C={profileName,profileDetails,profileDetailsItems,preferencesTitle,preferencesDivider,preferencesContent,preferenceLabel,preferenceValue,preferenceTag,jobIntentContainer,notifyMeContainer,preferencesContainer},resumeService=careerHubApi.injectEndpoints({endpoints:C=>({getResumesEligibility:C.query({query:({jobProfileId:$})=>({url:"/api/v3/user-resumes/eligibility",params:{job_profile_id:$}})}),getResumeLink:C.query({query:({resumeId:$})=>({url:`/api/v3/user-resumes/${$}/download`,method:"GET"})}),updateResumeDetails:C.mutation({query:({resumeId:$,payload:V})=>({url:`/api/v3/user-resumes/${$}/`,method:"PUT",body:V})})})}),{useGetResumesEligibilityQuery,useGetResumeLinkQuery,useUpdateResumeDetailsMutation}=resumeService,useJobNotification=()=>{var te,ne,re;const C=reactRedux.useSelector(ae=>ae.scalantCareerHub.dashboard.userProfileData),[$]=useUpdateResumeDetailsMutation(),[V,F]=React.useState((ne=(te=C==null?void 0:C.resumeDetails)==null?void 0:te.relevancyAlert)!=null?ne:!1),[K,J]=React.useState(!1);return React.useEffect(()=>{var ae;((ae=C==null?void 0:C.resumeDetails)==null?void 0:ae.relevancyAlert)!==void 0&&F(C.resumeDetails.relevancyAlert)},[(re=C==null?void 0:C.resumeDetails)==null?void 0:re.relevancyAlert]),{jobNotificationsEnabled:V,isUpdatingNotification:K,handleNotificationToggle:ae=>tr(this,null,function*(){var oe,ie,se;try{J(!0);const ce={relevancy_alert:ae,form_stage:"preferences_details_v1_form"};ae&&(ce.experience=(C==null?void 0:C.experienceMonths)||(C==null?void 0:C.experienceInMonths),ce.preferred_location=(oe=C==null?void 0:C.userCompanyProfile)==null?void 0:oe.preferredLocation,ce.expected_ctc=(ie=C==null?void 0:C.userCompanyProfile)==null?void 0:ie.expectedCtc);const ue=(se=C==null?void 0:C.resumeDetails)==null?void 0:se.id;ue&&(yield $({resumeId:ue,payload:ce}).unwrap(),F(ae))}catch(ce){console.error("Failed to update notification preference:",ce)}finally{J(!1)}})}},parsePreferredLocations=C=>!C||typeof C!="string"?[]:C.toLowerCase()==="anywhere_in_india"?["Anywhere In India"]:C.split("/").map($=>$.trim()).filter($=>$.length>0).map($=>toTitleCase($)),parsePreferredJobRoles=C=>!C||typeof C!="string"?[]:C.split("/").map($=>$.trim()).filter($=>$.length>0);function ProfilePreferences(){var te,ne,re,ae,oe,ie,se,ce,ue,le,ve;const C=reactRedux.useSelector(fe=>fe.scalantCareerHub.dashboard.userProfileData),[$]=useUpdateResumeDetailsMutation(),[V,F]=React.useState(()=>{var ge;return(((ge=C==null?void 0:C.userCompanyProfile)==null?void 0:ge.preferredLocation)||"").split("/").map(pe=>pe.trim()).includes("Remote")}),[K,J]=React.useState(!1);React.useEffect(()=>{var pe;const ge=(((pe=C==null?void 0:C.userCompanyProfile)==null?void 0:pe.preferredLocation)||"").split("/").map(de=>de.trim()).includes("Remote");F(ge)},[(te=C==null?void 0:C.userCompanyProfile)==null?void 0:te.preferredLocation]);const ee=fe=>tr(this,null,function*(){var pe,de;const ge=fe.target.value==="yes";try{J(!0);let ye=(((pe=C==null?void 0:C.userCompanyProfile)==null?void 0:pe.preferredLocation)||"").split("/").map(Se=>Se.trim()).filter(Se=>Se.length>0);ge?ye.includes("Remote")||ye.push("Remote"):ye=ye.filter(Se=>Se!=="Remote");const he={form_stage:"preferences_details_v1_form",preferred_location:ye.join("/")},be=(de=C==null?void 0:C.resumeDetails)==null?void 0:de.id;be&&(yield $({resumeId:be,payload:he}).unwrap(),F(ge))}catch(me){console.error("Failed to update remote preference:",me)}finally{J(!1)}});return React.createElement(Flex$1,{vertical:!0,gap:16,className:styles$C.preferencesContent},React.createElement(Flex$1,{vertical:!0,gap:.4},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Location"),React.createElement(Flex$1,{gap:.4,wrap:!0},V&&React.createElement(Tag$1,{bordered:!1,className:styles$C.preferenceTag},"Remote"),parsePreferredLocations((ne=C==null?void 0:C.userCompanyProfile)==null?void 0:ne.preferredLocation).map((fe,ge)=>React.createElement(Tag$1,{key:ge,bordered:!1,className:styles$C.preferenceTag},fe)))),React.createElement(Flex$1,{vertical:!0,gap:.4},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Remote"),React.createElement(Radio$1.Group,{value:V?"yes":"no",onChange:ee,disabled:K},React.createElement(Radio$1,{value:"yes"},"Yes"),React.createElement(Radio$1,{value:"no"},"No"))),React.createElement(Flex$1,{vertical:!0,gap:.4},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Job roles"),React.createElement(Flex$1,{gap:.4,wrap:!0},parsePreferredJobRoles((re=C==null?void 0:C.userCompanyProfile)==null?void 0:re.preferredRole).map((fe,ge)=>React.createElement(Tag$1,{key:ge,className:styles$C.preferenceTag},fe)))),!isNullOrUndefined((ae=C==null?void 0:C.userCompanyProfile)==null?void 0:ae.currentCtc)&&React.createElement(Flex$1,{align:"center"},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Current CTC (LPA):"),React.createElement(Typography$1.Text,{className:styles$C.preferenceValue},(oe=C==null?void 0:C.userCompanyProfile)==null?void 0:oe.currentCtc)),!isNullOrUndefined((ie=C==null?void 0:C.userCompanyProfile)==null?void 0:ie.expectedCtc)&&React.createElement(Flex$1,{align:"center"},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Expected CTC (LPA):"),React.createElement(Typography$1.Text,{className:styles$C.preferenceValue},(se=C==null?void 0:C.userCompanyProfile)==null?void 0:se.expectedCtc)),((ce=C==null?void 0:C.userEducations)==null?void 0:ce.some(fe=>fe.graduationDate))&&React.createElement(Flex$1,{align:"center"},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Graduation year:"),React.createElement(Typography$1.Text,{className:styles$C.preferenceValue},new Date((ue=C.userEducations.find(fe=>fe.graduationDate))==null?void 0:ue.graduationDate).getFullYear())),React.createElement(Flex$1,{align:"center"},React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"Notice period (In days):"),React.createElement(Typography$1.Text,{className:styles$C.preferenceValue},(le=C==null?void 0:C.userCompanyProfile)==null?void 0:le.noticePeriod)),React.createElement(Flex$1,{align:"center"},((ve=C==null?void 0:C.userCompanyProfile)==null?void 0:ve.buyoutNotice)&&React.createElement(Typography$1.Text,{className:styles$C.preferenceLabel},"*Buyout available")))}ProfilePreferences.propTypes={};const DISPLAY_LABEL_TO_STATUS={"Looking for a job":"active","Not looking for a job":"inactive","Need time to prepare":"need_time"},STATUS_TO_PLACEMENT_INTENT={active:"Interested",inactive:"Not Interested",need_time:"Need Time to Prepare"},PLACEMENT_INTENT_TO_DISPLAY_LABEL={Interested:"Looking for a job","Need Time to Prepare":"Need time to prepare","Not Interested":"Not looking for a job"},JOB_INTENT_OPTIONS=[{label:"Looking for a job",value:"Looking for a job"},{label:"Need time to prepare",value:"Need time to prepare"},{label:"Not looking for a job",value:"Not looking for a job"}];function ProfileDetails({analytics:C,className:$,onViewResume:V,onEditPreferences:F}){var le,ve,fe;const K=reactRedux.useSelector(ge=>ge.scalantCareerHub.dashboard.userProfileData),[J,{isLoading:ee}]=useUpdateJobStatusMutation(),[te,ne]=React.useState((K==null?void 0:K.placementIntent)||null),{jobNotificationsEnabled:re,isUpdatingNotification:ae,handleNotificationToggle:oe}=useJobNotification();React.useEffect(()=>{K!=null&&K.placementIntent&&ne(K.placementIntent)},[K==null?void 0:K.placementIntent]);const ie=()=>{C==null||C.click("Profile Details - View Resume",PRODUCT_NAME),V==null||V()},se=()=>{C==null||C.click("Profile Details - Edit Preferences",PRODUCT_NAME),F==null||F()},ce=ge=>tr(this,null,function*(){try{const pe=DISPLAY_LABEL_TO_STATUS[ge];pe&&(yield J({source:"careers_hub",status:pe}).unwrap(),ne(STATUS_TO_PLACEMENT_INTENT[pe]))}catch(pe){console.error("Failed to update job status:",pe)}}),ue=ge=>PLACEMENT_INTENT_TO_DISPLAY_LABEL[ge]||null;return React.createElement("div",{className:classNames(styles$C.profileDetails,$)},React.createElement(Flex$1,{align:"center",gap:8},React.createElement(Avatar$1,{shape:"square",size:48,src:K==null?void 0:K.avatar}),React.createElement(Flex$1,{justify:"center",vertical:!0,gap:4},React.createElement(Typography$1.Title,{level:5,className:styles$C.profileName},K==null?void 0:K.name),React.createElement(Typography$1.Text,{type:"secondary"},toTitleCase((le=K==null?void 0:K.mentee)==null?void 0:le.careersHubProduct)))),React.createElement(Flex$1,{vertical:!0,gap:8,className:styles$C.profileDetailsItems},React.createElement(Flex$1,{align:"center",gap:10},React.createElement(UserOutlined$1,null),React.createElement(Typography$1.Text,null,K==null?void 0:K.jobTitle)),React.createElement(Flex$1,{align:"center",gap:10},React.createElement(StarOutlined$1,null),React.createElement(Typography$1.Text,null,formatExperience((ve=K==null?void 0:K.experienceYears)!=null?ve:K==null?void 0:K.experienceInYears,(fe=K==null?void 0:K.experienceMonths)!=null?fe:K==null?void 0:K.experienceInMonths))),React.createElement(Flex$1,{align:"center",gap:10},React.createElement(FileTextTwoTone$1,null),React.createElement(Typography$1.Link,{onClick:ie},"View Resume")),React.createElement(Flex$1,{vertical:!0,className:styles$C.jobIntentContainer,gap:8},React.createElement(Typography$1.Text,{type:"secondary"},"Select your intent in Career's Hub"),React.createElement(Select$1,{placeholder:"Select your intent",value:ue(te),onChange:ce,disabled:ee,loading:ee,style:{width:"100%"},options:JOB_INTENT_OPTIONS,prefix:React.createElement(MonitorOutlined$1,null)})),React.createElement(Flex$1,{align:"center",gap:8,className:styles$C.notifyMeContainer},React.createElement(Typography$1.Text,{type:"secondary"},"Notify me:"),React.createElement(Switch$1,{checked:re,onChange:oe,loading:ae,size:"small"}),React.createElement(Typography$1.Text,null,re?"On":"Off"))),React.createElement(Flex$1,{vertical:!0,className:styles$C.preferencesContainer},React.createElement(Flex$1,{justify:"space-between"},React.createElement(Typography$1.Title,{level:5,className:styles$C.preferencesTitle},"Your Preferences"),React.createElement(EditTwoTone$1,{onClick:se})),React.createElement(Divider$1,{className:styles$C.preferencesDivider}),React.createElement(ProfilePreferences,null)))}ProfileDetails.propTypes={analytics:PropTypes.object,className:PropTypes.string,onViewResume:PropTypes.func,onEditPreferences:PropTypes.func},ProfileDetails.defaultProps={className:""};const jobPreviewApi=careerHubApi.injectEndpoints({endpoints:C=>({getJobPreview:C.query({query:$=>`/job-tracker/job_profile/${$}/`,providesTags:($,V,F)=>[{type:"JobPreview",id:F},{type:"JobPreview",id:"LIST"}],transformResponse:$=>{var ee,te,ne;const V=toCamelCaseObject($),F=((ee=V==null?void 0:V.data)==null?void 0:ee.attributes)||{},K=((ne=(te=V==null?void 0:V.included)==null?void 0:te.find(re=>re.type==="company"))==null?void 0:ne.attributes)||{},J=F.contestSkills||[];return{jobData:gr(zn({},F),{contestSkills:J,name:F.name||(K==null?void 0:K.name)||"Company"}),companyData:K,highlights:F.highlights,eligibilityCriteria:F.eligibilityCriteria}}})}),overrideExisting:!0}),{useGetJobPreviewQuery}=jobPreviewApi,JobPreviewContext=React.createContext(null),JobPreviewProvider=({analytics:C,country:$="IN",jobId:V,currentTab:F,defaultOpenedApplicationId:K,openMockInterviewModal:J=(ae,oe)=>{console.log("Method not implemented. We should get it from MIT"),console.log(ae,oe)},openResume:ee=()=>{console.log("Method not implemented. We should get it from MIT")},skip:te=!1,onCloseResumeBuilder:ne,children:re})=>{const{data:ae,isLoading:oe,error:ie,refetch:se}=useGetJobPreviewQuery(V,{skip:!V||te}),[ce,ue]=React.useState(),[le,ve]=React.useState(null),fe=pe=>{ue(pe),C==null||C.click("Job Preview - Active Tab Changed","Jobs Page V2",{tab:pe,jobId:V})};React.useEffect(()=>{K&&ve(K)},[K]);const ge={analytics:C,activeApplicationId:le,setActiveApplicationId:ve,activeTab:ce,setActiveTab:fe,country:$,jobId:V,data:ae,isLoading:oe,error:ie,refetch:se,openMockInterviewModal:J,openResume:ee,jobData:ae==null?void 0:ae.jobData,companyData:ae==null?void 0:ae.companyData,highlights:ae==null?void 0:ae.highlights,eligibilityCriteria:ae==null?void 0:ae.eligibilityCriteria,currentTab:F,onCloseResumeBuilder:ne};return React.createElement(JobPreviewContext.Provider,{value:ge},re)},useJobPreview=()=>{const C=React.useContext(JobPreviewContext);if(!C)throw new Error("useJobPreview must be used within a JobPreviewProvider");return C},ApplicationFormContext=React.createContext();function ApplicationFormProvider({children:C,onUploadFile:$=()=>(console.log("Method not implemented. We should get it from MIT"),""),onEditResume:V=()=>(console.log("Method not implemented. We should get it from MIT"),""),onAddResume:F=()=>(console.log("Method not implemented. We should get it from MIT"),""),stepName:K,jobProfileId:J,applicationId:ee,fitmentCheckEnabled:te}){const[ne,re]=React.useState(null),[ae,oe]=React.useState(K),[ie,se]=React.useState(null);return React.useEffect(()=>{K===APPLICATION_STATUS$1.RESUME_CHOICE_SELECT&&te?oe(APPLICATION_STATUS$1.RESUME_FITMENT_CHECK):oe(K)},[K,te]),React.createElement(ApplicationFormContext.Provider,{value:{onUploadFile:$,formInstance:ne,setFormInstance:re,stepName:ae,setStepName:oe,jobProfileId:J,applicationId:ee,selectedResume:ie,setSelectedResume:se,onEditResume:V,onAddResume:F,fitmentCheckEnabled:te}},C)}const useApplicationFormContext=()=>{const C=React.useContext(ApplicationFormContext);if(!C)throw new Error("useApplicationForm must be used within a ApplicationFormProvider");return C},descriptionContainer$1="_descriptionContainer_1ljyr_1",container$a="_container_1ljyr_6",recruiterAvatar="_recruiterAvatar_1ljyr_10",recruiterCardContent="_recruiterCardContent_1ljyr_14",recruiterName="_recruiterName_1ljyr_18",recruiterEmail="_recruiterEmail_1ljyr_24",offeredStepItem="_offeredStepItem_1ljyr_30",stepItem="_stepItem_1ljyr_41",extraInfoText="_extraInfoText_1ljyr_46",stageName="_stageName_1ljyr_52",pending="_pending_1ljyr_58",stageDate="_stageDate_1ljyr_62",stageComments="_stageComments_1ljyr_66",styles$B={descriptionContainer:descriptionContainer$1,container:container$a,recruiterAvatar,recruiterCardContent,recruiterName,recruiterEmail,offeredStepItem,stepItem,extraInfoText,stageName,pending,stageDate,stageComments},RecruiterCard=({recruiter:C})=>{const{name:$,avatar:V,email:F}=C||{},{analytics:K}=useJobPreview(),J=()=>{K==null||K.click("Recruiter - Send Email",PRODUCT_NAME,{recruiterName:$,recruiterEmail:F})};return React.createElement(Card$1,{size:"small"},React.createElement(Space$1,{direction:"horizontal"},React.createElement(Avatar$1,{size:48,src:V,className:styles$B.recruiterAvatar}),React.createElement(Space$1,{direction:"vertical",className:styles$B.recruiterCardContent},React.createElement(Typography$1.Text,{className:styles$B.recruiterName},$),React.createElement(Typography$1.Link,{className:styles$B.recruiterEmail,href:`mailto:${F}`,onClick:J},React.createElement(MailTwoTone$1,null),"Send Email To Recruiter"))))},Recruiters=()=>{const{jobData:C}=useJobPreview(),{recruiters:$}=C||{};return React.createElement(Space$1,{wrap:!0},$.map((V,F)=>React.createElement(RecruiterCard,{key:F,recruiter:V})))},monthFullNames=["January","February","March","April","May","June","July","August","September","October","November","December"],months=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function toStartOfDay(C){const $=new Date(C);return $.setMilliseconds(0),$.setSeconds(0),$.setMinutes(0),$.setHours(0),$}function getDaysDifference(C,$){const V=toStartOfDay(C),F=toStartOfDay($),K=V.getTime()-F.getTime();return parseInt(K/(24*60*60*1e3),10)}function getOrdinal(C){return C>=4&&C<=20||C>=24&&C<=30?"th":["st","nd","rd"][C%10-1]}function toDDMMM(C,{humanFriendly:$,fullMonth:V,withOrdinal:F}={}){const K=new Date(C);if($){const ne=getDaysDifference(Date.now(),K);if(ne===0)return"Today";if(ne===1)return"Yesterday"}const J=K.getDate(),ee=K.getMonth(),te=F?getOrdinal(J):"";return`${J}${te} ${V?monthFullNames[ee]:months[ee]}`}function toDDMMMYYYY(C,{fullMonth:$}={}){const V=new Date(C),F=V.getFullYear();return`${toDDMMM(V,{fullMonth:$})} ${F}`}const toDDMMYY=C=>{const $=new Date(C),V=String($.getMonth()+1).padStart(2,"0"),F=String($.getDate()).padStart(2,"0"),K=$.getFullYear().toString().slice(2);return[F,V,K].join("/")};function getDaysAgo(C){return C?getDaysDifference(new Date,new Date(C)):null}const OFFERED_STATUSES=["offer_received","offer_accepted","joined"],EXCLUDED_STATUSES=["to_be_offered",...OFFERED_STATUSES],APPLICATION_STAGE_STATUSES={ongoing:"ongoing",ongoing_test:"ongoing",rejected:"rejected",completed:"completed",pending:"pending",applicationArchived:"application_archived",applicationWithdrawn:"application_withdrawn"},getCurrentStep=(C,$,V)=>{const F=V.findIndex(J=>J.stageStatus===APPLICATION_STAGE_STATUSES.ongoing);return V.every(J=>J.stageStatus===APPLICATION_STAGE_STATUSES.completed)?V.length:C?$+1:F},TimelineSteps=()=>{const{jobData:C}=useJobPreview(),{applicationTimeline:$}=C||{},{timeline:V,status:F}=$||{},K=V.findIndex(ae=>ae.stageStatus===APPLICATION_STAGE_STATUSES.rejected),J=K!==-1,ee=getCurrentStep(J,K,V),te=FINAL_OFFERED_STATUSES.includes(F);let ne=J?V.slice(0,K+1):V;ne=te?ne:ne.filter(ae=>!EXCLUDED_STATUSES.includes(ae.status));const re=ne.map(ae=>{const{expectedUpdateDate:oe,actualUpdateDate:ie,stageName:se,stageComments:ce,stageStatus:ue,status:le}=ae,ve=OFFERED_STATUSES.includes(le)&&ue===APPLICATION_STAGE_STATUSES.completed,fe=!!ie,ge=fe&&getDaysDifference(ie,oe)<0,pe=fe&&getDaysDifference(ie,oe)>0,de=fe&&getDaysDifference(ie,oe)===0,me=ue===APPLICATION_STAGE_STATUSES.pending,ye=ue===APPLICATION_STAGE_STATUSES.rejected;let _e=toDDMMMYYYY(oe),he=null;return oe?ge?(_e=toDDMMMYYYY(ie),he=React.createElement(Typography$1.Text,{className:styles$B.extraInfoText},"Completed ",getDaysDifference(oe,ie)," ","days early")):(pe||de)&&(_e=toDDMMMYYYY(ie)):_e="Not Applicable",{title:React.createElement(Flex$1,{flex:1,justify:"space-between"},React.createElement(Typography$1.Text,{className:classNames(styles$B.stageName,{[styles$B.pending]:me})},ye&&!ie?"Unfortunately the round was not conducted":se),React.createElement(Typography$1.Text,{className:classNames(styles$B.stageDate,{[styles$B.pending]:me})},_e)),description:React.createElement(Flex$1,{justify:"space-between"},React.createElement(Typography$1.Text,{className:styles$B.stageComments},ce),he),status:ye?"error":null,className:ve?styles$B.offeredStepItem:styles$B.stepItem}});return React.createElement(Steps$1,{current:ee,items:re,direction:"vertical"})},container$9="_container_all86_1",styles$A={container:container$9},PlacementProcessDisclaimerBanner=()=>React.createElement(Flex$1,{className:styles$A.container},React.createElement(InfoCircleTwoTone$1,{twoToneColor:"#913ECE"}),React.createElement(Typography$1.Text,null,"Our placement team has access to the same application status and updates that are visible to you")),Timeline=()=>React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$B.descriptionContainer},React.createElement(Typography$1.Title,{level:3},"Your Application Status"),React.createElement(TimelineSteps,null)),RecruiterDetails=()=>{const{jobData:C}=useJobPreview(),{recruiters:$}=C||{};return!$||$.length===0?null:React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$B.descriptionContainer},React.createElement(Typography$1.Title,{level:3},"Recruiter Details"),React.createElement(Recruiters,null))},ApplicationTimelineTab=()=>React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$B.container},React.createElement(PlacementProcessDisclaimerBanner,null),React.createElement(Timeline,null),React.createElement(RecruiterDetails,null)),ICONS={bookmark:"https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/170/276/original/BookmarkSimple.svg?1765444708",exit:"https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/170/344/original/ExportOutlined.svg?1765460782",airplay:"https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/170/451/original/Vector.svg?1765523747",monitor:"https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/170/455/original/Vector_%281%29.svg?1765526679",likeBadge:"https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/171/516/original/Like-badge-_remix__1.svg?1766402587"},actionBanner="_actionBanner_13z26_1",actionBannerIcon="_actionBannerIcon_13z26_12",actionBannerContent="_actionBannerContent_13z26_17",actionBannerTitle="_actionBannerTitle_13z26_23",actionBannerDescription="_actionBannerDescription_13z26_29",actionBannerButton="_actionBannerButton_13z26_33",styles$z={actionBanner,actionBannerIcon,actionBannerContent,actionBannerTitle,actionBannerDescription,actionBannerButton},ActionBanner=({icon:C,title:$,description:V,buttonText:F,buttonIcon:K,className:J,onClick:ee,isLoading:te})=>React.createElement("div",{className:classNames(styles$z.actionBanner,J)},C,React.createElement("div",{className:styles$z.actionBannerContent},React.createElement("span",{className:styles$z.actionBannerTitle},$),React.createElement("span",{className:styles$z.actionBannerDescription},V)),React.createElement(Button$2,{icon:K,type:"primary",className:styles$z.actionBannerButton,onClick:ee,loading:te},F)),monitorBanner="_monitorBanner_gxbq6_1",monitorIcon="_monitorIcon_gxbq6_7",styles$y={monitorBanner,monitorIcon},INTERVIEW_QUESTIONS_URL="https://companion.scaler.com/interview-experiences",InterviewExperiencesBanner=()=>{var se;const C=reactRedux.useSelector(ce=>ce.scalantCareerHub.dashboard.userProfileData),$=(se=C==null?void 0:C.hasCompletedScreeningCall)!=null?se:!1,{analytics:V,jobData:F,companyData:K,currentTab:J}=useJobPreview(),{title:ee,applicationStatus:te,jobProfileStatus:ne}=F||{},re=te===APPLICATION_STATUS$1.WITHDRAWN,{name:ae}=K||{},oe=ne!==JOB_PROFILE_STATUS$1.active&&te===APPLICATION_STATUS_MAP.Draft,ie=React.useCallback(()=>{globalThis.open(`${INTERVIEW_QUESTIONS_URL}?company=${encodeURIComponent(ae)}&role=${encodeURIComponent(ee)}`,"_blank"),V==null||V.click("Interview Experiences - Explore",PRODUCT_NAME)},[V,ae,ee]);return!$||oe||J!==TAG_TO_TAB_MAPPING.applied||re?null:React.createElement(ActionBanner,{icon:React.createElement("img",{src:ICONS.monitor,className:styles$y.monitorIcon}),title:"We've got the resources you need for this role",description:"Explore Interview Experiences from Scaler learners who have attempted this before",buttonText:"Explore",buttonIcon:React.createElement(DoubleRightOutlined$1,null),className:styles$y.monitorBanner,onClick:ie})},jobDescriptionTab="_jobDescriptionTab_1g78n_1",contentContainer="_contentContainer_1g78n_5",descriptionTitle="_descriptionTitle_1g78n_10",descriptionText="_descriptionText_1g78n_19",stepText$1="_stepText_1g78n_19",descriptionLink="_descriptionLink_1g78n_33",list="_list_1g78n_37",steps="_steps_1g78n_41",stepTitle="_stepTitle_1g78n_48",descriptionContainer="_descriptionContainer_1g78n_59",container$8="_container_1g78n_64",indicatorContainer="_indicatorContainer_1g78n_69",indicatorLine="_indicatorLine_1g78n_74",indicatorDot="_indicatorDot_1g78n_82",extraIndicatorDot="_extraIndicatorDot_1g78n_82",styles$x={jobDescriptionTab,contentContainer,descriptionTitle,descriptionText,stepText:stepText$1,descriptionLink,list,steps,stepTitle,descriptionContainer,container:container$8,indicatorContainer,indicatorLine,indicatorDot,extraIndicatorDot},Company$1=()=>{const{companyData:C,analytics:$}=useJobPreview(),{name:V,employeeCount:F,companyVision:K,location:J,category:ee,companyWebsite:te}=C||{},ne=()=>{$==null||$.click("Company - Website Link",PRODUCT_NAME,{companyName:V})};return React.createElement(Space$1,{className:styles$x.contentContainer,direction:"vertical",size:"large"},React.createElement(Typography$1.Link,{className:styles$x.descriptionTitle,href:te,target:"_blank",onClick:ne},"About ",V),K&&React.createElement(Typography$1.Paragraph,{className:styles$x.descriptionText},React.createElement("div",{dangerouslySetInnerHTML:{__html:K}})),J&&React.createElement(Space$1,null,React.createElement(Typography$1.Text,{className:styles$x.descriptionTitle},"Office Location:"),React.createElement(Typography$1.Text,{className:styles$x.descriptionText},J)),ee&&React.createElement(Space$1,null,React.createElement(Typography$1.Text,{className:styles$x.descriptionTitle},"Company Category:"),React.createElement(Typography$1.Text,{className:styles$x.descriptionText},toTitleCase(ee))),F&&React.createElement(Space$1,null,React.createElement(Typography$1.Text,{className:styles$x.descriptionTitle},"No. of Employees:"),React.createElement(Typography$1.Text,{className:styles$x.descriptionText},F)))},collapsableContainer$1="_collapsableContainer_1s2ds_1",collapsed$1="_collapsed_1s2ds_5",viewMore$1="_viewMore_1s2ds_21",styles$w={collapsableContainer:collapsableContainer$1,collapsed:collapsed$1,viewMore:viewMore$1},CollapsableHTML=({analytics:C,html:$,contentClassName:V})=>{const[F,K]=React.useState(!1),J=()=>{C==null||C.click(`Collapsable HTML - ${F?"View Less":"View More"}`,PRODUCT_NAME),K(!F)};return React.createElement("div",{className:styles$w.collapsableContainer},React.createElement("div",{className:classNames(V,{[styles$w.collapsed]:!F}),dangerouslySetInnerHTML:{__html:$}}),React.createElement(Typography$1.Link,{className:styles$w.viewMore,onClick:J},F?"View Less":"View More"))},Description$1=()=>{const{jobData:C,analytics:$}=useJobPreview(),{jobDescText:V,jobDesc:F}=C||{},K=()=>{$==null||$.click("Job Description - Know More",PRODUCT_NAME)};return React.createElement(Space$1,{className:styles$x.contentContainer,direction:"vertical",size:"large"},React.createElement(Typography$1.Text,{className:styles$x.descriptionTitle},"About the Role"),V&&React.createElement(CollapsableHTML,{analytics:$,html:V,contentClassName:styles$x.descriptionText}),F&&React.createElement(Typography$1.Link,{className:styles$x.descriptionLink,href:F,target:"_blank",onClick:K},React.createElement(Space$1,null,React.createElement(LinkOutlined$1,null),"Know More")))},collapsableContainer="_collapsableContainer_1bjjt_1",collapsed="_collapsed_1bjjt_5",viewMore="_viewMore_1bjjt_21",styles$v={collapsableContainer,collapsed,viewMore},CollapsableContainer=({analytics:C,children:$,contentClassName:V})=>{const[F,K]=React.useState(!1),J=()=>{C==null||C.click(`Collapsable Container - ${F?"View Less":"View More"}`,PRODUCT_NAME),K(!F)};return React.createElement("div",{className:styles$v.collapsableContainer},React.createElement("div",{className:classNames(V,{[styles$v.collapsed]:!F})},$),React.createElement(Typography$1.Link,{className:styles$v.viewMore,onClick:J},F?"View Less":"View More"))},Benefits=()=>{const{jobData:C,country:$}=useJobPreview(),{benefits:V,visaSponsorship:F}=C||{},K=F==="yes";return!V&&!K||$!=="US"?null:React.createElement(Space$1,{className:styles$x.contentContainer,direction:"vertical",size:"large"},React.createElement(Typography$1.Text,{className:styles$x.descriptionTitle},"Benefits"),React.createElement(CollapsableContainer,{contentClassName:styles$x.descriptionText},React.createElement("ul",{className:styles$x.list},V==null?void 0:V.map(J=>React.createElement("li",{key:J},J)),K&&React.createElement("li",null,"Visa sponsorship available"))))},STEPS=[{title:"In Progress",description:"Once you apply, our team checks if it’s a right match"},{title:"Resume Forwarded",description:"We send your resume to the company"},{title:"Feedback Stage",description:"The company reviews and shares feedback"},{title:"Interview Process",description:"If selected, your interview rounds begin"}],Indicator=()=>React.createElement(Flex$1,{vertical:!0,className:styles$x.indicatorContainer},React.createElement("div",{className:styles$x.indicatorLine}),React.createElement(Flex$1,{flex:1,gap:12},STEPS.map((C,$)=>React.createElement(Flex$1,{key:$,flex:1},React.createElement("div",{className:styles$x.indicatorDot}))),React.createElement("div",{className:styles$x.extraIndicatorDot}))),HiringSteps=()=>{const C=STEPS.map($=>({title:React.createElement("span",{className:styles$x.stepTitle},$.title),description:React.createElement("span",{className:styles$x.stepText},$.description)}));return React.createElement(Flex$1,{vertical:!0,gap:12},React.createElement(Indicator,null),React.createElement(Flex$1,{className:styles$x.steps,gap:12},C.map(($,V)=>React.createElement(Flex$1,{vertical:!0,flex:1,key:V},$.title,$.description))))},BasicInfo$1=()=>React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$x.descriptionContainer},React.createElement(Typography$1.Title,{level:3},"Job Description"),React.createElement(Company$1,null),React.createElement(Description$1,null),React.createElement(Benefits,null)),PostApplicationProcess=()=>React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$x.descriptionContainer},React.createElement(Typography$1.Title,{level:3},"Post Application Process"),React.createElement(HiringSteps,null)),JobDescriptionTab=()=>React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$x.container},React.createElement(BasicInfo$1,null),React.createElement(PostApplicationProcess,null),React.createElement(PlacementProcessDisclaimerBanner,null),React.createElement(InterviewExperiencesBanner,null)),container$7="_container_tfeme_1",dot="_dot_tfeme_5",successDot="_successDot_tfeme_11",errorDot="_errorDot_tfeme_15",tableTitle="_tableTitle_tfeme_19",styles$u={container:container$7,dot,successDot,errorDot,tableTitle},STATUS_MAP$2={completed:"Completed",pending:"Pending",notRequired:"Not Required"},columns$2=[{title:"Skill Type",dataIndex:"skillType"},{title:"Status",dataIndex:"status"},{title:"Contests",dataIndex:"contests"},{title:"Mock Interview",dataIndex:"mockInterview"}],StatusColumnContent$2=({status:C})=>React.createElement(Tag$1,{color:C===STATUS_MAP$2.completed?"success":"warning"},C),ContestColumnContent=({contestDetails:C})=>{const{analytics:$}=useJobPreview();if(!C)return STATUS_MAP$2.notRequired;const{cleared:V,joinLink:F}=C,K=()=>{$==null||$.click("Certification - Attempt Contest",PRODUCT_NAME)};return V?React.createElement(Space$1,null,React.createElement("div",{className:classNames(styles$u.dot,styles$u.successDot)}),React.createElement(Typography$1.Text,null,"Success")):React.createElement(Typography$1.Link,{href:F,onClick:K,underline:!0},"Attempt Contest")},MockInterviewColumnContent=({mockInterviewDetails:C,skillId:$,skillName:V})=>{const{openMockInterviewModal:F,analytics:K}=useJobPreview();if(!C)return STATUS_MAP$2.notRequired;const{cleared:J}=C,ee=()=>{K==null||K.click("Certification - Schedule Interview",PRODUCT_NAME),F($,V)};return J?React.createElement(Space$1,null,React.createElement("div",{className:classNames(styles$u.dot,styles$u.successDot)}),React.createElement(Typography$1.Text,null,"Success")):React.createElement(Typography$1.Link,{onClick:ee,underline:!0},"Schedule Interview")},Certification=()=>{const{jobData:C}=useJobPreview(),{eligibilityCriteria:$}=C||{},{reasons:V}=$||{},F=V==null?void 0:V.find(J=>J.label==="skills");if(!F)return null;const K=Object.entries(F.data).map(([J,ee])=>{const te=ee.contests,ne=te?ee.contests.cleared?STATUS_MAP$2.completed:STATUS_MAP$2.pending:STATUS_MAP$2.notRequired,re=ee.skills,ae=re?ee.skills.cleared?STATUS_MAP$2.completed:STATUS_MAP$2.pending:STATUS_MAP$2.notRequired,oe=[ne,ae].every(ie=>ie!==STATUS_MAP$2.pending)?STATUS_MAP$2.completed:STATUS_MAP$2.pending;return{skillType:J,status:React.createElement(StatusColumnContent$2,{status:oe}),contests:React.createElement(ContestColumnContent,{contestDetails:te}),mockInterview:React.createElement(MockInterviewColumnContent,{mockInterviewDetails:re,skillId:ee.skillId,skillName:ee.skillName})}});return React.createElement(Table$1,{title:()=>React.createElement(Typography$1.Text,{className:styles$u.tableTitle,strong:!0},"Scaler certifications you need to apply"),columns:columns$2,dataSource:K,pagination:!1})},STATUS_MAP$1={added:"Added",missing:"Missing"},columns$1=[{title:"Stack Type",dataIndex:"stackType"},{title:"Experience (Yrs)",dataIndex:"experience"},{title:"Status",dataIndex:"status"},{title:"",dataIndex:"action"}],StatusColumnContent$1=({status:C})=>React.createElement(Space$1,null,React.createElement("div",{className:classNames(styles$u.dot,{[styles$u.successDot]:C===STATUS_MAP$1.added,[styles$u.errorDot]:C===STATUS_MAP$1.missing})}),React.createElement(Typography$1.Text,null,C)),ActionColumnContent=({status:C})=>{const{openResume:$,analytics:V}=useJobPreview(),F=()=>{V==null||V.click("Resume Skills - Add Skill",PRODUCT_NAME),$()};return C===STATUS_MAP$1.added?null:React.createElement(Typography$1.Link,{onClick:F,underline:!0},"Add Skill")},ResumeSkills=()=>{const{jobData:C}=useJobPreview(),{eligibilityCriteria:$}=C||{},{reasons:V}=$||{},F=V==null?void 0:V.find(J=>J.label==="tech_stacks");if(!(F!=null&&F.data))return null;const K=Object.entries(F.data).map(([J,ee])=>{var ne;const te=(ne=ee.data)!=null&&ne.cleared?STATUS_MAP$1.added:STATUS_MAP$1.missing;return{stackType:J,experience:`${Math.floor(ee.proficiencyPeriod/12)}+`,status:React.createElement(StatusColumnContent$1,{status:te}),action:React.createElement(ActionColumnContent,{status:te})}});return React.createElement(Table$1,{title:()=>React.createElement(Typography$1.Text,{className:styles$u.tableTitle,strong:!0},"Skills and Toolsets in your Resume"),columns:columns$1,dataSource:K,pagination:!1})},getExperienceText=(C,$)=>{const V=`${Math.floor(C/12)}y`,F=C%12===0?"":` ${C%12}m`,K=`${V}${F}`;if(!$)return`${K}+ Experience`;const J=`${Math.floor($/12)}y`,ee=$%12===0?"":`${$%12}m`;return`${K} - ${J} ${ee} Experience`},getNoticePeriodText=C=>C===0?"Immediate":C==null?"NA":`${C} days`,ADDITIONAL_ELIGIBILITY_MAPPING={diversity:()=>"Female Candidates Only",experience:({minExperience:C,maxExperience:$})=>getExperienceText(C,$),notice_period:({preferredNoticePeriod:C})=>`${getNoticePeriodText(C)} Notice Period`},ADDITIONAL_ELIGIBILITY_MAPPING_INELIGIBLE_REASONS={experience:"Unfortunately! Your profile does not have the relevant years of experience for this role",notice_period:"Unfortunately! Your notice period is not compatible with the notice period required for this role",placed_mentee:"You are ineligible to apply to this job since the CTC offered is less than 1.6x CTC of your previously accepted job offer",diversity:"Unfortunately! Your gender does not match the gender criteria for this role"},STATUS_MAP={eligible:"Eligible",ineligible:"Ineligible"},columns=[{title:"Requirement",dataIndex:"requirement"},{title:"Details",dataIndex:"details"},{title:"Status",dataIndex:"status"}],StatusColumnContent=({status:C})=>C===STATUS_MAP.eligible?React.createElement(Tag$1,{color:"success"},"Eligible"):React.createElement(Tag$1,{color:"error"},"Ineligible"),OtherRequirements=()=>{const{jobData:C}=useJobPreview(),{eligibilityCriteria:$}=C||{},{reasons:V}=$||{},F=V==null?void 0:V.filter(J=>J.label!=="skills"&&J.showText);if(!F)return null;const K=F.filter(J=>ADDITIONAL_ELIGIBILITY_MAPPING[J.label]).map(J=>{const ee=J.isEligible?STATUS_MAP.eligible:STATUS_MAP.ineligible;return{requirement:toTitleCase(J.label),details:ADDITIONAL_ELIGIBILITY_MAPPING[J.label](C),status:React.createElement(StatusColumnContent,{status:ee})}});return React.createElement(Table$1,{title:()=>React.createElement(Typography$1.Text,{className:styles$u.tableTitle,strong:!0},"Skills and Toolsets in your Resume"),columns,dataSource:K,pagination:!1})},SkillsRequiredTab=()=>{const{jobData:C}=useJobPreview(),{eligibilityCriteria:$}=C||{};return $?React.createElement(Space$1,{direction:"vertical",size:"large",className:styles$u.container},React.createElement(Typography$1.Title,{level:3},"Job Check-list"),React.createElement(Certification,null),React.createElement(ResumeSkills,null),React.createElement(OtherRequirements,null)):null},bodyContainer="_bodyContainer_1nalq_1",tabs="_tabs_1nalq_5",styles$t={bodyContainer,tabs},ExpandedJobViewBody=()=>{var re;const{activeTab:C,setActiveTab:$,jobData:V,currentTab:F,analytics:K,jobId:J}=useJobPreview(),{applicationTimeline:ee}=V||{},te=((re=ee==null?void 0:ee.timeline)==null?void 0:re.length)>0&&F===TAG_TO_TAB_MAPPING.applied;React.useEffect(()=>{if(K&&C){const oe={[JOB_BODY_TABS.APPLICATION_TIMELINE.key]:"Application Timeline Tab",[JOB_BODY_TABS.ABOUT_ROLE.key]:"Job Description Tab",[JOB_BODY_TABS.REQUIREMENTS.key]:"Skills Required Tab"}[C]||"Unknown Tab";K.view(`Expanded Job View - ${oe}`,PRODUCT_NAME,{tab:C,jobId:J})}},[K,C,J]);const ne=[te&&{key:JOB_BODY_TABS.APPLICATION_TIMELINE.key,label:JOB_BODY_TABS.APPLICATION_TIMELINE.label,children:React.createElement(ApplicationTimelineTab,null)},{key:JOB_BODY_TABS.ABOUT_ROLE.key,label:JOB_BODY_TABS.ABOUT_ROLE.label,children:React.createElement(JobDescriptionTab,null)},{key:JOB_BODY_TABS.REQUIREMENTS.key,label:JOB_BODY_TABS.REQUIREMENTS.label,children:React.createElement(SkillsRequiredTab,null)}].filter(Boolean);return React.createElement("div",{className:styles$t.bodyContainer},React.createElement(Tabs$1,{activeKey:C,className:styles$t.tabs,items:ne,onChange:$}))},useUpdateApplicationStatusService=careerHubApi.injectEndpoints({endpoints:C=>({updateApplicationStatus:C.mutation({query:$=>({url:"/job-tracker/update-application/",method:"PATCH",body:$}),invalidatesTags:($,V,{job_profile_id:F})=>[{type:"JobPreview",id:F},"PipelineJobs"]})})}),{useUpdateApplicationStatusMutation}=useUpdateApplicationStatusService,appliedButton="_appliedButton_1f028_1",saveButton$1="_saveButton_1f028_9",savedButton$1="_savedButton_1f028_9",jobActions="_jobActions_1f028_30",withdrawalReasonForm="_withdrawalReasonForm_1f028_36",warningIcon$1="_warningIcon_1f028_41",withdrawalReasonRadioGroup="_withdrawalReasonRadioGroup_1f028_45",withdrawnText="_withdrawnText_1f028_52",styles$s={appliedButton,saveButton:saveButton$1,savedButton:savedButton$1,jobActions,withdrawalReasonForm,warningIcon:warningIcon$1,withdrawalReasonRadioGroup,withdrawnText},ModalContent=({withdrawalReason:C,setWithdrawalReason:$,withdrawalMessage:V,setWithdrawalMessage:F})=>{const K=ee=>{const te=ee.target.value;$(te),te!=="Other"&&F("")},J=ee=>{F(ee.target.value)};return React.createElement(React.Fragment,null,React.createElement(Typography$1.Text,null,"Please note that once withdrawn you will not be allowed to apply for this job again"),React.createElement(Form$1,{className:styles$s.withdrawalReasonForm},React.createElement(Form$1.Item,{layout:"vertical",label:"Select reason"},React.createElement(Radio$1.Group,{className:styles$s.withdrawalReasonRadioGroup,onChange:K,value:C},WITHDRAW_REASONS.map(ee=>React.createElement(Radio$1,{key:ee.value,value:ee.value},ee.label))),C==="Other"&&React.createElement(Form$1.Item,null,React.createElement(Input$1.TextArea,{value:V,onChange:J,placeholder:"Please specify your reason"})))))},Withdrawal=()=>{var ve;const{analytics:C,jobId:$,jobData:V,refetch:F,currentTab:K}=useJobPreview(),{applicationStatus:J}=V||{},[ee,te]=React.useState(!1),[ne,re]=React.useState((ve=WITHDRAW_REASONS[0])==null?void 0:ve.value),[ae,oe]=React.useState(""),[ie]=useUpdateApplicationStatusMutation(),{message:se}=App$1.useApp(),ce=()=>tr(this,null,function*(){var ge,pe;const fe=yield ie({job_profile_id:$,update_action:"withdraw",message:ae||ne});(ge=fe==null?void 0:fe.data)!=null&&ge.success?(se.success("Application withdrawn successfully"),te(!1),re((pe=WITHDRAW_REASONS[0])==null?void 0:pe.value),oe(""),F()):se.error("Failed to withdraw application"),C==null||C.click("Withdraw Application Ok",PRODUCT_NAME,{currentTab:K,jobId:$})}),ue=()=>{var fe;te(!1),re((fe=WITHDRAW_REASONS[0])==null?void 0:fe.value),oe("")},le=()=>{var fe;re((fe=WITHDRAW_REASONS[0])==null?void 0:fe.value),oe(""),te(!0),C==null||C.click("Expanded View - Withdraw Application",PRODUCT_NAME,{currentTab:K,jobId:$})};return J===APPLICATION_STATUS$1.WITHDRAWN?React.createElement("div",{className:styles$s.withdrawnText},React.createElement(CheckCircleFilled$1,null),"Your Application has been Withdrawn"):K===TAG_TO_TAB_MAPPING.applied&&!NON_WITHDRAW_STATUSES.includes(J)?React.createElement(React.Fragment,null,React.createElement(Button$2,{icon:React.createElement("img",{src:ICONS.exit,alt:"exit"}),onClick:le,className:styles$s.withdrawButton,ghost:!0,type:"primary",size:"large"},"Withdraw Application"),React.createElement(Modal$1,{title:React.createElement(Space$1,null,React.createElement(WarningFilled$1,{className:styles$s.warningIcon}),React.createElement(Typography$1.Text,null,"Withdraw My Application")),open:ee,onOk:ce,onCancel:ue},React.createElement(ModalContent,{withdrawalReason:ne,setWithdrawalReason:re,withdrawalMessage:ae,setWithdrawalMessage:oe}))):null},SaveButton$1=()=>{const{analytics:C,jobId:$,jobData:V,refetch:F,currentTab:K}=useJobPreview(),[J,{isLoading:ee}]=useUpdateApplicationStatusMutation(),{applicationStatus:te}=V||{},ne=te===APPLICATION_STATUS$1.SAVED,re=()=>tr(this,null,function*(){var oe;const ae=yield J({job_profile_id:$,update_action:"save"});(oe=ae==null?void 0:ae.data)!=null&&oe.success?(message$1.success("Application saved successfully"),F()):message$1.error("Failed to save application"),C==null||C.click("Expanded View - Save","Jobs Page V2",{currentTab:K,jobId:$})});return K===TAG_TO_TAB_MAPPING.applied?null:ne?React.createElement(Button$2,{icon:React.createElement("img",{src:ICONS.bookmark,alt:"bookmark"}),type:"text",size:"large",disabled:!0},"Saved"):React.createElement(Button$2,{icon:React.createElement(SaveTwoTone$1,null),type:"primary",ghost:!0,size:"large",onClick:re,loading:ee},"Save")},ApplyButton=()=>{const{jobData:C,eligibilityCriteria:$,setActiveApplicationId:V,jobId:F,currentTab:K,analytics:J}=useJobPreview(),{applicationStatus:ee,jobProfileStatus:te}=C||{},{isEligible:ne}=$||{},re=ee===APPLICATION_STATUS$1.WITHDRAWN,ae=ee===APPLICATION_STATUS_MAP.Draft,oe=te===JOB_PROFILE_STATUS$1.active,ie=()=>{V(F),J==null||J.click("Expanded View - Apply Now","Jobs Page V2",{currentTab:K,jobId:F})};return React.useEffect(()=>()=>{V(null)},[V]),re?null:K===TAG_TO_TAB_MAPPING.applied&&!ae?React.createElement(Button$2,{icon:React.createElement(CheckCircleFilled$1,null),className:styles$s.appliedButton,type:"text",size:"large"},"Applied"):React.createElement(Button$2,{icon:React.createElement(RiseOutlined$1,null),onClick:ie,className:styles$s.applyButton,type:"primary",size:"large",disabled:!ne||!oe},"Apply Now")},Actions=()=>React.createElement("div",{className:styles$s.jobActions},React.createElement(ApplyButton,null),React.createElement(SaveButton$1,null),React.createElement(Withdrawal,null)),missingLogo="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAACqElEQVR4Xu2bMUpEQRBEXQwNFLyKuYE38KDewMDcqyx8A0NRlAWFDbqKGYuezzP9tdMz7/X0Lrt42Lbt84K/NgQOCGnj4mcjCOnlAyHNfCAEId0INNsP7yEIaUag2XYiN+T48jR87Nv7x6E1OuxBOQBCFEqnzGhTKKUQolBCyDml0e5kZP1h2gFGhz0ol5GRpVBiZDGyjD7xox3GRYc9KOQYWQolRhYjy+gTP9phXHTYg0KOkaVQYmQxsow+8aMdxkWHPSjkGFkKJUYWI8voEz/aYVx02INCbpmRpRzmvzOj3zgr+0OIQon3EINSMMoNCcJWSiFEoRTMICQIWymFEIVSMIOQIGylFEIUSsEMQoKwlVIIUSgFMwgJwlZKIUShFMwgJAhbKYUQhVIwg5AgbKUUQhRKwUwLITN+aZvBbBTGKucof6Ba5SCV9FXOgZDK5OTn1U1HyGTg1XIIORFiZFWtYj6vOqtaDiEVIfM5Qha76pVfbkhFyHzODeGGmC2jxavG4mOvxnFaCiGL3XRuyLTe1xbihnBDtE5xU1VnVevxsbciZD5HyMSrfnl1beI/j9/cPQytsb0+D73++8Uf72/Da1SNFXlTrzYxfMrQAjPGXsUCIYZMhBiwElGEJCgbNRBiwEpEEZKgbNRAiAErEUVIgrJRAyEGrEQUIQnKRg2EGLASUYQkKBs1EGLASkQRkqBs1ECIASsRRUiCslFjN0KMM+8+2uL3kN1TNg6IEANWIoqQBGWjBkIMWIkoQhKUjRoIMWAloghJUDZqIMSAlYgiJEHZqIEQA1YiipAEZaMGQgxYiShCEpSNGggxYCWiCElQNmogxICViA4LSWySGr8Eyn/YAVaWAEKyvMtqCCkRZQMIyfIuqyGkRJQNICTLu6yGkBJRNvAFGmsSbsnlaLoAAAAASUVORK5CYII=",CompanyLogo=({logo:C,company:$,companiesList:V,companyName:F,size:K=48})=>{const J=()=>{var re;return C||($&&$[0]&&((re=V[$[0]])!=null&&re.logo)?V[$[0]].logo:missingLogo)},[ee,te]=React.useState(()=>J());React.useEffect(()=>{var re;if(C){te(C);return}if($&&$[0]&&((re=V[$[0]])!=null&&re.logo)){te(V[$[0]].logo);return}te(missingLogo)},[C,$,V]);const ne=()=>{te(missingLogo)};return React.createElement(Avatar$1,{size:K,src:ee,alt:F,onError:ne,shape:"square"})};CompanyLogo.propTypes={logo:PropTypes.string,company:PropTypes.arrayOf(PropTypes.number),companiesList:PropTypes.object,companyName:PropTypes.string,size:PropTypes.number},CompanyLogo.defaultProps={logo:null,company:[],companiesList:{},companyName:""};const basicInfo="_basicInfo_2vzae_1",companyInfo="_companyInfo_2vzae_12",companyName$1="_companyName_2vzae_18",container$6="_container_2vzae_25",extraDetails="_extraDetails_2vzae_33",extraDetailsDivider="_extraDetailsDivider_2vzae_44",jobTitle$1="_jobTitle_2vzae_51",jobLocation="_jobLocation_2vzae_58",styles$r={basicInfo,companyInfo,companyName:companyName$1,container:container$6,extraDetails,extraDetailsDivider,jobTitle:jobTitle$1,jobLocation},CompanyInfo=()=>{const{companyData:C}=useJobPreview(),{logo:$,name:V}=C||{};return React.createElement("div",{className:styles$r.companyInfo},React.createElement(CompanyLogo,{logo:$,companyName:V,size:50}),React.createElement("div",{className:styles$r.companyName},V))},JobTitle=()=>{const{jobData:C}=useJobPreview(),{title:$}=C||{};return React.createElement(Typography$1.Text,{ellipsis:!0,className:styles$r.jobTitle},$)},JobLocation=()=>{const{jobData:C}=useJobPreview(),{preferredCities:$}=C||{},V=formatLocation($);return React.createElement("div",{className:styles$r.jobLocation},V)},BasicInfo=()=>React.createElement("div",{className:styles$r.basicInfo},React.createElement(CompanyInfo,null),React.createElement(JobTitle,null),React.createElement(JobLocation,null)),ExtraDetails=()=>{const{jobData:C}=useJobPreview(),{minCtc:$,maxCtc:V,openForDiscussionCtc:F,isInternship:K,stipend:J,preferredNoticePeriod:ee,minExperience:te,maxExperience:ne}=C||{},re=formatCtc({minCtc:$,maxCtc:V,openForDiscussionCtc:F,isInternship:K,stipend:J}),ae=formatExperience$1(te,ne),oe=formatNoticePeriod(ee);return React.createElement("div",{className:styles$r.extraDetails},[re,ae,oe].filter(Boolean).map((ie,se)=>React.createElement(React.Fragment,{key:se},React.createElement("div",{className:styles$r.detail},ie),React.createElement(Divider$1,{size:"large",type:"vertical",className:styles$r.extraDetailsDivider}))))},ExpandedJobViewHeader=()=>React.createElement("div",{className:styles$r.container},React.createElement(BasicInfo,null),React.createElement(ExtraDetails,null),React.createElement(Actions,null)),field="_field_t90m2_1",checkboxAdjacentField="_checkboxAdjacentField_t90m2_7",fieldGroup="_fieldGroup_t90m2_11",checkboxFieldGroup="_checkboxFieldGroup_t90m2_17",fieldGroupLabel="_fieldGroupLabel_t90m2_21",styles$q={field,checkboxAdjacentField,fieldGroup,checkboxFieldGroup,fieldGroupLabel};function CTC({fieldName:C,fieldProps:$,label:V}){return React.createElement(Form$1.Item,{label:V,name:C,rules:[{required:!0,message:`${V} is required`}],layout:"vertical",className:styles$q.field,extra:"Enter amount in lakhs. For eg, if amount is 50 LPA, enter 50."},React.createElement(Input$1,zn({},$)))}function Linkedin({fieldName:C,label:$,fieldProps:V}){return React.createElement(Form$1.Item,{label:$,name:C,rules:[{required:!0,message:"Please enter your LinkedIn profile URL",type:"url"}],layout:"vertical",className:styles$q.field},React.createElement(Input$1,zn({},V)))}const selectOptionsService=careerHubApi.injectEndpoints({endpoints:C=>({getSelectOptions:C.query({query:({fieldType:$,query:V})=>({url:"/job-tracker/v1/custom-data",params:{field_type:$,q:V}}),transformResponse:($,V,F)=>{const K=($==null?void 0:$[F==null?void 0:F.fieldType])||[];return(K==null?void 0:K.map(J=>({text:J,value:J})))||[]}})})}),{useLazyGetSelectOptionsQuery}=selectOptionsService;function Company({fieldName:C,label:$}){const[V]=useLazyGetSelectOptionsQuery(),[F,K]=React.useState([]),J=ee=>tr(this,null,function*(){const te=yield V({fieldType:"companies",query:ee});K((te==null?void 0:te.data)||[])});return React.createElement(Form$1.Item,{label:$,name:C,rules:[{required:!0,message:"Please select a company"}],layout:"vertical",className:styles$q.field},React.createElement(Select$1,{mode:"tags",maxCount:1,options:F,showSearch:!0,filterOption:!1,onSearch:J}))}function Top5Skills({fieldName:C,label:$}){const V=reactRedux.useSelector(J=>J.scalantCareerHub.dashboard.userProfileData),F=(V==null?void 0:V.experienceBasedSkills)||[],K=getSkillOptions(F);return React.createElement(Space$1,{className:styles$q.fieldGroup},React.createElement(Form$1.Item,{label:$,name:C,rules:[{required:!0,message:"Please select upto 5 primary skills"}],className:styles$q.field},React.createElement(Select$1,{options:K,mode:"multiple",showSearch:!1})))}function GradYear({fieldName:C,label:$}){return React.createElement(Form$1.Item,{label:$,name:C,rules:[{required:!0,message:"Please select graduation year"}],className:styles$q.field},React.createElement(Select$1,{showSearch:!0,options:[...Array(71)].map((V,F)=>{const K=new Date().getFullYear()-60+F;return{label:K,value:`${K}-01-01`}}).reverse()}))}function CurrentLocation({fieldName:C,fieldProps:$,label:V}){return React.createElement(Form$1.Item,{label:V,name:C,rules:[{required:!0,message:"Please select current location"}],className:styles$q.field},React.createElement(Select$1,zn({},$)))}function NoticePeriod({label:C}){const $=Form$1.useWatch(NOTICE_PERIOD_FIELD_MAP.notice_period)==="-1";return React.createElement(Space$1,{className:styles$q.fieldGroup},React.createElement(Space$1,{className:classNames(styles$q.fieldGroup,styles$q.checkboxFieldGroup)},React.createElement(Form$1.Item,{label:C,name:NOTICE_PERIOD_FIELD_MAP.notice_period,rules:[{required:!0,message:"Please select notice period"}],className:classNames(styles$q.field,styles$q.checkboxAdjacentField)},React.createElement(Select$1,{options:NOTICE_PERIOD_OPTIONS})),React.createElement(Form$1.Item,{name:NOTICE_PERIOD_FIELD_MAP.buyout_notice,className:styles$q.field,valuePropName:"checked"},React.createElement(Checkbox$1,null,"Negotiable / Buyout available"))),$&&React.createElement(Form$1.Item,{label:"Last Date of Job",name:NOTICE_PERIOD_FIELD_MAP.available_joining_date,rules:[{required:!0,message:"Please enter last date"}],className:styles$q.field},React.createElement(Input$1,{type:"date"})))}function PreferredLocation({fieldName:C,label:$,fieldProps:V}){const F=Form$1.useWatch(CHECKBOX_FIELD_MAP.preferred_location_anywhere_in_india);return React.createElement(Space$1,{className:classNames(styles$q.fieldGroup,styles$q.checkboxFieldGroup)},React.createElement(Form$1.Item,{label:$,name:C,className:classNames(styles$q.field,styles$q.checkboxAdjacentField)},React.createElement(Select$1,gr(zn({},V),{disabled:F}))),React.createElement(Form$1.Item,{name:CHECKBOX_FIELD_MAP.preferred_location_anywhere_in_india,valuePropName:"checked"},React.createElement(Checkbox$1,null,"Anywhere in India")))}function TotalYearsOfExperience(){return React.createElement(Space$1,{className:styles$q.fieldGroup},React.createElement(Form$1.Item,{label:"Experience Years",name:EXPERIENCE_FIELD_MAP.years_of_experience,rules:[{required:!0,message:"Please select years of experience"}],className:styles$q.field},React.createElement(Select$1,{options:YEAR_OPTIONS,showSearch:!0})),React.createElement(Form$1.Item,{label:"Experience Months",name:EXPERIENCE_FIELD_MAP.months_of_experience,rules:[{required:!0,message:"Please select months of experience"}],className:styles$q.field},React.createElement(Select$1,{options:MONTH_OPTIONS,showSearch:!0})))}const NON_CUSTOM_FIELD_MAP={expected_ctc:"expected_ctc",current_ctc:"current_ctc",orgyear:"orgyear",linkedin:"linkedin",current_company:"current_company",current_location:"current_location",preferred_location:"preferred_location",notice_period:"notice_period",experience:"experience",skills:"skills"},CHECKBOX_FIELD_MAP={preferred_location_anywhere_in_india:"preferred_location_anywhere_in_india"},EXPERIENCE_FIELD_MAP={years_of_experience:"years_of_experience",months_of_experience:"months_of_experience"},NOTICE_PERIOD_FIELD_MAP={notice_period:"notice_period",serving_notice:"serving_notice",available_joining_date:"available_joining_date",buyout_notice:"buyout_notice"},LOCATION_FIELD_MAP={current_location:"current_location",preferred_location:"preferred_location"},NON_CUSTOM_FIELDS=Object.values(NON_CUSTOM_FIELD_MAP),NON_CUSTOM_FIELD_COMPONENT_MAPPING={[NON_CUSTOM_FIELD_MAP.expected_ctc]:{component:CTC,props:{fieldName:"expected_ctc",label:"Expected CTC",fieldProps:{type:"number",min:0}}},[NON_CUSTOM_FIELD_MAP.current_ctc]:{component:CTC,props:{fieldName:"current_ctc",label:"Current CTC",fieldProps:{type:"number",min:0}}},[NON_CUSTOM_FIELD_MAP.current_location]:{component:CurrentLocation,props:{fieldName:NON_CUSTOM_FIELD_MAP.current_location,label:"Current Locations",fieldProps:{options:((er=window==null?void 0:window[HYDRATION_KEY])==null?void 0:er.job_locations)||[],mode:"multiple"}}},[NON_CUSTOM_FIELD_MAP.preferred_location]:{component:PreferredLocation,props:{fieldName:NON_CUSTOM_FIELD_MAP.preferred_location,label:"Preferred Locations",fieldProps:{options:((nr=window==null?void 0:window[HYDRATION_KEY])==null?void 0:nr.job_locations)||[],mode:"multiple"}}},[NON_CUSTOM_FIELD_MAP.orgyear]:{component:GradYear,props:{fieldName:NON_CUSTOM_FIELD_MAP.orgyear,label:"Graduation Year"}},[NON_CUSTOM_FIELD_MAP.linkedin]:{component:Linkedin,props:{fieldName:NON_CUSTOM_FIELD_MAP.linkedin,label:"LinkedIn profile",fieldProps:{type:"url"}}},[NON_CUSTOM_FIELD_MAP.current_company]:{component:Company,props:{fieldName:NON_CUSTOM_FIELD_MAP.current_company,label:"Company"}},[NON_CUSTOM_FIELD_MAP.notice_period]:{component:NoticePeriod,props:{fieldName:NON_CUSTOM_FIELD_MAP.notice_period,label:"Notice Period"}},[NON_CUSTOM_FIELD_MAP.experience]:{component:TotalYearsOfExperience,props:{fieldName:NON_CUSTOM_FIELD_MAP.experience,label:"Total Years of Experience"}},[NON_CUSTOM_FIELD_MAP.skills]:{component:Top5Skills,props:{fieldName:NON_CUSTOM_FIELD_MAP.skills,label:"Select upto 5 primary skills that you want to share to recruiters"}}},YEAR_OPTIONS=new Array(50).fill(0).map((C,$)=>({label:`${$} Years`,value:`${$}`})),MONTH_OPTIONS=new Array(12).fill(0).map((C,$)=>({label:`${$} Months`,value:`${$}`})),NOTICE_PERIOD_OPTIONS=[{value:"-1",label:"Currently Serving"},{value:"0",label:"Immediately Available"},{value:"15",label:"15 Days"},{value:"30",label:"30 Days"},{value:"45",label:"45 Days"},{value:"60",label:"60 Days"},{value:"90",label:"90 Days"}],ANYWHERE_IN_INDIA="anywhere_in_india",getSkillOptions=C=>(C==null?void 0:C.map($=>{var K,J,ee,te;const V=((K=$.proficiency_period)==null?void 0:K.years)||((J=$.proficiencyPeriod)==null?void 0:J.years),F=((ee=$.proficiency_period)==null?void 0:ee.months)||((te=$.proficiencyPeriod)==null?void 0:te.months);return{label:`${$.name} (${V}Y ${F}M)`,value:`${$.skillId}`}}))||[],CUSTOM_FIELD_TYPE_MAP={text:"text",date_time:"date_time",upload:"upload",number:"number"},getInitialFormData=C=>{const $=Object.fromEntries(Object.entries(C).map(([J,ee])=>{switch(J){case NON_CUSTOM_FIELD_MAP.current_location:return[J,ee==null?void 0:ee.split("/")];case NON_CUSTOM_FIELD_MAP.preferred_location:return ee===ANYWHERE_IN_INDIA?[J,null]:[J,ee==null?void 0:ee.split("/")];case NON_CUSTOM_FIELD_MAP.skills:return[J,ee==null?void 0:ee.map(te=>te.skill_id)];default:return[J,ee]}})),V=C[NON_CUSTOM_FIELD_MAP.notice_period]||{},F=C[NON_CUSTOM_FIELD_MAP.experience]||{},K=C[NON_CUSTOM_FIELD_MAP.preferred_location];return Object.entries(V).forEach(([J,ee])=>{J===NOTICE_PERIOD_FIELD_MAP.buyout_notice?$[J]=ee==="true":$[J]=ee}),Object.entries(F).forEach(([J,ee])=>{$[J]=ee}),$[CHECKBOX_FIELD_MAP.preferred_location_anywhere_in_india]=K===ANYWHERE_IN_INDIA,$},getInitialCustomFormData=C=>C.reduce((V,F)=>gr(zn({},V),{[F.id]:F.response}),{}),createNoticePeriodFieldPayload=C=>gr(zn({},C),{[NOTICE_PERIOD_FIELD_MAP.serving_notice]:C[NOTICE_PERIOD_FIELD_MAP.notice_period]==="-1"}),createExperienceFieldPayload=C=>{let $=0;return $+=(Number(C[EXPERIENCE_FIELD_MAP.years_of_experience])||0)*12,$+=Number(C[EXPERIENCE_FIELD_MAP.months_of_experience])||0,$},createSkillsFieldPayload=(C,$)=>$.map(V=>gr(zn({},V),{is_top_5:C==null?void 0:C.includes(String(V.skillId))})),createCustomFieldsPayload=C=>{const $=Object.keys(NON_CUSTOM_FIELD_MAP)+Object.keys(CHECKBOX_FIELD_MAP)+Object.keys(EXPERIENCE_FIELD_MAP)+Object.keys(NOTICE_PERIOD_FIELD_MAP);return Object.entries(C).filter(([V])=>!$.includes(V)).map(([V,F])=>({id:V,response:F}))},createDefaultFieldsPayload=(C,$)=>{const V={};Object.entries(C).forEach(([J,ee])=>{NON_CUSTOM_FIELDS.includes(J)&&(LOCATION_FIELD_MAP[J]?V[J]=ee==null?void 0:ee.join("/"):V[J]=ee)});const F={},K={};return Object.entries(C).forEach(([J,ee])=>{NOTICE_PERIOD_FIELD_MAP[J]?F[J]=ee:EXPERIENCE_FIELD_MAP[J]?K[J]=ee:CHECKBOX_FIELD_MAP.preferred_location_anywhere_in_india===J&&ee&&(V[NON_CUSTOM_FIELD_MAP.preferred_location]=ANYWHERE_IN_INDIA)}),V[NON_CUSTOM_FIELD_MAP.notice_period]=createNoticePeriodFieldPayload(F),V[NON_CUSTOM_FIELD_MAP.experience]=createExperienceFieldPayload(K),V[NON_CUSTOM_FIELD_MAP.skills]=createSkillsFieldPayload(C[NON_CUSTOM_FIELD_MAP.skills],$),V},createApplicationFormPayload=(C,$)=>({default_fields:createDefaultFieldsPayload(C,$),custom_fields:createCustomFieldsPayload(C)});function GenericField({formType:C,field:$}){return React.createElement(Form$1.Item,{label:$.attributes.title,name:$.id,rules:[{required:!0,message:`${$.attributes.title} is required`}],layout:"vertical",className:styles$q.field},React.createElement(Input$1,{type:C}))}function UploadField({field:C}){const{onUploadFile:$}=useApplicationFormContext(),[V,F]=React.useState(!1),K=Form$1.useFormInstance(),J=Form$1.useWatch(C.id)||{},ee=te=>tr(this,null,function*(){var re,ae;const ne=(ae=(re=te==null?void 0:te.target)==null?void 0:re.files)==null?void 0:ae[0];if(ne){F(!0),K.setFieldValue(C.id,{file_name:ne.name});try{if($){const oe=yield $(ne);K.setFieldValue(C.id,{file_name:ne.name,file_url:oe}),message$1.success("File uploaded successfully")}else throw new Error("Upload file function not provided")}catch(oe){message$1.error("Failed to upload file")}finally{F(!1)}}});return React.createElement(Form$1.Item,{label:C.attributes.title,name:C.id,rules:[{required:!0,message:`${C.attributes.title} is required`}],layout:"vertical",className:styles$q.field},React.createElement(Upload$1,{multiple:!1,accept:".pdf,.doc,.docx,.txt,.md",showUploadList:!1,beforeUpload:()=>!1,onChange:({file:te})=>{if(te){const ne={target:{files:[te.originFileObj||te]}};ee(ne)}},disabled:V},React.createElement(Button$2,{className:styles$q.field,loading:V,icon:!!J.file_name&&React.createElement(CheckCircleFilled$1,null)},!!J.file_name&&J.file_name,!J.file_name&&!V&&"Upload File")))}function CustomField({field:C}){switch(C.attributes.form_type){case CUSTOM_FIELD_TYPE_MAP.upload:return React.createElement(UploadField,{field:C});case CUSTOM_FIELD_TYPE_MAP.date_time:return React.createElement(GenericField,{formType:"date",field:C});default:return React.createElement(GenericField,{formType:C.attributes.form_type,field:C})}}const form="_form_1ip4j_1",styles$p={form};function NonCustomField({field:C}){var K;if(!NON_CUSTOM_FIELD_COMPONENT_MAPPING[(K=C==null?void 0:C.attributes)==null?void 0:K.title])return null;const{title:$}=C.attributes,{component:V,props:F}=NON_CUSTOM_FIELD_COMPONENT_MAPPING[$];return React.createElement(V,zn({},F))}function ApplicationForm(){const{applicationId:C,stepName:$,jobProfileId:V}=useApplicationFormContext(),{data:F,isLoading:K}=useApplicationForm({jobProfileId:V,applicationId:C,status:$}),[J]=Form$1.useForm(),{setFormInstance:ee}=useApplicationFormContext(),te=React.useMemo(()=>F==null?void 0:F.reduce((re,ae)=>(ae.attributes.custom||(re[ae.attributes.title]=ae),re),{}),[F]),ne=React.useMemo(()=>F==null?void 0:F.filter(re=>re.attributes.custom),[F]);return React.useEffect(()=>{if(!te||!ne)return;const re=Object.fromEntries(Object.entries(te).map(([oe,ie])=>[oe,ie.attributes.response])),ae=ne.map(oe=>({id:oe.id,response:oe.attributes.response}));J.setFieldsValue(zn(zn({},getInitialFormData(re)),getInitialCustomFormData(ae)))},[te,ne,J]),React.useEffect(()=>{ee(J)},[J,ee]),K||!te||!ne?React.createElement(Skeleton$1,{active:!0}):React.createElement(Form$1,{layout:"vertical",className:styles$p.form,form:J},NON_CUSTOM_FIELDS.map(re=>React.createElement(NonCustomField,{key:re,field:te[re]})),Object.entries(ne).map(([re,ae])=>React.createElement(CustomField,{key:re,field:ae})))}const fitmentService=careerHubApi.injectEndpoints({endpoints:C=>({getFitment:C.query({query:({jobProfileId:$})=>({url:"/api/v3/user-resumes/job-fitment-evaluation",params:{job_profile_id:$},method:"POST"})})})}),{useGetFitmentQuery}=fitmentService,applicationFormFooterContainer="_applicationFormFooterContainer_x88g1_1",resumeChoiceSelectFooterContainer="_resumeChoiceSelectFooterContainer_x88g1_7",styles$o={applicationFormFooterContainer,resumeChoiceSelectFooterContainer},ApplicationFormFooter=({onCancel:C})=>{const $=reactRedux.useSelector(ce=>ce.scalantCareerHub.dashboard.userProfileData),V=($==null?void 0:$.experienceBasedSkills)||[],{applicationId:F,formInstance:K,jobProfileId:J,stepName:ee,setStepName:te,fitmentCheckEnabled:ne}=useApplicationFormContext(),{analytics:re}=useJobPreview(),[ae,{isLoading:oe}]=useUpdateApplicationMutation(),ie=()=>tr(this,null,function*(){var ce,ue;re==null||re.click("Application Form - Next",PRODUCT_NAME);try{const le={job_profile_id:J,step_name:ee,form_data:createApplicationFormPayload(K.getFieldsValue(),V)},ve=yield ae({applicationId:F,payload:le});(ce=ve==null?void 0:ve.data)!=null&&ce.success&&ne?te(APPLICATION_STATUS$1.RESUME_FITMENT_CHECK):(ue=ve==null?void 0:ve.data)!=null&&ue.success?te(APPLICATION_STATUS$1.RESUME_CHOICE_SELECT):message$1.error("Failed to update application")}catch(le){console.error(le),message$1.error("Failed to update application")}}),se=()=>{re==null||re.click("Application Form - Cancel",PRODUCT_NAME),C()};return React.createElement(Space$1,{className:styles$o.applicationFormFooterContainer},React.createElement(Button$2,{onClick:se},"Cancel"),React.createElement(Button$2,{loading:oe,type:"primary",onClick:ie},"Next"))},ResumeChoiceSelectFooter=()=>{const{applicationId:C,selectedResume:$,jobProfileId:V,stepName:F,setStepName:K}=useApplicationFormContext(),{analytics:J}=useJobPreview(),[ee,{isLoading:te}]=useUpdateApplicationMutation(),ne=()=>{J==null||J.click("Resume Choice - Go Back",PRODUCT_NAME),K(APPLICATION_STATUS$1.APPLICATION_FORM)},re=()=>tr(this,null,function*(){var ae;J==null||J.click("Resume Choice - Proceed to Apply",PRODUCT_NAME);try{const ie=yield ee({applicationId:C,payload:{job_profile_id:V,step_name:F,resume_id:$}});(ae=ie==null?void 0:ie.data)!=null&&ae.success?K(APPLICATION_STATUS$1.SUCCESSFULLY_APPLIED):message$1.error("Failed to update application")}catch(oe){console.error(oe),message$1.error("Failed to update application")}});return React.createElement(Space$1,{className:styles$o.resumeChoiceSelectFooterContainer},React.createElement(Space$1,null,React.createElement(BulbTwoTone$1,null),React.createElement(Typography$1.Text,{strong:!0},"Quick Tip: "),React.createElement(Typography$1.Text,null,"Complete the improvements to boost your hiring chances")),React.createElement(Space$1,null,React.createElement(Button$2,{onClick:ne},"Go Back"),React.createElement(Button$2,{type:"primary",onClick:re,loading:te,disabled:!$},"Proceed to Apply")))},ResumeFitmentCheckErrorFooter=()=>{const{setStepName:C,jobProfileId:$}=useApplicationFormContext(),{analytics:V}=useJobPreview(),{refetch:F}=useGetFitmentQuery({jobProfileId:$}),K=()=>{C(APPLICATION_STATUS$1.RESUME_CHOICE_SELECT),V==null||V.click("Resume Fitment Check Error - Skip Fitment Check",PRODUCT_NAME)},J=()=>{F(),C(APPLICATION_STATUS$1.RESUME_FITMENT_CHECK),V==null||V.click("Resume Fitment Check Error - Retry Fitment Check",PRODUCT_NAME)};return React.createElement(Space$1,{className:styles$o.applicationFormFooterContainer},React.createElement(Button$2,{onClick:K},"Continue to Application"),React.createElement(Button$2,{type:"primary",onClick:J},"Generate your Resume Score"))};function Footer$1({onCancel:C}){const{stepName:$}=useApplicationFormContext();switch($){case APPLICATION_STATUS$1.APPLICATION_FORM:return React.createElement(ApplicationFormFooter,{onCancel:C});case APPLICATION_STATUS$1.RESUME_CHOICE_SELECT:return React.createElement(ResumeChoiceSelectFooter,null);case APPLICATION_STATUS$1.RESUME_FITMENT_CHECK_ERROR:return React.createElement(ResumeFitmentCheckErrorFooter,null);default:return null}}const transformJobsData=C=>{if(!C||!(C!=null&&C.data)||!Array.isArray(C==null?void 0:C.data))return[];const $={};return C!=null&&C.included&&Array.isArray(C==null?void 0:C.included)&&(C==null||C.included.forEach(V=>{V.type==="company"&&V.attributes&&($[V.id]=V.attributes)})),C==null?void 0:C.data.map(V=>{if(V.type!=="job_profile"||!V.attributes)return null;const F=V.attributes,K=V.relationships||{};let J=null;if(K.company&&K.company.data){const te=K.company.data.id;J=$[te]||null}return{id:parseInt(V.id,10),title:F.title||"",name:F.title||"",slug:F.slug||"",jobDesc:F.job_desc||"",jobDescText:F.job_desc_text||"",minExperience:F.min_experience?parseFloat(F.min_experience):null,maxExperience:F.max_experience?parseFloat(F.max_experience):null,minCtc:F.min_ctc?parseFloat(F.min_ctc):null,maxCtc:F.max_ctc?parseFloat(F.max_ctc):null,validTill:F.valid_till||null,createdAt:F.created_at||null,jobType:F.job_type||null,preferredCities:F.preferred_cities||"",preferredNoticePeriod:F.preferred_notice_period||null,meritBasedSkills:F.merit_based_skills||[],contestSkills:F.contest_skills||[],applicationStatus:F.application_status||null,expiry:F.expiry||null,applicationId:F.application_id||null,userCompanyStatus:F.user_company_status||null,applicationLastUpdatedAt:F.application_last_upated_at||null,jobSource:F.job_source||null,jobProfileId:F.job_profile_id||null,jobProfileStatus:F.job_profile_status||"active",datePostedOn:F.date_posted_on||null,openForDiscussionCtc:F.open_for_discussion_ctc||!1,appliedOn:F.applied_on||null,seniorityLevel:F.seniority_level||null,roleType:F.role_type||"full_time",duration:F.duration||null,stipend:F.stipend||null,eligibilityCriteria:F.eligibility_criteria||{is_eligible:!1,reasons:[]},exceptionalJob:F.exceptional_job||!1,isRelevant:F.is_relevant||!1,isInternship:F.role_type==="internship",company:J?[parseInt(K.company.data.id,10)]:[],logo:(J==null?void 0:J.logo)||null,companyName:(J==null?void 0:J.name)||null,companySlug:(J==null?void 0:J.slug)||null,companyLocation:(J==null?void 0:J.location)||null,companyWebsite:(J==null?void 0:J.company_website)||null,companyVision:(J==null?void 0:J.company_vision)||null,companyTagline:(J==null?void 0:J.tagline)||null,companyCategory:(J==null?void 0:J.category)||null,companyEmployeeCount:(J==null?void 0:J.employee_count)||null}}).filter(Boolean)},createCompaniesMap=C=>{const $={};return C!=null&&C.included&&Array.isArray(C.included)&&C.included.forEach(V=>{V.type==="company"&&V.attributes&&($[V.id]=zn({id:V.id},V.attributes))}),$},normalizeJobsResponse=(C={})=>{var J,ee,te,ne;const $=C.jobs_data||C,V=transformJobsData($),F=createCompaniesMap($),K=(ne=(te=(J=C.total_entries)!=null?J:$.total_entries)!=null?te:(ee=$==null?void 0:$.meta)==null?void 0:ee.total_entries)!=null?ne:null;return{jobs:V,companiesMap:F,results:V,totalEntries:K}},jobsService=careerHubApi.injectEndpoints({endpoints:C=>({fetchAllJobs:C.query({query:($={})=>({url:"/job-tracker/fetch-all-jobs/",method:"POST",body:$}),transformResponse:normalizeJobsResponse,providesTags:["Jobs"]}),fetchPipelineJobs:C.query({query:($={})=>({url:"/job-tracker/fetch-pipeline-jobs/",method:"POST",body:$}),transformResponse:normalizeJobsResponse,providesTags:["PipelineJobs"]}),fetchRelevantJobs:C.query({query:($={})=>({url:"/job-tracker/relevancy/",method:"POST",body:gr(zn({},$),{include_exceptional_jobs:!0})}),transformResponse:normalizeJobsResponse,providesTags:["RelevantJobs"]})})}),{useFetchAllJobsQuery,useFetchPipelineJobsQuery,useFetchRelevantJobsQuery,util:jobsServiceUtil}=jobsService,stepText="_stepText_14qm3_1",titleContainer$1="_titleContainer_14qm3_5",titleIcon="_titleIcon_14qm3_9",titleText="_titleText_14qm3_14",styles$n={stepText,titleContainer:titleContainer$1,titleIcon,titleText},{Text:Text$4}=Typography$1,STEP_MAP={[APPLICATION_STATUS$1.APPLICATION_FORM]:{currentStep:1,icon:InfoCircleFilled$1,title:"Required Details",totalSteps:2},[APPLICATION_STATUS$1.RESUME_FITMENT_CHECK]:{currentStep:2,icon:FileTextTwoTone$1,title:"Select which Resume to share for this job application",totalSteps:2},[APPLICATION_STATUS$1.RESUME_FITMENT_CHECK_ERROR]:{currentStep:2,icon:FileTextTwoTone$1,title:"Select which Resume to share for this job application",totalSteps:2},[APPLICATION_STATUS$1.RESUME_CHOICE_SELECT]:{currentStep:2,icon:FileTextTwoTone$1,title:"Select which Resume to share for this job application",totalSteps:2},[APPLICATION_STATUS$1.SUCCESSFULLY_APPLIED]:{currentStep:2,icon:FileTextTwoTone$1,title:"Select which Resume to share for this job application",totalSteps:2}};function FormHeader({onClose:C}){const{stepName:$,jobProfileId:V}=useApplicationFormContext(),{analytics:F}=useJobPreview(),{updateTab:K}=useJobQueryParams({syncToURL:!0,syncFromURL:!1}),{refetch:J}=useGetJobPreviewQuery(V,{skip:!V});if(!STEP_MAP[$])return null;const{currentStep:ee,icon:te,title:ne,totalSteps:re}=STEP_MAP[$]||{},ae=()=>{F==null||F.click("Application Form - Close",PRODUCT_NAME),$===APPLICATION_STATUS$1.SUCCESSFULLY_APPLIED&&(jobsServiceUtil.invalidateTags(["PipelineJobs","RelevantJobs","Jobs"]),K(TAG_TO_TAB_MAPPING.applied),J()),C==null||C()};return React.createElement(Flex$1,{justify:"space-between"},React.createElement(Space$1,{className:styles$n.container,direction:"vertical"},React.createElement(Text$4,{className:styles$n.stepText},"Step ",ee,"/",re),React.createElement(Space$1,{className:styles$n.titleContainer},React.createElement(te,{className:styles$n.titleIcon}),React.createElement(Text$4,{className:styles$n.titleText},ne))),React.createElement(Button$2,{icon:React.createElement(CloseOutlined$1,null),type:"text",onClick:ae}))}function commonjsRequire(C){throw new Error('Could not dynamically require "'+C+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}var pdf={exports:{}};const __viteBrowserExternal={},__viteBrowserExternal$1=Object.freeze(Object.defineProperty({__proto__:null,default:__viteBrowserExternal},Symbol.toStringTag,{value:"Module"})),require$$5=getAugmentedNamespace(__viteBrowserExternal$1);(function(module,exports){(function($,V){module.exports=V()})(commonjsGlobal,function(){return(()=>{var __webpack_modules__=[,(C,$,V)=>{function F(Le){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?F=function(Pe){return typeof Pe}:F=function(Pe){return Pe&&typeof Symbol=="function"&&Pe.constructor===Symbol&&Pe!==Symbol.prototype?"symbol":typeof Pe},F(Le)}Object.defineProperty($,"__esModule",{value:!0}),$.StatTimer=$.RenderingCancelledException=$.PixelsPerInch=$.PageViewport=$.PDFDateString=$.LinkTarget=$.DOMStandardFontDataFactory=$.DOMSVGFactory=$.DOMCanvasFactory=$.DOMCMapReaderFactory=void 0,$.addLinkAttributes=De,$.deprecated=Xe,$.getFilenameFromUrl=Ae,$.getPdfFilenameFromUrl=ke,$.getXfaPageViewport=Ue,$.isDataScheme=Oe,$.isPdfFile=Te,$.isValidFetchUrl=ze,$.loadScript=Ve;var K=te(V(2)),J=V(4),ee=V(135);function te(Le){return Le&&Le.__esModule?Le:{default:Le}}function ne(Le,we){var Pe=typeof Symbol!="undefined"&&Le[Symbol.iterator]||Le["@@iterator"];if(!Pe){if(Array.isArray(Le)||(Pe=re(Le))||we&&Le&&typeof Le.length=="number"){Pe&&(Le=Pe);var Me=0,He=function(){};return{s:He,n:function(){return Me>=Le.length?{done:!0}:{done:!1,value:Le[Me++]}},e:function(it){throw it},f:He}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
|
|
435
435
|
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var We=!0,Ke=!1,rt;return{s:function(){Pe=Pe.call(Le)},n:function(){var it=Pe.next();return We=it.done,it},e:function(it){Ke=!0,rt=it},f:function(){try{!We&&Pe.return!=null&&Pe.return()}finally{if(Ke)throw rt}}}}function re(Le,we){if(Le){if(typeof Le=="string")return ae(Le,we);var Pe=Object.prototype.toString.call(Le).slice(8,-1);if(Pe==="Object"&&Le.constructor&&(Pe=Le.constructor.name),Pe==="Map"||Pe==="Set")return Array.from(Le);if(Pe==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(Pe))return ae(Le,we)}}function ae(Le,we){(we==null||we>Le.length)&&(we=Le.length);for(var Pe=0,Me=new Array(we);Pe<we;Pe++)Me[Pe]=Le[Pe];return Me}function oe(Le,we,Pe,Me,He,We,Ke){try{var rt=Le[We](Ke),st=rt.value}catch(it){Pe(it);return}rt.done?we(st):Promise.resolve(st).then(Me,He)}function ie(Le){return function(){var we=this,Pe=arguments;return new Promise(function(Me,He){var We=Le.apply(we,Pe);function Ke(st){oe(We,Me,He,Ke,rt,"next",st)}function rt(st){oe(We,Me,He,Ke,rt,"throw",st)}Ke(void 0)})}}function se(Le,we){if(!(Le instanceof we))throw new TypeError("Cannot call a class as a function")}function ce(Le,we){for(var Pe=0;Pe<we.length;Pe++){var Me=we[Pe];Me.enumerable=Me.enumerable||!1,Me.configurable=!0,"value"in Me&&(Me.writable=!0),Object.defineProperty(Le,Me.key,Me)}}function ue(Le,we,Pe){return we&&ce(Le.prototype,we),Pe&&ce(Le,Pe),Le}function le(Le,we){if(typeof we!="function"&&we!==null)throw new TypeError("Super expression must either be null or a function");Le.prototype=Object.create(we&&we.prototype,{constructor:{value:Le,writable:!0,configurable:!0}}),we&&ve(Le,we)}function ve(Le,we){return ve=Object.setPrototypeOf||function(Me,He){return Me.__proto__=He,Me},ve(Le,we)}function fe(Le){var we=de();return function(){var Me=me(Le),He;if(we){var We=me(this).constructor;He=Reflect.construct(Me,arguments,We)}else He=Me.apply(this,arguments);return ge(this,He)}}function ge(Le,we){if(we&&(F(we)==="object"||typeof we=="function"))return we;if(we!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return pe(Le)}function pe(Le){if(Le===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return Le}function de(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(Le){return!1}}function me(Le){return me=Object.setPrototypeOf?Object.getPrototypeOf:function(Pe){return Pe.__proto__||Object.getPrototypeOf(Pe)},me(Le)}var ye="noopener noreferrer nofollow",_e="http://www.w3.org/2000/svg",he={CSS:96,PDF:72,get PDF_TO_CSS_UNITS(){return(0,J.shadow)(this,"PDF_TO_CSS_UNITS",this.CSS/this.PDF)}};$.PixelsPerInch=he;var be=function(Le){le(Pe,Le);var we=fe(Pe);function Pe(){var Me,He=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},We=He.ownerDocument,Ke=We===void 0?globalThis.document:We;return se(this,Pe),Me=we.call(this),Me._document=Ke,Me}return ue(Pe,[{key:"_createCanvas",value:function(He,We){var Ke=this._document.createElement("canvas");return Ke.width=He,Ke.height=We,Ke}}]),Pe}(ee.BaseCanvasFactory);$.DOMCanvasFactory=be;function Se(Le){return Re.apply(this,arguments)}function Re(){return Re=ie(K.default.mark(function Le(we){var Pe,Me,He=arguments;return K.default.wrap(function(Ke){for(;;)switch(Ke.prev=Ke.next){case 0:if(Pe=He.length>1&&He[1]!==void 0?He[1]:!1,!ze(we,document.baseURI)){Ke.next=21;break}return Ke.next=4,fetch(we);case 4:if(Me=Ke.sent,Me.ok){Ke.next=7;break}throw new Error(Me.statusText);case 7:if(!Pe){Ke.next=15;break}return Ke.t1=Uint8Array,Ke.next=11,Me.arrayBuffer();case 11:Ke.t2=Ke.sent,Ke.t0=new Ke.t1(Ke.t2),Ke.next=20;break;case 15:return Ke.t3=J.stringToBytes,Ke.next=18,Me.text();case 18:Ke.t4=Ke.sent,Ke.t0=(0,Ke.t3)(Ke.t4);case 20:return Ke.abrupt("return",Ke.t0);case 21:return Ke.abrupt("return",new Promise(function(rt,st){var it=new XMLHttpRequest;it.open("GET",we,!0),Pe&&(it.responseType="arraybuffer"),it.onreadystatechange=function(){if(it.readyState===XMLHttpRequest.DONE){if(it.status===200||it.status===0){var Je;if(Pe&&it.response?Je=new Uint8Array(it.response):!Pe&&it.responseText&&(Je=(0,J.stringToBytes)(it.responseText)),Je){rt(Je);return}}st(new Error(it.statusText))}},it.send(null)}));case 22:case"end":return Ke.stop()}},Le)})),Re.apply(this,arguments)}var Ce=function(Le){le(Pe,Le);var we=fe(Pe);function Pe(){return se(this,Pe),we.apply(this,arguments)}return ue(Pe,[{key:"_fetchData",value:function(He,We){return Se(He,this.isCompressed).then(function(Ke){return{cMapData:Ke,compressionType:We}})}}]),Pe}(ee.BaseCMapReaderFactory);$.DOMCMapReaderFactory=Ce;var xe=function(Le){le(Pe,Le);var we=fe(Pe);function Pe(){return se(this,Pe),we.apply(this,arguments)}return ue(Pe,[{key:"_fetchData",value:function(He){return Se(He,!0)}}]),Pe}(ee.BaseStandardFontDataFactory);$.DOMStandardFontDataFactory=xe;var $e=function(Le){le(Pe,Le);var we=fe(Pe);function Pe(){return se(this,Pe),we.apply(this,arguments)}return ue(Pe,[{key:"_createSVG",value:function(He){return document.createElementNS(_e,He)}}]),Pe}(ee.BaseSVGFactory);$.DOMSVGFactory=$e;var Ie=function(){function Le(we){var Pe=we.viewBox,Me=we.scale,He=we.rotation,We=we.offsetX,Ke=We===void 0?0:We,rt=we.offsetY,st=rt===void 0?0:rt,it=we.dontFlip,Je=it===void 0?!1:it;se(this,Le),this.viewBox=Pe,this.scale=Me,this.rotation=He,this.offsetX=Ke,this.offsetY=st;var ct=(Pe[2]+Pe[0])/2,dt=(Pe[3]+Pe[1])/2,vt,ht,bt,Rt;switch(He%=360,He<0&&(He+=360),He){case 180:vt=-1,ht=0,bt=0,Rt=1;break;case 90:vt=0,ht=1,bt=1,Rt=0;break;case 270:vt=0,ht=-1,bt=-1,Rt=0;break;case 0:vt=1,ht=0,bt=0,Rt=-1;break;default:throw new Error("PageViewport: Invalid rotation, must be a multiple of 90 degrees.")}Je&&(bt=-bt,Rt=-Rt);var Tt,lt,ut,Ge;vt===0?(Tt=Math.abs(dt-Pe[1])*Me+Ke,lt=Math.abs(ct-Pe[0])*Me+st,ut=Math.abs(Pe[3]-Pe[1])*Me,Ge=Math.abs(Pe[2]-Pe[0])*Me):(Tt=Math.abs(ct-Pe[0])*Me+Ke,lt=Math.abs(dt-Pe[1])*Me+st,ut=Math.abs(Pe[2]-Pe[0])*Me,Ge=Math.abs(Pe[3]-Pe[1])*Me),this.transform=[vt*Me,ht*Me,bt*Me,Rt*Me,Tt-vt*Me*ct-bt*Me*dt,lt-ht*Me*ct-Rt*Me*dt],this.width=ut,this.height=Ge}return ue(Le,[{key:"clone",value:function(){var Pe=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},Me=Pe.scale,He=Me===void 0?this.scale:Me,We=Pe.rotation,Ke=We===void 0?this.rotation:We,rt=Pe.offsetX,st=rt===void 0?this.offsetX:rt,it=Pe.offsetY,Je=it===void 0?this.offsetY:it,ct=Pe.dontFlip,dt=ct===void 0?!1:ct;return new Le({viewBox:this.viewBox.slice(),scale:He,rotation:Ke,offsetX:st,offsetY:Je,dontFlip:dt})}},{key:"convertToViewportPoint",value:function(Pe,Me){return J.Util.applyTransform([Pe,Me],this.transform)}},{key:"convertToViewportRectangle",value:function(Pe){var Me=J.Util.applyTransform([Pe[0],Pe[1]],this.transform),He=J.Util.applyTransform([Pe[2],Pe[3]],this.transform);return[Me[0],Me[1],He[0],He[1]]}},{key:"convertToPdfPoint",value:function(Pe,Me){return J.Util.applyInverseTransform([Pe,Me],this.transform)}}]),Le}();$.PageViewport=Ie;var Fe=function(Le){le(Pe,Le);var we=fe(Pe);function Pe(Me,He){var We;return se(this,Pe),We=we.call(this,Me,"RenderingCancelledException"),We.type=He,We}return Pe}(J.BaseException);$.RenderingCancelledException=Fe;var Ne={NONE:0,SELF:1,BLANK:2,PARENT:3,TOP:4};$.LinkTarget=Ne;function De(Le){var we=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},Pe=we.url,Me=we.target,He=we.rel,We=we.enabled,Ke=We===void 0?!0:We;(0,J.assert)(Pe&&typeof Pe=="string",'addLinkAttributes: A valid "url" parameter must provided.');var rt=(0,J.removeNullCharacters)(Pe);Ke?Le.href=Le.title=rt:(Le.href="",Le.title="Disabled: ".concat(rt),Le.onclick=function(){return!1});var st="";switch(Me){case Ne.NONE:break;case Ne.SELF:st="_self";break;case Ne.BLANK:st="_blank";break;case Ne.PARENT:st="_parent";break;case Ne.TOP:st="_top";break}Le.target=st,Le.rel=typeof He=="string"?He:ye}function Oe(Le){for(var we=Le.length,Pe=0;Pe<we&&Le[Pe].trim()==="";)Pe++;return Le.substring(Pe,Pe+5).toLowerCase()==="data:"}function Te(Le){return typeof Le=="string"&&/\.pdf$/i.test(Le)}function Ae(Le){var we=Le.indexOf("#"),Pe=Le.indexOf("?"),Me=Math.min(we>0?we:Le.length,Pe>0?Pe:Le.length);return Le.substring(Le.lastIndexOf("/",Me)+1,Me)}function ke(Le){var we=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"document.pdf";if(typeof Le!="string")return we;if(Oe(Le))return(0,J.warn)('getPdfFilenameFromUrl: ignore "data:"-URL for performance reasons.'),we;var Pe=/^(?:(?:[^:]+:)?\/\/[^/]+)?([^?#]*)(\?[^#]*)?(#.*)?$/,Me=/[^/?#=]+\.pdf\b(?!.*\.pdf\b)/i,He=Pe.exec(Le),We=Me.exec(He[1])||Me.exec(He[2])||Me.exec(He[3]);if(We&&(We=We[0],We.includes("%")))try{We=Me.exec(decodeURIComponent(We))[0]}catch(Ke){}return We||we}var je=function(){function Le(){se(this,Le),this.started=Object.create(null),this.times=[]}return ue(Le,[{key:"time",value:function(Pe){Pe in this.started&&(0,J.warn)("Timer is already running for ".concat(Pe)),this.started[Pe]=Date.now()}},{key:"timeEnd",value:function(Pe){Pe in this.started||(0,J.warn)("Timer has not been started for ".concat(Pe)),this.times.push({name:Pe,start:this.started[Pe],end:Date.now()}),delete this.started[Pe]}},{key:"toString",value:function(){var Pe=[],Me=0,He=ne(this.times),We;try{for(He.s();!(We=He.n()).done;){var Ke=We.value,rt=Ke.name;rt.length>Me&&(Me=rt.length)}}catch(dt){He.e(dt)}finally{He.f()}var st=ne(this.times),it;try{for(st.s();!(it=st.n()).done;){var Je=it.value,ct=Je.end-Je.start;Pe.push("".concat(Je.name.padEnd(Me)," ").concat(ct,`ms
|
|
436
436
|
`))}}catch(dt){st.e(dt)}finally{st.f()}return Pe.join("")}}]),Le}();$.StatTimer=je;function ze(Le,we){try{var Pe=we?new URL(Le,we):new URL(Le),Me=Pe.protocol;return Me==="http:"||Me==="https:"}catch(He){return!1}}function Ve(Le){var we=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;return new Promise(function(Pe,Me){var He=document.createElement("script");He.src=Le,He.onload=function(We){we&&He.remove(),Pe(We)},He.onerror=function(){Me(new Error("Cannot load script at: ".concat(He.src)))},(document.head||document.documentElement).appendChild(He)})}function Xe(Le){console.log("Deprecated API usage: "+Le)}var Ye,at=function(){function Le(){se(this,Le)}return ue(Le,null,[{key:"toDateObject",value:function(Pe){if(!Pe||!(0,J.isString)(Pe))return null;Ye||(Ye=new RegExp("^D:(\\d{4})(\\d{2})?(\\d{2})?(\\d{2})?(\\d{2})?(\\d{2})?([Z|+|-])?(\\d{2})?'?(\\d{2})?'?"));var Me=Ye.exec(Pe);if(!Me)return null;var He=parseInt(Me[1],10),We=parseInt(Me[2],10);We=We>=1&&We<=12?We-1:0;var Ke=parseInt(Me[3],10);Ke=Ke>=1&&Ke<=31?Ke:1;var rt=parseInt(Me[4],10);rt=rt>=0&&rt<=23?rt:0;var st=parseInt(Me[5],10);st=st>=0&&st<=59?st:0;var it=parseInt(Me[6],10);it=it>=0&&it<=59?it:0;var Je=Me[7]||"Z",ct=parseInt(Me[8],10);ct=ct>=0&&ct<=23?ct:0;var dt=parseInt(Me[9],10)||0;return dt=dt>=0&&dt<=59?dt:0,Je==="-"?(rt+=ct,st+=dt):Je==="+"&&(rt-=ct,st-=dt),new Date(Date.UTC(He,We,Ke,rt,st,it))}}]),Le}();$.PDFDateString=at;function Ue(Le,we){var Pe=we.scale,Me=Pe===void 0?1:Pe,He=we.rotation,We=He===void 0?0:He,Ke=Le.attributes.style,rt=Ke.width,st=Ke.height,it=[0,0,parseInt(rt),parseInt(st)];return new Ie({viewBox:it,scale:Me,rotation:We})}},(C,$,V)=>{C.exports=V(3)},(C,$,V)=>{C=V.nmd(C);function F(J){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?F=function(te){return typeof te}:F=function(te){return te&&typeof Symbol=="function"&&te.constructor===Symbol&&te!==Symbol.prototype?"symbol":typeof te},F(J)}var K=function(J){var ee=Object.prototype,te=ee.hasOwnProperty,ne,re=typeof Symbol=="function"?Symbol:{},ae=re.iterator||"@@iterator",oe=re.asyncIterator||"@@asyncIterator",ie=re.toStringTag||"@@toStringTag";function se(Te,Ae,ke){return Object.defineProperty(Te,Ae,{value:ke,enumerable:!0,configurable:!0,writable:!0}),Te[Ae]}try{se({},"")}catch(Te){se=function(ke,je,ze){return ke[je]=ze}}function ce(Te,Ae,ke,je){var ze=Ae&&Ae.prototype instanceof de?Ae:de,Ve=Object.create(ze.prototype),Xe=new Ne(je||[]);return Ve._invoke=xe(Te,ke,Xe),Ve}J.wrap=ce;function ue(Te,Ae,ke){try{return{type:"normal",arg:Te.call(Ae,ke)}}catch(je){return{type:"throw",arg:je}}}var le="suspendedStart",ve="suspendedYield",fe="executing",ge="completed",pe={};function de(){}function me(){}function ye(){}var _e={};se(_e,ae,function(){return this});var he=Object.getPrototypeOf,be=he&&he(he(De([])));be&&be!==ee&&te.call(be,ae)&&(_e=be);var Se=ye.prototype=de.prototype=Object.create(_e);me.prototype=ye,se(Se,"constructor",ye),se(ye,"constructor",me),me.displayName=se(ye,ie,"GeneratorFunction");function Re(Te){["next","throw","return"].forEach(function(Ae){se(Te,Ae,function(ke){return this._invoke(Ae,ke)})})}J.isGeneratorFunction=function(Te){var Ae=typeof Te=="function"&&Te.constructor;return Ae?Ae===me||(Ae.displayName||Ae.name)==="GeneratorFunction":!1},J.mark=function(Te){return Object.setPrototypeOf?Object.setPrototypeOf(Te,ye):(Te.__proto__=ye,se(Te,ie,"GeneratorFunction")),Te.prototype=Object.create(Se),Te},J.awrap=function(Te){return{__await:Te}};function Ce(Te,Ae){function ke(Ve,Xe,Ye,at){var Ue=ue(Te[Ve],Te,Xe);if(Ue.type==="throw")at(Ue.arg);else{var Le=Ue.arg,we=Le.value;return we&&F(we)==="object"&&te.call(we,"__await")?Ae.resolve(we.__await).then(function(Pe){ke("next",Pe,Ye,at)},function(Pe){ke("throw",Pe,Ye,at)}):Ae.resolve(we).then(function(Pe){Le.value=Pe,Ye(Le)},function(Pe){return ke("throw",Pe,Ye,at)})}}var je;function ze(Ve,Xe){function Ye(){return new Ae(function(at,Ue){ke(Ve,Xe,at,Ue)})}return je=je?je.then(Ye,Ye):Ye()}this._invoke=ze}Re(Ce.prototype),se(Ce.prototype,oe,function(){return this}),J.AsyncIterator=Ce,J.async=function(Te,Ae,ke,je,ze){ze===void 0&&(ze=Promise);var Ve=new Ce(ce(Te,Ae,ke,je),ze);return J.isGeneratorFunction(Ae)?Ve:Ve.next().then(function(Xe){return Xe.done?Xe.value:Ve.next()})};function xe(Te,Ae,ke){var je=le;return function(Ve,Xe){if(je===fe)throw new Error("Generator is already running");if(je===ge){if(Ve==="throw")throw Xe;return Oe()}for(ke.method=Ve,ke.arg=Xe;;){var Ye=ke.delegate;if(Ye){var at=$e(Ye,ke);if(at){if(at===pe)continue;return at}}if(ke.method==="next")ke.sent=ke._sent=ke.arg;else if(ke.method==="throw"){if(je===le)throw je=ge,ke.arg;ke.dispatchException(ke.arg)}else ke.method==="return"&&ke.abrupt("return",ke.arg);je=fe;var Ue=ue(Te,Ae,ke);if(Ue.type==="normal"){if(je=ke.done?ge:ve,Ue.arg===pe)continue;return{value:Ue.arg,done:ke.done}}else Ue.type==="throw"&&(je=ge,ke.method="throw",ke.arg=Ue.arg)}}}function $e(Te,Ae){var ke=Te.iterator[Ae.method];if(ke===ne){if(Ae.delegate=null,Ae.method==="throw"){if(Te.iterator.return&&(Ae.method="return",Ae.arg=ne,$e(Te,Ae),Ae.method==="throw"))return pe;Ae.method="throw",Ae.arg=new TypeError("The iterator does not provide a 'throw' method")}return pe}var je=ue(ke,Te.iterator,Ae.arg);if(je.type==="throw")return Ae.method="throw",Ae.arg=je.arg,Ae.delegate=null,pe;var ze=je.arg;if(!ze)return Ae.method="throw",Ae.arg=new TypeError("iterator result is not an object"),Ae.delegate=null,pe;if(ze.done)Ae[Te.resultName]=ze.value,Ae.next=Te.nextLoc,Ae.method!=="return"&&(Ae.method="next",Ae.arg=ne);else return ze;return Ae.delegate=null,pe}Re(Se),se(Se,ie,"Generator"),se(Se,ae,function(){return this}),se(Se,"toString",function(){return"[object Generator]"});function Ie(Te){var Ae={tryLoc:Te[0]};1 in Te&&(Ae.catchLoc=Te[1]),2 in Te&&(Ae.finallyLoc=Te[2],Ae.afterLoc=Te[3]),this.tryEntries.push(Ae)}function Fe(Te){var Ae=Te.completion||{};Ae.type="normal",delete Ae.arg,Te.completion=Ae}function Ne(Te){this.tryEntries=[{tryLoc:"root"}],Te.forEach(Ie,this),this.reset(!0)}J.keys=function(Te){var Ae=[];for(var ke in Te)Ae.push(ke);return Ae.reverse(),function je(){for(;Ae.length;){var ze=Ae.pop();if(ze in Te)return je.value=ze,je.done=!1,je}return je.done=!0,je}};function De(Te){if(Te){var Ae=Te[ae];if(Ae)return Ae.call(Te);if(typeof Te.next=="function")return Te;if(!isNaN(Te.length)){var ke=-1,je=function ze(){for(;++ke<Te.length;)if(te.call(Te,ke))return ze.value=Te[ke],ze.done=!1,ze;return ze.value=ne,ze.done=!0,ze};return je.next=je}}return{next:Oe}}J.values=De;function Oe(){return{value:ne,done:!0}}return Ne.prototype={constructor:Ne,reset:function(Ae){if(this.prev=0,this.next=0,this.sent=this._sent=ne,this.done=!1,this.delegate=null,this.method="next",this.arg=ne,this.tryEntries.forEach(Fe),!Ae)for(var ke in this)ke.charAt(0)==="t"&&te.call(this,ke)&&!isNaN(+ke.slice(1))&&(this[ke]=ne)},stop:function(){this.done=!0;var Ae=this.tryEntries[0],ke=Ae.completion;if(ke.type==="throw")throw ke.arg;return this.rval},dispatchException:function(Ae){if(this.done)throw Ae;var ke=this;function je(Ue,Le){return Xe.type="throw",Xe.arg=Ae,ke.next=Ue,Le&&(ke.method="next",ke.arg=ne),!!Le}for(var ze=this.tryEntries.length-1;ze>=0;--ze){var Ve=this.tryEntries[ze],Xe=Ve.completion;if(Ve.tryLoc==="root")return je("end");if(Ve.tryLoc<=this.prev){var Ye=te.call(Ve,"catchLoc"),at=te.call(Ve,"finallyLoc");if(Ye&&at){if(this.prev<Ve.catchLoc)return je(Ve.catchLoc,!0);if(this.prev<Ve.finallyLoc)return je(Ve.finallyLoc)}else if(Ye){if(this.prev<Ve.catchLoc)return je(Ve.catchLoc,!0)}else if(at){if(this.prev<Ve.finallyLoc)return je(Ve.finallyLoc)}else throw new Error("try statement without catch or finally")}}},abrupt:function(Ae,ke){for(var je=this.tryEntries.length-1;je>=0;--je){var ze=this.tryEntries[je];if(ze.tryLoc<=this.prev&&te.call(ze,"finallyLoc")&&this.prev<ze.finallyLoc){var Ve=ze;break}}Ve&&(Ae==="break"||Ae==="continue")&&Ve.tryLoc<=ke&&ke<=Ve.finallyLoc&&(Ve=null);var Xe=Ve?Ve.completion:{};return Xe.type=Ae,Xe.arg=ke,Ve?(this.method="next",this.next=Ve.finallyLoc,pe):this.complete(Xe)},complete:function(Ae,ke){if(Ae.type==="throw")throw Ae.arg;return Ae.type==="break"||Ae.type==="continue"?this.next=Ae.arg:Ae.type==="return"?(this.rval=this.arg=Ae.arg,this.method="return",this.next="end"):Ae.type==="normal"&&ke&&(this.next=ke),pe},finish:function(Ae){for(var ke=this.tryEntries.length-1;ke>=0;--ke){var je=this.tryEntries[ke];if(je.finallyLoc===Ae)return this.complete(je.completion,je.afterLoc),Fe(je),pe}},catch:function(Ae){for(var ke=this.tryEntries.length-1;ke>=0;--ke){var je=this.tryEntries[ke];if(je.tryLoc===Ae){var ze=je.completion;if(ze.type==="throw"){var Ve=ze.arg;Fe(je)}return Ve}}throw new Error("illegal catch attempt")},delegateYield:function(Ae,ke,je){return this.delegate={iterator:De(Ae),resultName:ke,nextLoc:je},this.method==="next"&&(this.arg=ne),pe}},J}(F(C)==="object"?C.exports:{});try{regeneratorRuntime=K}catch(J){(typeof globalThis=="undefined"?"undefined":F(globalThis))==="object"?globalThis.regeneratorRuntime=K:Function("r","regeneratorRuntime = r")(K)}},(C,$,V)=>{Object.defineProperty($,"__esModule",{value:!0}),$.VerbosityLevel=$.Util=$.UnknownErrorException=$.UnexpectedResponseException=$.UNSUPPORTED_FEATURES=$.TextRenderingMode=$.StreamType=$.RenderingIntentFlag=$.PermissionFlag=$.PasswordResponses=$.PasswordException=$.PageActionEventType=$.OPS=$.MissingPDFException=$.IsLittleEndianCached=$.IsEvalSupportedCached=$.InvalidPDFException=$.ImageKind=$.IDENTITY_MATRIX=$.FormatError=$.FontType=$.FONT_IDENTITY_MATRIX=$.DocumentActionEventType=$.CMapCompressionType=$.BaseException=$.AnnotationType=$.AnnotationStateModelType=$.AnnotationReviewState=$.AnnotationReplyType=$.AnnotationMode=$.AnnotationMarkedState=$.AnnotationFlag=$.AnnotationFieldFlag=$.AnnotationBorderStyleType=$.AnnotationActionEventType=$.AbortException=void 0,$.arrayByteLength=ft,$.arraysToBytes=yt,$.assert=it,$.bytesToString=qe,$.createObjectURL=gn,$.createPromiseCapability=sn,$.createValidAbsoluteUrl=dt,$.escapeString=Gt,$.getModificationDate=dn,$.getVerbosityLevel=We,$.info=Ke,$.isArrayBuffer=Wt,$.isArrayEqual=Jt,$.isAscii=zt,$.isBool=qt,$.isNum=ln,$.isSameOrigin=Je,$.isString=Cn,$.objectFromMap=Dt,$.objectSize=kt,$.removeNullCharacters=tt,$.setVerbosityLevel=He,$.shadow=vt,$.string32=$t,$.stringToBytes=ot,$.stringToPDFString=Ht,$.stringToUTF16BEString=Ft,$.stringToUTF8String=Vt,$.unreachable=st,$.utf8StringToString=Kt,$.warn=rt,V(5);function F(mt,Ot){for(var pt=0;pt<Ot.length;pt++){var _t=Ot[pt];_t.enumerable=_t.enumerable||!1,_t.configurable=!0,"value"in _t&&(_t.writable=!0),Object.defineProperty(mt,_t.key,_t)}}function K(mt,Ot,pt){return Ot&&F(mt.prototype,Ot),pt&&F(mt,pt),mt}function J(mt){return ne(mt)||te(mt)||ce(mt)||ee()}function ee(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
|
|
437
437
|
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function te(mt){if(typeof Symbol!="undefined"&&mt[Symbol.iterator]!=null||mt["@@iterator"]!=null)return Array.from(mt)}function ne(mt){if(Array.isArray(mt))return ue(mt)}function re(mt,Ot){return ie(mt)||oe(mt,Ot)||ce(mt,Ot)||ae()}function ae(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scalant/career-hub",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.2",
|
|
4
4
|
"description": "Career Hub package for MIT",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/career-hub.umd.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@vitejs/plugin-react": "^4.0.0",
|
|
29
29
|
"vite": "^4.3.9"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "d75d0166f2c6b8409ef9b8a4c3b1d2a3efef62fb",
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"react-pdf": "5.7.2"
|
|
34
34
|
}
|