PlayStation Sony PlayStation 5 Core Console with God of War: Ragnarok with Dual Charger and Grand Theft Auto V (2023)

Detailshttps://prod-ecdn.belk.com/p/playstation-sony-playstation-5-core-console-with-god-of-war-ragnarok-with-dual-charger-and-grand-theft-auto-v/2278BLKMR406170.html$939.99939.99

"; return html;}function copyObjectNameMapDefault(sourceName, sourceValue) { return sourceName;}function copyObject(d, s, nameMap) { var j, k, js, stack = []; if ("function" !== typeof nameMap) { nameMap = copyObjectNameMapDefault; } stack.push({s: s, d: d}); while (0 < stack.length) { p = stack.pop(); s = p.s; d = p.d; for (j in s) { js = nameMap(j, s[j]); if ("string" === typeof s[j]) { d[js] = s[j]; } else { if ("object" === typeof s[j]) { if (Array.isArray(s[j])) { if (U === typeof d[js]) { d[js] = []; } for (k = 0; k < s[j].length; k++) { if ("string" === typeof s[j][k]) { d[js][k] = s[j][k]; } else { if ("object" === typeof s[j][k]) { if (U === typeof d[js][k]) { if (Array.isArray(s[j][k])) { d[js][k] = []; } else { d[js][k] = {}; } } } } stack.push({s: s[j][k], d: d[js][k]}); } } else { if (U === typeof d[j]) { d[js] = {}; } stack.push({s: s[j], d: d[js]}); } } else { d[js] = s[j]; } } } }}function mergeObjects() { var i = 0, n, r = {}, p; for (i = 0; i < arguments.length; i++) { n = arguments[i]; copyObject(r, n); } return r;}function persist() { var _self = this; if (!coms.hasOwnProperty(_self.instance.tagId)) { coms[_self.instance.tagId] = _self; }}function debug(v) { if (U !== typeof v) { if (B !== typeof v) { v = false; } DEBUG = v; } return DEBUG;}function insert(sId, cName, cData, cConfig) { var e = N, instance, html = "", css = "", id, ne, f; e = D.getElementById(sId); if (N === e) { log("script tag id:", sId, "NOT found!"); return; } if (cNames.hasOwnProperty(cName)) { var id = createId("COM"); instance = newInstance(cName, cData, cConfig); instance.instance = {tagId: id}; html += instance.html(); f = D.createDocumentFragment(); ne = D.createElement("DIV"); ne.setAttribute("id", id); if (E !== instance.component["class"]) { ne.setAttribute("class", instance.component["class"]); } ne.innerHTML = html; f.appendChild(ne); e.parentElement.replaceChild(f, e); } else { log("cName:", cName, "NOT found!"); if (F === typeof nextInsert) { nextInsert(sId, cName, cData, cConfig); } }}function attach(sId, tId, cName, cData, cConfig) { var cObj = N, cElem = N; cElem = document.getElementById(tId); if (N !== cElem) { cObj = newInstance(cName, cData, cConfig); if (N !== cObj) { cObj.instance = {tagId: tId}; if (cObj.hasOwnProperty("attach") && F === typeof cObj.attach) { cObj.attach(); } } } else { log("ERROR:", "DOM Element for Component", cName, "with tagId", tId, "NOT found!"); } document.getElementById(sId).remove();}function update(cId, cData) { var cInstance = null; if (coms.hasOwnProperty(cId)) { cInstance = coms[cId]; cInstance.update(cData); } else { log("cId:", cId, "not found!"); }}function getComs() { return coms;}function isNull(v) { return N === v;}function isUndefined(v) { return U === typeof v;}function isBoolean(v) { return B === typeof v;}function isFunction(v) { return F === typeof v;}function isNumber(v) { return "number" === typeof v;}function isString(v) { return S === typeof v;}function isStringEmpty(v) { return E === v;}function isArray(v) { return Array.isArray(v);}function isArrayEmpty(v) { return v.length ? false : true;}function isObject(v) { return O === typeof v;}function isObjectEmpty(v) { var i, c = true; for (i in v) { c = false; break; } return c;}function isObjectNotEmpty(v) { return !isObjectEmpty(v);}function isObjectAndEmpty(v) { return isObject(v) && isObjectEmpty(v);}function isObjectAndNotEmpty(v) { return isObject(v) && isObjectNotEmpty(v);}function isBaseObject(v) { return O === typeof v && N !== v && "Object" === v.constructor.name;}function isBaseObjectAndEmpty(v) { return isBaseObject(v) && isObjectEmpty(v);}function isBaseObjectAndNotEmpty(v) { return isBaseObject() && isObjectNotEmpty(v);}function isEmpty(v) { var i, c; return isNull(v) || isUndefined(v) || isStringEmpty(v) || (isObject(v) && isObjectEmpty(v)) || (isArray(v) && isArrayEmpty(v));}function toBoolean(v, d) { var r = d; if (isUndefined(d) || !isBoolean(d)) { d = false; } if (isNaN(v)) { r = String(!d).toUpperCase() === v.toUpperCase() ? !d : d; } else { r = Number(!d) === v ? !d : d; } return r;}function getUrlParm(url, name) { var str = url, s = str.indexOf(name + "="), e, p, value = ""; if (-1 !== s) { e = str.indexOf("&", s); if (-1 === e) { e = str.length; } p = str.substring(s, e).split("="); if (1 < p.length) { value = p[1]; } } return value;}function addUrlParms(url, parms) { const q = "?", a = "&"; var sep = q, pos = -1, p; if (!url) { url = ""; } pos = url.lastIndexOf(q); if (-1 !== pos) { if (url.length - 1 === pos) { sep = E; } else { sep = a; } } for (p in parms) { if (U !== typeof parms[p] && E !== parms[p]) { url += sep + p + "=" + parms[p]; sep = a; } } return url;}function objPropDef(o, pn, dv, vt, iv, npn) { var i = 1; function isMatch(c, cw, isTyped) { var ret = false, i; if (isFunction(cw)) { ret = cw(c); } else { if (isTyped) { c = typeof c; } if (Array.isArray(cw)) { for (i = 0; i < cw.length; i++) { if (c === cw[i]) { ret = true; break; } } } } return ret; } function isDefault(o, p) { var ret = false; if (o.hasOwnProperty(p) && o[p] !== dv) { if (!isMatch(o[p], vt, true) || isMatch(o[p], iv, false)) { ret = true; } } else { ret = true; } return ret; } if (isString(npn)) { if (isDefault(o, npn)) { if (isDefault(o, pn)) { o[npn] = dv; } else { o[npn] = o[pn]; } } delete o[pn]; } else { if (isDefault(o, pn)) { o[pn] = dv; } }}function jsonClone(json) { const FS = "\u0192s", functions = []; var clone; function replacer(n, v) { var nv = {}; if (isFunction(v)) { nv[FS] = functions.push(v) - 1; v = nv; } return v; } function reviver(n, v) { if (isBaseObject(v) && v.hasOwnProperty(FS)) { v = functions[v[FS]]; } return v; } if (json) { clone = JSON.parse(JSON.stringify(json, replacer), reviver); } return clone;}function jsonCompare(a, b) { return (JSON.stringify(a) === JSON.stringify(b));}function performJsonAjaxRequests(requests, success, failure, requestsData, simulateSendFunc, simTime) { const MIME_TYPE = "application/json"; var reqs = jsonClone(requests), name, ready, rn, co, results = {}, pubsub = {}, isSim = isFunction(simulateSendFunc), allDone = false; requestsData = jsonClone(isBaseObject(requestsData) ? requestsData : {}); if (!isNumber(simTime)) { simTime = 0; } function defaultSimulateSendFunc(request, data, handle) { handle({type: "load", currentTarget: {responseText: JSON.stringify(data)}}); } if (!isSim) { simulateSendFunc = defaultSimulateSendFunc; } function sub(name, func, data) { if (!pubsub[name]) { pubsub[name] = []; } pubsub[name].push({func: func, data: data}); } function pub(name, data) { var subs = pubsub[name], i, s; if (subs) { for (i = 0; i < subs.length; i++) { s = subs[i]; setTimeout(function (s) { s.func(name, data, s.data); }, 0, s); } } } function can(name, func) { var subs = pubsub[name], i, s; if (subs) { for (i = 0; i < subs.length; i++) { s = subs[i]; if (func === s.func) { subs.splice(i, 1); break; } } } } function isRequestReady(ready) { var ret = true, i; function isReadyAnds(ready) { var ret = true, r; if (Object.keys(ready).length) { for (r in ready) { if (results[r]) { if (ready[r] !== results[r].success) { ret = -1; break; } } else { ret = false; break; } } } return ret; } function isReadyOrs(ready) { var ret = true; if (ready.length) { for (i = 0; i < ready.length; i++) { ret = isReadyAnds(ready[i]); if (-1 < ret) { if (ret) { break; } } else { ready.splice(i--, 1); } } if (0 > ret) { if (0 < i) { ret = false; } else { ret = -1; } } } else { ret = -1; } return ret; } if (!isUndefined(ready) && !isNull(ready)) { if (isArray(ready)) { ret = isReadyOrs(ready); } else { if (isObject(ready)) { ret = isReadyAnds(ready); } else { if (isFunction(ready)) { ret = ready(jsonClone(results)); } else { if (isBoolean(ready)) { ret = ready ? true : -1; } } } } } return ret; } function mapData(request, resultsData) { var map = request.map, requestData = requestsData[request.name], pName, resName, resResults; if (map && isFunction(map)) { if (!requestData) { requestData = requestsData[request.name] = {}; } map(requestData, jsonClone(resultsData)); } else { if (isObjectAndNotEmpty(request.subscribes) && isObjectNotEmpty(resultsData) && isObject(requestData)) { for (pName in requestData) { if (isUndefined(requestData[pName])) { for (resName in resultsData) { resResults = resultsData[resName].out; if (resResults.hasOwnProperty(pName) && !isUndefined(resResults[pName])) { requestData[pName] = resResults[pName]; } } } } } } } function isRetry(retry, status, type) { var ret = false, wt; function isCount(retry) { var ret = false; if (isNumber(retry.max)) { if (0 < retry.max) { if (!retry.count) { retry.count = 0; } if (retry.count < retry.max) { ret = true; } } } else { ret = true; } return ret; } function isStatus(s, status) { var ret = false; if (isNumber(s)) { if (status === s) { ret = true; } } else { if (isArray(s)) { if (-1 !== s.indexOf(status)) { ret = true; } } } return ret; } if (retry) { if (isCount(retry)) { if (isObject(retry.when)) { if (retry.when.status) { ret = isStatus(retry.when.status, status); } if (!ret && (wt = retry.when[type])) { if (wt) { if (isBoolean(wt)) { ret = wt; } else { ret = isStatus(retry.when[type], status); } } } } else { ret = true; } } } return ret; } function makeRequest(request, data) { const MG = "GET", MP = "POST", cache = jsonAjaxResponseCache, pending = jsonAjaxInProgressRequests; var n, req = new XMLHttpRequest(), rname = request.name; function sets(target, method, sets) { var name; if (sets) { for (name in sets) { target[method](name, sets[name]); } } } function handle(e, fromCache) { var result, target = e.currentTarget || e.target || e.srcElement, responseText = target.responseText, reqStatus = isSim ? e.status : req.status; function isSuccess(e, r) { var ret = true; if (isFunction(request.isSuccess)) { ret = request.isSuccess(e, r); } return ret; } if (isRetry(request.retry, reqStatus, e.type)) { setTimeout(makeRequest, 0, request, data); } else { if (pending.hasOwnProperty(request.url) && pending[request.url].request === request) { delete pending[request.url]; } result = results[rname] = {}; result.fromCache = (!!fromCache); if (requestsData[rname]) { result.in = requestsData[rname]; } if ("load" === e.type) { try { result.out = JSON.parse(responseText); if (isSuccess(e, result.out)) { if (!fromCache) { saveResponse(request, data, e); } result.success = true; if (isFunction(request.success)) { setTimeout(request.success, 0, results); } } else { result.success = false; result[e.type] = req.status; result.event = e; } } catch (e) { result.success = false; result.required = request.required; result.parse = "Invalid Json Body!"; result.event = e; if (isFunction(request.failure)) { setTimeout(request.failure, 0, results); } } } else { result.success = false; result.required = request.required; result[e.type] = req.status; result.event = e; if (isFunction(request.failure)) { setTimeout(request.failure, 0, results); } } pub(rname, request); } } function buildCacheKey(request, data) { return request.url + (data ? JSON.stringify(data) : E); } function saveResponse(request, data, e) { if (request.cache && request.url && "" !== request.url) { log("storing response to cache:", request, e); cache[buildCacheKey(request, data)] = {e: e, data: data, time: new Date().getTime()}; } } function isCached(request, data) { const time = new Date().getTime(), cacheKey = buildCacheKey(request, data); var ret = false, cacheValue; if (request.cache && cache.hasOwnProperty(cacheKey)) { cacheValue = cache[cacheKey]; log("request.cache:", request.cache, "cacheValue.time:", cacheValue.time, "+=", cacheValue.time + request.cache, "time:", time); if (0 > request.cache || cacheValue.time + request.cache > time) { log("response cache used, request:", request, "response:", jsonClone(cacheValue.e)); handle(cacheValue.e, true); ret = true; } else { log("deleting cache for request:", request, jsonClone(cache[request._url])); delete cache[cacheKey]; } } return ret; } function addHandlers(req) { req.addEventListener("load", handle); req.addEventListener("error", handle); req.addEventListener("abort", handle); req.addEventListener("timeout", handle); } if (request.url && "" !== request.url) { if (pending.hasOwnProperty(request.url) && jsonCompare(pending[request.url].data, data)) { log("batch pending: found match!", request.url, "hold!"); addHandlers(pending[request.url].req); request.held = true; } else { if (!request.method) { request.method = MG; } if (MG === request.method) { request._url = addUrlParms(request.url, data); } else { request._url = request.url; } if (!isCached(request, data)) { if (isSim) { setTimeout(simulateSendFunc, 0, request, data, handle); } else { req.overrideMimeType("application/json"); addHandlers(req); sets(req, "addEventListener", request.handlers); req.open(request.method, request._url); sets(req, "setRequestHeader", request.headers); if (0 < request.timeout) { req.timeout = request.timeout; } if (MG === request.method) { try { req.send(); pending[request.url] = {request: request, data: data, req: req}; } catch (e) { log("req.send() Exception:", e); } } else { if (MP === request.method) { req.setRequestHeader("Content-Type", "application/json"); try { req.send(JSON.stringify(data)); pending[request.url] = {request: request, data: data, req: req}; } catch (e) { log("req.send() Exception:", e); } } else { log("Invalid request method.", "request:", request); } } } } } } else { setTimeout(defaultSimulateSendFunc, 0, request, data, handle); } } function performRequest(request, requestsData) { var isReady = false; isReady = isRequestReady(request._ready); if (-1 === isReady) { results[request.name] = {success: false, ready: request._ready}; if (isFunction(request.failure)) { setTimeout(request.failure, 0, results); } pub(request.name, request); } else { if (isReady) { mapData(request, results); makeRequest(request, requestsData[request.name]); } } } function startBatch(requests, requestsData) { var name, i, keys, request; function extractSubscribes(ready) { var subs = {}, i; function add(obj) { var keys = obj, i; if (!isArray(obj)) { keys = Object.keys(obj); } for (i = 0; i < keys.length; i++) { subs[keys[i]] = true; } } if (ready) { if (isArray(ready)) { for (i = 0; i < ready.length; i++) { add(ready[i]); } } else { if (isObject(ready)) { add(ready); } else { if (isFunction(ready)) { if (ready.subs) { add(ready.subs); } else { add(requests); } } } } } return subs; } function publish(name, pubData, subData) { can(name, publish); performRequest(subData, requestsData); } function checkDone(name, pubData, subData) { var isDone = true, isSuccess = true; if (allDone) { return; } for (name in requests) { if (!results[name]) { isDone = false; break; } } if (isDone) { allDone = true; pubsub = {}; for (name in requests) { if (requests[name].required && !results[name].success) { isSuccess = false; break; } } if (isSuccess) { success(results, requests); } else { failure(results, requests); } } } for (name in requests) { request = requests[name]; request.name = name; if (!isNumber(request.cache)) { request.cache = 0; } objPropDef(request, "required", true, ["boolean"]); if (request.hasOwnProperty("ready")) { request._ready = jsonClone(request.ready); } request.subscribes = extractSubscribes(request._ready); keys = Object.keys(request.subscribes); for (i = 0; i < keys.length; i++) { sub(keys[i], publish, request); } sub(name, checkDone, requests[name]); } for (name in requests) { performRequest(requests[name], requestsData); } } startBatch(reqs, requestsData);}function pad(val, count, str) { var i; val = "" + val || ""; count = count || 0; str = "" + str || ""; if (0 > count) { count = -count; for (i = val.length; i < count; i++) { val = val + str; } } else { for (i = val.length; i < count; i++) { val = str + val; } } return val;}function createId(type) { var c = config.ids, pre = c.prefix, sep = c.separator, td = c.type, sd = c.system, system, date = new Date(), id; type = onEtoVal(type, td); type = pad(type, -3, c.pad).substr(-0, 3).toUpperCase(); system = pad(sd, -3, c.pad).substr(-0, 3).toUpperCase(); id = pre + sep + type + sep + system + pad(date.getTime(), 16, "0") + pad(nextId++, 16, "0"); return id;}function onNtoE(v) { return N === v ? E : v;}function onEtoVal(v, val) { return E === v ? val : v;}function log() { var d, s, i; if (!DEBUG) { return; } d = "componentManager:"; s = "console.log(d"; for (i = 0; i < arguments.length; i++) { s += ",arguments[" + i + "]"; } s += ");"; eval(s);}function newInstance(cName, cData, cConfig) { var instance = null, template = {}; if (U === typeof cConfig) { cConfig = {}; } if (cNames.hasOwnProperty(cName)) { instance = {}; template = cNames[cName]; copyObject(instance, template); instance.data = mergeObjects(instance.default.data, cData); instance.config = mergeObjects(instance.default.config, cConfig); if (!template.hasOwnProperty("class")) { template["class"] = {}; } instance["class"] = template["class"]; } else { log("ERROR:", "Definition for component", cName, "NOT found!"); } return instance;}function buildStyle(style, parents) { const E = "", S = " "; var a, p, str = "", sep = "", pre = style.pre, sel = style.sel, post = style.post, attr = style.attr; function buildAttrString(attr) { var a, str = ""; for (a in attr) { str += a + ":" + attr[a] + ";"; } return str; } if (isEmpty(attr) || !isObject(attr) && !isArray(attr)) { return E; } if (isEmpty(parents)) { parents = E; } if (isEmpty(pre)) { pre = E; } if (isEmpty(sel)) { sel = E; } if (isEmpty(post)) { post = E; } if (isString(sel)) { str += parents + S + pre + (isStringEmpty(pre) ? E : S) + sel + (isStringEmpty(sel) ? E : S) + post; } else { if (isArray(sel)) { for (p = 0; p < sel.length; p++) { str += sep + parents + S + pre + (isStringEmpty(pre) ? E : S) + sel[p] + (isStringEmpty(sel[p]) ? E : S) + post; sep = ","; } } } if (isStringEmpty(str)) { return E; } str += "{"; if (isArray(attr)) { for (p = 0; p < attr.length; p++) { str += buildAttrString(attr[p]); } } else { str += buildAttrString(attr); } str += "}"; return str;}function buildTagString(tag) { var tstr = "", astr = "", cstr = "", a, p; if (tag.hasOwnProperty("content") && isString(tag.content)) { cstr += tag.content; } else { if (isArray(tag.content)) { } } if (tag.hasOwnProperty("name") && isString(tag.name) && !isStringEmpty(tag.name)) { if (tag.hasOwnProperty("attr") && isObject(tag.attr)) { for (a in tag.attr) { astr += " " + a + "=\"" + tag.attr[a] + "\""; } } if (tag.hasOwnProperty("prop") && isObject(tag.prop)) { for (p in tag.prop) { if (tag.prop[p]) { astr += " " + p; } } } tstr += "<" + tag.name + astr + ">" + cstr + "" + tag.name + ">"; } return tstr;}function buildComponentTag(contentFunc) { const _self = this; var tagId, html = ""; if (!_self.instance || !_self.instance.tagId) { tagId = createId("COM"); _self.instance = {tagId: tagId}; } else { tagId = _self.instance.tagId; } html += "

"; if (contentFunc) { html += contentFunc.call(_self); } html += "

"; return html;}function copyObjectNameMapDefault(sourceName, sourceValue) { return sourceName;}function copyObject(d, s, nameMap) { var j, k, js, stack = []; if ("function" !== typeof nameMap) { nameMap = copyObjectNameMapDefault; } stack.push({s: s, d: d}); while (0 < stack.length) { p = stack.pop(); s = p.s; d = p.d; for (j in s) { js = nameMap(j, s[j]); if ("string" === typeof s[j]) { d[js] = s[j]; } else { if ("object" === typeof s[j]) { if (Array.isArray(s[j])) { if (U === typeof d[js]) { d[js] = []; } for (k = 0; k < s[j].length; k++) { if ("string" === typeof s[j][k]) { d[js][k] = s[j][k]; } else { if ("object" === typeof s[j][k]) { if (U === typeof d[js][k]) { if (Array.isArray(s[j][k])) { d[js][k] = []; } else { d[js][k] = {}; } } } } stack.push({s: s[j][k], d: d[js][k]}); } } else { if (U === typeof d[j]) { d[js] = {}; } stack.push({s: s[j], d: d[js]}); } } else { d[js] = s[j]; } } } }}function mergeObjects() { var i = 0, n, r = {}, p; for (i = 0; i < arguments.length; i++) { n = arguments[i]; copyObject(r, n); } return r;}function persist() { var _self = this; if (!coms.hasOwnProperty(_self.instance.tagId)) { coms[_self.instance.tagId] = _self; }}function Bopis_html() { const _self = this; var f, str = ""; f = _self.config.feature; if (_self.config.features.hasOwnProperty(f)) { _self.feature = _self.config.features[f]; if (_self.hasOwnProperty(f) && _self.isFunction(_self[f])) { str += _self[f](); } } return str;}function Bopis_getDeliveryConfigBatch(callback) { const _self = this; const SP = "sitePreferences", DC = "deliveryConfig"; const AS = [S], AB = [B]; const batch = {}; batch[SP] = {"url": _self.baseAjaxUrl + "SitePreferences-GetPreferencesJSON?prefcontext=deliveryOptions", "cache": 60000}; batch[DC] = {"url": _self.baseAjaxUrl + "Stores-DeliveryConfig", "cache": 1800000, success: function (results) { if (results.deliveryConfig.success && results.deliveryConfig.out.sddZipCode) { if (window.libs && window.libs.notify) { window.libs.notify.api.fire("dc-done", {sddZip: results.deliveryConfig.out.sddZipCode}); } } }}; _self.performJsonAjaxRequests(batch, function (r, rq) { var d, n, data = {}; function merge(d, s) { var n; for (n in s) { d[n] = s[n]; } } merge(data, r[SP].out); merge(data, r[DC].out); _self.objPropDef(data, "storeId", E, AS); _self.objPropDef(data, "zipCode", E, AS); _self.objPropDef(data, "sddZipCode", E, AS); _self.objPropDef(data, "StoreInventoryService", "dom", AS, null, "storeInvService"); _self.objPropDef(data, "FIND_IN_STORE_ENABLE", _self.default.data.fisEnabled, AB, null, "fisEnabled"); _self.objPropDef(data, "enableStorePickUp", _self.default.data.bopisEnabled, AB, null, "bopisEnabled"); _self.objPropDef(data, "enableSameDayDeliveryPDP", _self.default.data.sddEnabled, AB, null, "sddEnabled"); _self.objPropDef(data, "useSFCCforStoreInv", false, AB, null, "storeInvSfccOnly"); objPropDef(data, "BOPISPickupReadyHours", 4, ["number"], null, "readyHours"); if (_self.isFunction(callback)) { try { callback(data); } catch (e) { log("Exception:", e); } } }, function (r) { log("getDeliveryConfigBatch failure: results:", r); });}function Bopis_getStoresByZipPidBatch(pid, orin, zip, sddZip, sddStoreId, callback) { const _self = this; const prod = "www.belk.com", dev = "www.belkdev.com"; var host = prod; if (prod !== window.location.host) { host = dev; } const batch = {deliveryConfig: {url: _self.baseAjaxUrl + "Stores-DeliveryConfig", "cache": 1800000, required: false, success: function (results) { if (results.deliveryConfig.success && results.deliveryConfig.out.sddZipCode) { if (window.libs && window.libs.notify) { window.libs.notify.api.fire("dc-done", {sddZip: results.deliveryConfig.out.sddZipCode}); } } }}, storesCall: {url: _self.baseAjaxUrl + "Stores-GetStoresByZip", "cache": 60000, required: false}, inventoryCall: {url: "https://" + host + "/inventory/" + _self.data.storeInvService, method: "POST", required: false, "cache": 60000, timeout: 3000, ready: {storesCall: true}, map: function (dest, results) { const source = results.storesCall.out; var i; dest.stores = []; for (i = 0; i < source.length; i++) { dest.stores[i] = source[i].storeId; } }, isSuccess: function (e, r) { var ret = true; if (r.statusCode) { log("statusCode in inventory response:", r); ret = false; } if (!r.hasOwnProperty(pid)) { log("missing pid", pid, " in inventory response:", r); ret = false; } return ret; }}, backupCall: {url: _self.baseAjaxUrl + "StoreInventory-RedesignInventory", "cache": 60000, required: false, ready: [{storesCall: false}, {inventoryCall: false}]}, successNode: {ready: [{storesCall: true, inventoryCall: true}, {backupCall: true}], required: true, map: function (dest, r) { var id, n, o; if (r.deliveryConfig.success) { for (n in r.deliveryConfig.out) { dest[n] = r.deliveryConfig.out[n]; } objPropDef(dest, "BOPISPickupReadyHours", 4, ["number"], null, "readyHours"); } if (r.storesCall.success && r.inventoryCall.success) { dest.stores = r.storesCall.out; for (n = 0; n < dest.stores.length; n++) { dest.stores[n].id = dest.stores[n].storeId; delete dest.stores[n].storeId; } if (r.inventoryCall.out[pid]) { o = r.inventoryCall.out[pid]; for (n = 0; n < dest.stores.length; n++) { id = dest.stores[n].id; if (o.hasOwnProperty(id)) { dest.stores[n].quantity = o[id]; if (0 < o[id]) { dest.success = true; } } else { dest.stores[n].quantity = 0; } } } else { for (n = 0; n < dest.stores.length; n++) { dest.stores[n].quantity = 0; } } _self.fixStoreData(dest); if (E !== sddStoreId) { for (n = 0; n < dest.stores.length; n++) { if (sddStoreId === dest.stores[n].id) { dest.sddStore = dest.stores[n]; break; } } } } else { if (r.backupCall.success) { for (n in r.backupCall.out) { dest[n] = r.backupCall.out[n]; } } else { log("getStoresByZipPidBatch successNode reach with invalid data."); } } }}}, data = {storesCall: {zipCode: zip, sddZipCode: sddZip, sddStore: sddStoreId}, inventoryCall: {items: [{pid: pid, orin: orin}]}, backupCall: {pid: pid, zipCode: zip, sddZip: sddZip, sddStoreId: sddStoreId}}; function suc(r, rq) { var data = r.successNode.out, parms = {pid: pid, orin: orin, zip: zip, sddZip: sddZip, sddStoreId: sddStoreId}; if (_self.isFunction(callback)) { try { callback(parms, data); } catch (e) { log("Exception:", e); } } } function fai(r) { log("batch failure: results:", r); } if (_self.data.storeInvSfccOnly) { batch.storesCall.ready = false; batch.inventoryCall.ready = false; } _self.performJsonAjaxRequests(batch, suc, fai, data);}function Bopis_validateData(cData) { const _self = this; var valid = {productOnlineOnly: false, bopisEnabled: false, findInStoreEnabled: false, curbSidePickupEnabled: false, bopisProduct: false, bopisSku: false, zip: false, storeId: false, skuId: false, productInStock: false, skuStockLevel: false, surchargeAmount: false, isPreOrderEnabled: false, showPreOrder: false, isQuickView: false, releaseDate: false, preOrderPromoId: false, preOrderPromoDetails: false, storeSearchDistance: false}, allValid = false; if (!_self.isBoolean(cData.productOnlineOnly)) { cData.bopisEnabled = _self.toBoolean(cData.bopisEnabled, _self.default.data.productOnlineOnly); } if (_self.isBoolean(cData.productOnlineOnly)) { valid.productOnlineOnly = true; } if (!_self.isBoolean(cData.bopisEnabled)) { cData.bopisEnabled = _self.toBoolean(cData.bopisEnabled, _self.default.data.bopisEnabled); } if (_self.isBoolean(cData.bopisEnabled)) { valid.bopisEnabled = true; } if (!_self.isBoolean(cData.findInStoreEnabled)) { cData.findInStoreEnabled = _self.toBoolean(cData.findInStoreEnabled, _self.default.data.findInStoreEnabled); } if (_self.isBoolean(cData.findInStoreEnabled)) { valid.findInStoreEnabled = true; } if (_self.isBoolean(cData.curbSidePickupEnabled)) { valid.curbSidePickupEnabled = true; } if (!_self.isBoolean(cData.bopisProduct)) { cData.bopisProduct = _self.toBoolean(cData.bopisProduct, _self.default.data.bopisProduct); } if (_self.isBoolean(cData.bopisProduct)) { valid.bopisProduct = true; } if (!_self.isBoolean(cData.bopisSku)) { cData.bopisSku = _self.toBoolean(cData.bopisSku, _self.default.data.bopisSku); } if (_self.isBoolean(cData.bopisSku)) { valid.bopisSku = true; } if (!_self.isString(cData.zip)) { cData.zip = new String(cData.zip); } if (5 !== cData.zip.length) { cData.zip = cData.zip.substring(0, 5); } if (_self.isStringEmpty(cData.zip) || !isNaN(cData.zip) && (5 === cData.zip.length)) { valid.zip = true; } if (_self.isNumber(cData.storeId)) { cData.storeId = new String(cData.storeId); } if (!_self.isString(cData.storeId) || isNaN(cData.storeId)) { cData.storeId = _self.default.data.storeId; } if (_self.isString(cData.storeId) && !isNaN(cData.storeId)) { valid.storeId = true; } if (_self.isNumber(cData.skuId)) { cData.skuId = new String(cData.skuId); } if (!_self.isString(cData.skuId)) { cData.skuId = _self.default.data.skuId; } if (_self.isString(cData.skuId)) { valid.skuId = true; } if (!_self.isBoolean(cData.productInStock)) { cData.productInStock = _self.toBoolean(cData.productInStock, _self.default.data.productInStock); } if (_self.isBoolean(cData.productInStock)) { valid.productInStock = true; } if (!_self.isNumber(cData.skuStockLevel) && !isNaN(cData.skuStockLevel)) { cData.skuStockLevel = Number(cData.skuStockLevel); } if (_self.isNumber(cData.skuStockLevel)) { valid.skuStockLevel = true; } if (_self.isNumber(cData.surchargeAmount)) { valid.surchargeAmount = true; } if (_self.isBoolean(cData.isPreOrderEnabled)) { valid.isPreOrderEnabled = true; } if (_self.isBoolean(cData.showPreOrder)) { valid.showPreOrder = true; } if (_self.isBoolean(cData.isQuickView)) { valid.isQuickView = true; } if (_self.isString(cData.releaseDate)) { valid.releaseDate = true; } if (_self.isString(cData.preOrderPromoId)) { valid.preOrderPromoId = true; } if (_self.isString(cData.preOrderPromoDetails)) { valid.preOrderPromoDetails = true; } if (_self.isNumber(cData.storeSearchDistance)) { valid.storeSearchDistance = true; } else { cData.storeSearchDistance = _self.default.data.storeSearchDistance; } for (i in valid) { if (valid[i]) { allValid = true; } else { allValid = false; break; } } return allValid ? true : valid;}function Bopis_reset() { const _self = this; _self.error = false; _self.searchResults = {}; _self.copyObject(_self.searchResults, _self.default.config.init.searchResults); _self.stores = []; _self.hasPreOrderResponse = false; _self.shipPromoMsg = ""; _self.isShipPromoMsg = false; _self.selectedStoreIds = [];}function Bopis_plp() { const _self = this; var str = "", storeName = _self.config.messaging.selectStore, ids = "", i, urlStoreId = "", mm = window.matchMedia("(max-width:767px)"); if (isUndefined(_self.config.messaging.bopis) || !isString(_self.config.messaging.bopis) || isStringEmpty(_self.config.messaging.bopis)) { _self.config.messaging.bopis = _self.default.config.messaging.bopis; } _self.checked = false; if (-1 !== window.location.href.indexOf("searchType=FreePickup")) { _self.checked = true; } function buildBopisPromoMsg() { return "" + _self.promoMsg + ""; } function build() { var str = "", isStore = !_self.isObjectEmpty(_self.data.store), bopisPromoAssetID = window.SitePreferences.BOPIS_CLEARANCE_COUPON_ENABLED ? "bopis-clearance-promo" : "bopis-promo-messaging"; str += "" + _self.config.messaging.bopis + _self.pickupTodayOrTomorrow(); if (1 < _self.selectedStoreIds.length) { storeName = _self.config.messaging.atStoresX.replace("X", _self.selectedStoreIds.length); } else { if (isStore) { storeName = _self.data.store.name; } } str += " " + _self.buildStoreSelectionToggle(storeName); str += ""; str += "
"; str += ""; if (!_self.isStringEmpty(_self.promoMsg)) { str += buildBopisPromoMsg(); } else { _self.getBopisPromoMessaging(bopisPromoAssetID, function (data) { if (data.hasOwnProperty("isOnline") && data.isOnline && data.hasOwnProperty("assetContent") && !_self.isStringEmpty(data.assetContent)) { _self.promoMsg = data.assetContent; $("#" + _self.instance.tagId + " .promo").html(buildBopisPromoMsg()); } }); } str += ""; const newMoveSel = "#bopis-pickup"; const oldMoveSel = "#secondary"; var moveToSel = newMoveSel; if (!window.facetNav || !window.facetNav.nav) { moveToSel = oldMoveSel; } var moveTryCount = 0; var toi = null; function startMoveTo(obj, toSel) { if (toi) { clearTimeout(toi); toi = null; } moveTo(obj, toSel); } function moveTo(obj, toSel) { var to = document.querySelector(toSel), plp; if (!_self.isNull(to)) { to.prepend(obj); _self.addStoreSelectionHandlers(); switch (toSel) { case oldMoveSel: case newMoveSel: $("#results-products").css({width: "auto"}); $(".bopis-filter-options").css({display: "none"}); plp = comp.querySelector(".plp"); plp.classList.add("facet"); if (oldMoveSel === moveToSel) { plp.classList.add("wrap"); } break; default: $("#results-products").css({width: ""}); $(".bopis-filter-options").css({display: ""}); plp = comp.querySelector(".plp"); plp.classList.remove("facet"); if (oldMoveSel === moveToSel) { plp.classList.remove("wrap"); } } } else { if (newMoveSel === moveToSel) { moveTryCount++; if (moveTryCount > 20) { moveToSel = oldMoveSel; toSel = moveToSel; } } toi = setTimeout(moveTo, 50, obj, toSel); } } var noMove = true; var comp = document.querySelector("#" + _self.instance.tagId); if (_self.feature.moveToLeftOnDesktop) { mm.addListener(function bpchange(e) { var comp = document.querySelector("#" + _self.instance.tagId); if (!comp) { mm.removeListener(bpchange); if (toi) { clearTimeout(toi); toi = null; } return; } if (noMove !== e.matches) { noMove = e.matches; if (noMove) { startMoveTo(comp, ".bopis-filter-options"); } else { startMoveTo(comp, moveToSel); } } }); noMove = mm.matches; } if (!_self.isNull(comp)) { $(comp).find(".plp .center-vert").html(str); _self.addStoreSelectionHandlers(); if (!noMove) { startMoveTo(comp, moveToSel); } } } function getStores(zip) { var found = {}; if (!_self.isStringEmpty(zip)) { _self.getStoresByZip(zip, function (zip, data) { var i; _self.log("getStoresByZip with zip:", zip, " returned data:", data); if (_self.isObject(data) && data.hasOwnProperty("success") && data.success) { _self.data.zip = zip; _self.stores = data.stores; if (data.hasOwnProperty("readyHours") && _self.isNumber(data.readyHours)) { _self.readyHours = data.readyHours; } if (data.hasOwnProperty("pickupToday") && _self.isBoolean(data.pickupToday)) { _self.pickupToday = data.pickupToday; } if (data.hasOwnProperty("pickupDay") && _self.isString(data.pickupDay)) { _self.data.pickupDay = data.pickupDay; } if (0 === _self.selectedStoreIds.length) { if (!_self.isArrayEmpty(_self.stores)) { found = _self.findFirstBopisStore(); } if (!_self.isUndefined(found.store)) { _self.data.store = found.store; _self.selectedStoreIds.push(found.store.id); } else { _self.data.store = {}; } } else { if (!_self.isArrayEmpty(_self.stores)) { for (i = 0; i < _self.selectedStoreIds.length; i++) { found = _self.findStore(_self.selectedStoreIds[i]); if (!found.hasOwnProperty("store") || !found.store.hasOwnProperty("bopis") || !found.store.bopis) { _self.selectedStoreIds.splice(i--, 1); } } found = {}; if (0 !== _self.selectedStoreIds.length) { found = _self.findStore(_self.selectedStoreIds[0]); } } if (found.hasOwnProperty("store") && found.store.hasOwnProperty("bopis") && found.store.bopis) { _self.data.store = found.store; } else { _self.data.store = {}; } } } build(); }); } else { _self.data.zip = zip; build(); } } urlStoreId = _self.getUrlParm(window.location.href, "storeId"); if (!_self.isStringEmpty(urlStoreId)) { ids = decodeURIComponent(urlStoreId); } else { if (window.hasOwnProperty("User") && window.User.hasOwnProperty("storeId") && !_self.isNull(window.User.storeId)) { ids = window.User.storeId; } } if (!_self.isStringEmpty(ids)) { ids = ids.split("|"); for (i = 0; i < ids.length; i++) { _self.selectedStoreIds.push(ids[i]); } } function closePopper(e) { var $t = $(e.target), $p; if (_self["class"].ignoreNextClosePopperSelf === _self) { _self["class"].ignoreNextClosePopperSelf = null; return; } if (0 !== $t.filter("#" + _self.instance.tagId + " .as-link").length) { return; } if ("filterByStorePickup" === $t.attr("for")) { return; } $p = $t.closest("#" + _self.instance.tagId + " .popper"); if (0 === $p.length) { if (_self.isPopperOpen) { _self.hidePopper(); } } } window.libs.notify.api.request(["jquery-ready"], function () { const ENS = "click." + _self.component.class + ".popper"; var zip, $B = $("body"); $B.off(ENS); $B.on(ENS, closePopper); if (_self.isStringEmpty(_self.data.zip)) { _self.getDeliveryConfigBatch(function (data) { if (!_self.isObjectEmpty(data)) { _self.data.bopisEnabled = data.bopisEnabled; _self.data.findInStoreEnabled = data.fisEnabled; _self.data.storeId = data.storeId; if ("" !== data.zipCode) { zip = data.zipCode; getStores(zip); } else { getStores(_self.data.zip); } } else { build(); } }); } else { getStores(_self.data.zip); } }); document.addEventListener("brdata_ready", function (e) { const checked = (-1 !== window.location.href.indexOf("searchType=FreePickup")); _self.update({checked: checked}); }); str += "

"; return str;}function Bopis_pdp() { const _self = this; const zipClass = "select-zip"; var valid, str = "", e, pid = "", zip = ""; valid = _self.validateData(_self.data); log("data valid:", valid); if (isUndefined(_self.config.messaging.bopis) || !isString(_self.config.messaging.bopis) || isStringEmpty(_self.config.messaging.bopis)) { _self.config.messaging.bopis = _self.default.config.messaging.bopis; } pid = _self.data.skuId; _self.objPropDef(_self.data, "skuOrin", "", ["string"]); orin = _self.data.skuOrin; zip = _self.data.zip; function closePopper(e) { if (_self.ignoreNextClosePopper) { _self.ignoreNextClosePopper = false; return; } var $t = $(e.target), $p = $t.closest("#" + _self.instance.tagId + " .popper"); if (0 !== $t.filter("#" + _self.instance.tagId + " .as-link").length) { return; } if (0 !== $t.filter("#" + _self.instance.tagId + " .rradio").length) { return; } if (0 !== $t.filter("#" + _self.instance.tagId + " .rcheckbox").length) { return; } if (0 !== $t.filter("#" + _self.instance.tagId + " .vlabel").length) { return; } if ($t.hasClass("rradio")) { return; } if (0 !== $t.filter("#" + _self.instance.tagId + " #receive-option-pickup").length) { return; } if (0 === $p.length) { if (_self.isPopperOpen) { _self.hidePopper(); } } } function build() { var $C = $("#" + _self.instance.tagId); $C.find(".pdp").html(_self.buildPDP()); $C.find(".reserve-space").removeClass("reserve-space"); _self.addOutlineHandlers(); _self.addStoreSelectionHandlers(); _self.addPDPZipSelectionHandlers(); _self.addConnsZipSelectionHandler(); } function getStores(pid, orin, zip, sddZip, sddStoreId) { var found = {}; if (_self.isUndefined(pid)) { pid = ""; } if (_self.isUndefined(orin)) { orin = ""; } if (_self.isUndefined(zip)) { zip = ""; } if (_self.isUndefined(sddZip)) { sddZip = ""; } if (_self.isUndefined(sddStoreId)) { sddStoreId = ""; } if (!_self.isStringEmpty(pid) && (_self.data.findInStoreEnabled && !_self.isStringEmpty(zip) || !_self.isStringEmpty(sddZip) && !_self.isStringEmpty(sddStoreId))) { if (_self.isStringEmpty(sddStoreId)) { sddZip = ""; } else { if (_self.isStringEmpty(sddZip)) { sddStoreId = ""; } } _self.getStoresByZipPidBatch(pid, orin, zip, sddZip, sddStoreId, function (parms, data) { if (_self.isObject(data) && data.hasOwnProperty("success") && data.success) { _self.data.skuId = parms.pid; _self.data.zip = parms.zip; if (data.hasOwnProperty("stores")) { _self.stores = data.stores; } if (data.hasOwnProperty("readyHours")) { _self.readyHours = data.readyHours; } if (data.hasOwnProperty("pickupToday")) { _self.pickupToday = data.pickupToday; } if (data.hasOwnProperty("pickupDay") && _self.isString(data.pickupDay)) { _self.data.pickupDay = data.pickupDay; } if (data.hasOwnProperty("sddStore")) { _self.data.sddStore = data.sddStore; _self.data.sddStoreId = _self.data.sddStore.id; } if (data.hasOwnProperty("sameDay")) { _self.data.sddSameDay = data.sameDay; } if (!_self.isArrayEmpty(_self.stores)) { if (!_self.isNull(_self.data.preferredStoreId)) { found = _self.findStore(_self.data.preferredStoreId); } else { if (!_self.isObjectEmpty(_self.data.store)) { found = _self.findStore(_self.data.store.id); } } } if (!_self.isUndefined(found.store)) { _self.data.store = found.store; _self.data.storeId = _self.data.store.id; } else { if (0 < _self.stores.length) { _self.data.store = _self.stores[0]; _self.data.storeId = _self.data.store.id; } } if (_self.isObjectEmpty(_self.data.store) || !_self.data.store.bopis || 0 === _self.data.store.quantity) { _self.searchResults = _self.searchStores(_self.stores); if (_self.searchResults.bopis) { _self.data.store = _self.searchResults.store; _self.data.storeId = _self.data.store.id; } } } build(); }); } else { _self.data.zip = zip; build(); } } window.libs.notify.api.request(["jquery-ready"], function () { const ENS = "click." + _self.component.class + ".popper"; var $B = $("body"); $B.off(ENS); $B.on(ENS, closePopper); if (_self.isStringEmpty(_self.data.zip)) { _self.getDeliveryConfigBatch(function (data) { if (!_self.isObjectEmpty(data)) { _self.data.bopisEnabled = data.bopisEnabled; _self.data.findInStoreEnabled = data.fisEnabled; _self.data.storeId = data.storeId; _self.data.preferredStoreId = _self.data.storeId; _self.data.zip = data.zipCode; _self.data.sddEnabled = data.sddEnabled; _self.data.sddZip = data.sddZipCode; _self.data.storeInvService = data.storeInvService; _self.data.storeInvSfccOnly = data.storeInvSfccOnly; if (_self.data.sddEnabled && E !== _self.data.sddZip) { _self.getSddStore(function (data) { if (!_self.isObjectEmpty(data) && data.hasOwnProperty("store") && !_self.isStringEmpty(data.store)) { _self.data.sddStoreId = data.store; } if (_self.isStoresDataNeeded()) { getStores(pid, _self.data.skuOrin, _self.data.zip, _self.data.sddZip, _self.data.sddStoreId); } else { build(); } }); } else { if (_self.isStoresDataNeeded()) { getStores(pid, _self.data.skuOrin, _self.data.zip); } else { build(); } } } else { build(); } }); } else { if (_self.isStoresDataNeeded()) { getStores(pid, _self.data.skuOrin, _self.data.zip, _self.data.sddZip, _self.data.sddStoreId); } else { build(); } } }); _self.persist(); str += "

"; return str;}function Bopis_bag() { const _self = this; var valid, str = ""; if (!_self.class.hasOwnProperty("isClosePoppers")) { _self.class.isClosePoppers = false; } if (!_self.class.hasOwnProperty("ignoreNextClosePopperSelf")) { _self.class.ignoreNextClosePopperSelf = null; } _self.readyHours = 4; _self.pickupToday = false; if (!_self.isUndefined(_self.data.readyHours) && _self.isNumber(_self.data.readyHours)) { _self.readyHours = _self.data.readyHours; } if (!_self.isUndefined(_self.data.pickupToday) && _self.isBoolean(_self.data.pickupToday)) { _self.pickupToday = _self.data.pickupToday; } if (!_self.isString(_self.data.pickupDay)) { _self.data.pickupDay = ""; } if (isUndefined(_self.config.messaging.bopis) || !isString(_self.config.messaging.bopis) || isStringEmpty(_self.config.messaging.bopis)) { _self.config.messaging.bopis = _self.default.config.messaging.bopis; } if (!_self.data.hasOwnProperty("sessionZip")) { _self.data.sessionZip = ""; } function closePoppers(e) { var $t = $(e.target), ignoreSelf = null, pid = ""; if (0 !== $t.closest(".receive-option-pickup").length) { pid = $t.closest("." + _self.component.class).attr("id"); if ("" !== pid && coms.hasOwnProperty(pid)) { ignoreSelf = coms[pid]; } } if (!isNull(_self.class.ignoreNextClosePopperSelf)) { ignoreSelf = _self.class.ignoreNextClosePopperSelf; _self.class.ignoreNextClosePopperSelf = null; } _self.hidePoppers(ignoreSelf); } function build() { const ENS = "click." + _self.component.class + ".popper"; var $B = $("body"); var $C = $("#" + _self.instance.tagId); $C.find(".bag").html(_self.buildPDP()); $C.find(".reserve-space").removeClass("reserve-space"); _self.addStoreSelectionHandlers(); _self.addConnsZipSelectionHandler(); if (!_self.class.isClosePoppers) { $B.off(ENS); $B.on(ENS, closePoppers); _self.class.isClosePoppers = true; } } if (_self.data.productInStock) { _self.getDeliveryConfigBatch(function (data) { _self.data.storeInvService = data.storeInvService; _self.data.storeInvSfccOnly = data.storeInvSfccOnly; window.libs.notify.api.request(["jquery-ready"], function () { build(); }); }); _self.persist(); str += "

"; } return str;}function Bopis_bagSddBanner() { const _self = this; const zipClass = "select-zip", sddM = _self.config.messaging.sdd; var str = ""; function formatPrice(p) { const regEx = /(\d(?=(\d{3})+\.))/g; return "$" + Number(p).toFixed(2).replace(regEx, "$1,"); } if (isNumber(_self.data.sddFee) || isString(_self.data.sddFee) && !isStringEmpty(_self.data.sddFee)) { _self.data.formattedSddFee = formatPrice(_self.data.sddFee); } else { _self.data.formattedSddFee = ""; } function closePopper(e) { if (_self.ignoreNextClosePopper) { _self.ignoreNextClosePopper = false; return; } var $t = $(e.target), $p = $t.closest("#" + _self.instance.tagId + " .popper"); if (0 !== $t.filter("#" + _self.instance.tagId + " .as-link").length) { return; } if (0 !== $t.filter("#" + _self.instance.tagId + " .rradio").length) { return; } if (0 !== $t.filter("#" + _self.instance.tagId + " .rcheckbox").length) { return; } if (0 !== $t.filter("#" + _self.instance.tagId + " .vlabel").length) { return; } if ($t.hasClass("rradio")) { return; } if (0 === $p.length) { if (_self.isPopperOpen) { _self.hidePopper(); } } } function buildSddMessage() { var msg = "", fee = _self.isStringEmpty(_self.data.formattedSddFee) ? "" : "(" + _self.data.formattedSddFee + ") "; function day(sameDay) { var msg = ""; if (sameDay) { msg = "today"; } else { msg = "tomorrow"; } return msg; } function fill(msg) { var rX = /{{X}}/, rS = /{{S}}/, rC = /{{C}}/, rE = /{{E}}/; msg = msg.replace(rX, _self.data.sddItemCount); msg = msg.replace(rS, 1 < _self.data.sddItemCount ? "s" : ""); msg = msg.replace(rC, _self.data.sddCutoffTime + " ET"); msg = msg.replace(rE, _self.data.sddEndTime.replace(" ", "")); if (!_self.data.hasReducedEliteFee && 0 !== _self.data.sddFee) { return fee + msg; } else { return msg; } } if (_self.data.hasSdd) { if (_self.data.sddZip) { if (_self.data.sddStoreId) { if (0 < _self.data.sddItemCount) { if (_self.data.sddSelected) { if (_self.data.sddSameDay) { msg = fill(sddM.eligibleActive); } else { msg = fill(sddM.eligibleActiveCutoff); } } else { if (_self.data.hasPresale) { if (_self.data.sddSameDay) { msg = fill(sddM.eligiblePresale); } else { msg = fill(sddM.eligiblePresaleCutoff); } } else { if (_self.data.sddSameDay) { msg = fill(sddM.eligible); } else { msg = fill(sddM.eligibleCutoff); } } } } else { msg = _self.data.sddFee === 0 ? "(" + sddM.Free + ")" + " " + sddM.noSddInZip : fee + sddM.noSddInZip; } } else { msg = _self.data.sddFee === 0 ? "(" + sddM.Free + ")" + " " + sddM.zipNotEligible : fee + sddM.zipNotEligible; } } else { msg = _self.data.sddFee === 0 ? "(" + sddM.Free + ")" + " " + sddM.noZip : fee + sddM.noZip; } } else { } return msg; } function addSelectionHandlers() { var $C = $("#" + _self.instance.tagId); var $zObj = $C.find("." + zipClass), $in, len; $zObj.on("click", function (e) { if ($zObj.prop("checked")) { _self.showPopper(zipClass); $in = $C.find(".popper .search-by-zip .zip-code"); $in.focus(); len = $in.val().length; $in[0].setSelectionRange(len, len); } else { _self.hidePopper(); } e.stopPropagation(); }); var $cbObj = $C.find("#selectSdd"); $cbObj.on("click", function (e) { if ($cbObj.prop("checked")) { $("#sddSelected").val(true); } else { $("#sddSelected").val(false); } if (window.progress) { window.progress.show(); } $("input[type=\"hidden\"][name$=\"_updateCart\"]").remove(); $("input[type=\"hidden\"][name$=\"_updateGiftBox\"]").remove(); $("input[type=\"hidden\"][name$=\"_updateSSDZipCode\"]").remove(); $("#update-sddOption").click(); }); } function build() { var str = "", zipLabel = "", isTo = false, isDisabled = false, fee = _self.isStringEmpty(_self.data.formattedSddFee) ? "" : _self.data.formattedSddFee; if (_self.isStringEmpty(_self.data.sddZip)) { zipLabel = "Check My Area"; } else { zipLabel = _self.data.sddZip, isTo = true; } if (!_self.data.sddZip || !_self.data.sddStoreId || !_self.data.sddItemCount) { isDisabled = true; } str += "

"; str += "

"; str += "

"; str += ""; str += "

"; str += "" + (isDisabled ? "" : (_self.data.sddSameDay ? sddM.sameDayPre : sddM.nextDayPre)); str += isDisabled ? "" : _self.data.isEliteCustomer ? (0 === _self.data.sddFee ? sddM.elitesPre : _self.data.hasReducedEliteFee ? fee : "") : 0 === _self.data.sddFee ? sddM.Free : ""; str += " " + sddM.title + (isDisabled ? "" : (_self.data.hasReducedEliteFee && _self.data.isEliteCustomer && 0 !== _self.data.sddFee ? " " + sddM.forElites + " " : " ")) + _self.buildToolTip(_self.data.sddToolTip) + (isTo ? " to " : "") + ""; str += " " + _self.buildSelectionToggle(zipClass, zipLabel); str += ""; str += "
"; str += ""; str += buildSddMessage(); str += "

"; str += "

"; str += "

"; return str; } if (_self.data.hasSdd) { window.libs.notify.api.request(["jquery-ready"], function () { const ENS = "click." + _self.instance.tagId + ".popper"; var $B = $("body"); $B.off(ENS); $B.on(ENS, closePopper); addSelectionHandlers(); }); str = "

"; str += "

"; str += build(); str += "

(Video) PS5 "GOD OF WAR RAGNARÖK" Console Unboxing! (PlayStation 5) + PS4 Pro Limited Edition

"; str += "

"; } return str;}function Bopis_isPickupDisabled() { const _self = this; const NITP = true; var isDisabled = true; if (!_self.data.mirakl && !_self.error && !_self.data.productOnlineOnly && !_self.data.skuOnlineOnly && _self.data.bopisEnabled && _self.data.findInStoreEnabled && _self.data.bopisProduct && !_self.isStringEmpty(_self.data.skuId) && _self.data.bopisSku && !(_self.data.isConnsItem || window.pageData.isConnsProduct) && (NITP || !_self.isStringEmpty(_self.data.zip)) && ((NITP && _self.isStringEmpty(_self.data.zip)) || !_self.isObjectEmpty(_self.data.store) && _self.data.store.bopis && 0 < _self.data.store.quantity || _self.searchResults.bopis)) { isDisabled = false; } return isDisabled;}function Bopis_isStoresDataNeeded(data) { const _self = this; if (!data) { data = _self.data; } return data.bopisEnabled && data.findInStoreEnabled && data.bopisProduct && !data.mirakl && !data.productOnlineOnly && !data.skuOnlineOnly && !(data.isConnsItem || window.pageData.isConnsProduct);}function Bopis_buildInputRC(config) { const _self = this; var c = config, str = "", checked = c.isChecked ? "checked" : ""; function pc(c) { return _self.isUndefined(c) || !_self.isString(c) || _self.isStringEmpty(c) ? "" : " " === c[0] ? c : " " + c; } if (!c.isDisabled) { if (c.isMultiSelect) { str += ""; } else { str += ""; } } else { str += "

"; } str += ""; return str;}function Bopis_buildPDP() { const _self = this; const regD = /{{D}}/; var M = _self.config.messaging, str = "", name = "receive-option", quantity = 0, labelText = "", skuSelected = false, pid = "", preOrderPromoDetails = "", preOrderPromoId = "", isConnsItem = _self.config.feature === "bag" ? _self.data.isConnsItem : window.pageData.isConnsProduct; if (_self.config.feature !== "bag" && (isConnsItem && !_self.isObjectEmpty(_self.data.connsSKUData) && !_self.isObjectEmpty(_self.data.connsInvData) && !_self.data.connsInvData.conns)) { return; } if (!_self.isStringEmpty(_self.data.skuId)) { skuSelected = true; } if (_self.isObject(_self.data.store) && _self.data.store.hasOwnProperty("quantity") && _self.isNumber(_self.data.store.quantity)) { quantity = _self.data.store.quantity; } if ("pdp" === _self.config.feature && skuSelected && !_self.data.skuShipEligible && 0 >= quantity && !_self.data.connsSKUData) { str += "

"; str += ""; str += M.bopisOnly; str += ""; str += ""; str += M.productOutNear.replace(/{{Z}}/, _self.data.zip).replace(regD, _self.data.storeSearchDistance); str += "

"; } else { if (_self.data.productInStock) { if (!skuSelected) { str += "

"; str += ""; if (_self.data.skuShipEligible) { str += ""; if (!_self.isStringEmpty(_self.shipPromoMsg)) { str += _self.shipPromoMsg; } str += ""; str += ""; str += M.selectSizeForOpt; } else { str += "" + M.bopisOnly + ""; str += ""; str += M.selectSizeBopisOnly; } str += "

"; } else { if (0 < _self.data.skuStockLevel) { if (_self.data.sddEnabled && _self.data.skuSddEligible) { str += _self.buildSddEligibleBanner(); } str += "

"; str += "

" + M.receiveOptionsHeader + "

"; if (!_self.isObjectEmpty(_self.data.connsSKUData) && !_self.isObjectEmpty(_self.data.connsInvData) && isConnsItem) { str += _self.buildConnsOption(); } else { str += "

"; labelText = _self.buildProductShipStatus(_self.data.skuStockLevel, _self.data.productInStock && !skuSelected, _self.data.surchargeAmount); str += _self.buildInputRC({isDisabled: !_self.data.skuShipEligible, isMultiSelect: false, id: name + "-ship", value: "ship", name: name, content: labelText, isChecked: "bag" === _self.config.feature && !_self.isObjectEmpty(_self.data.store) && _self.data.bopisSelected ? false : true, isMessage: false}); str += "

"; } str += "

"; if (_self.data.isPreOrderEnabled && _self.data.showPreOrder && ("bag" === _self.config.feature || _self.hasPreOrderResponse)) { str += _self.buildPreSaleOption(); } str += "

"; str += _self.buildPickupOption(); str += "

"; str += _self.buildStoreId(); if (isConnsItem && "bag" !== _self.config.feature) { str += "

"; if (!_self.isObjectEmpty(_self.data.connsSKUData)) { str += _self.buildConnsFields(); } else { $("#add-to-cart").addClass("disabled add-to-cart-disabled").prop("disabled", true).attr("type", "button"); } str += "

"; } } else { if (isConnsItem) { if (!_self.isObjectEmpty(_self.data.connsSKUData) && !_self.isObjectEmpty(_self.data.connsInvData)) { str += "

"; str += "

(Video) God of War Ragnarok Graphics Comparison: PS5 vs. PS4 vs. PS4 Pro

" + M.receiveOptionsHeader + "

"; str += _self.buildConnsOption(); str += "

"; } if ("bag" !== _self.config.feature) { str += "

"; if (!_self.isObjectEmpty(_self.data.connsSKUData)) { str += _self.buildConnsFields(); } else { $("#add-to-cart").addClass("disabled add-to-cart-disabled").prop("disabled", true).attr("type", "button"); } str += "

"; } } else { str += "

"; str += M.skuOut; str += "

"; } } } } else { str += "

"; str += M.productOut; str += "

"; } } function updatePreOrderRadio(invStatus) { var $C = $("#" + _self.instance.tagId); if (invStatus) { var preOrderContent = ""; preOrderContent += _self.buildPreSaleOption(); $C.find(".preorder-container").html(preOrderContent).show(); } else { $C.find(".preorder-container").hide(); } } if ("pdp" === _self.config.feature && _self.data.isPreOrderEnabled && _self.data.showPreOrder) { pid = _self.data.skuId; if (_self.isStringEmpty(pid)) { pid = _self.data.productId; } preOrderPromoDetails = _self.data.preOrderPromoDetails; preOrderPromoId = _self.data.preOrderPromoId; _self.getPreOrderFCInventory(pid, preOrderPromoDetails, function (pid, preOrderPromoDetails, data) { _self.hasPreOrderResponse = true; if (data.hasOwnProperty("preOrderInStock") && data.preOrderInStock && data.hasOwnProperty("preOrderATSCount") && data.preOrderATSCount > 0) { _self.data.hasPreOrderInventory = true; updatePreOrderRadio(true); _self.addStoreSelectionHandlers(); updatePDPPreOrderIndicators(); } else { _self.data.hasPreOrderInventory = false; updatePreOrderRadio(false); updatePDPPreOrderIndicators(); } }); } else { if (_self.data.isQuickView && !_self.data.showPreOrder && _self.data.skuId !== "") { _self.data.hasPreOrderInventory = false; _self.hasPreOrderResponse = true; updatePreOrderRadio(false); updatePDPPreOrderIndicators(); } } function updateShipPromoMsg() { var $C; if (_self.isString(_self.shipPromoMsg) && !_self.isStringEmpty(_self.shipPromoMsg)) { $C = $("#" + _self.instance.tagId); $C.find(".ship-message .ship-promo").html((_self.isStringEmpty(_self.data.skuId) ? "" : " - ") + _self.shipPromoMsg); } } if ("pdp" === _self.config.feature && _self.data.skuShipEligible && (!_self.isShipPromoMsg || _self.lastSkuId !== _self.data.skuId)) { _self.isShipPromoMsg = true; pid = _self.data.skuId; if (_self.isStringEmpty(pid)) { pid = _self.data.productId; } _self.getShippingPromoMessage(pid, function (pid, data) { _self.lastSkuId = _self.data.skuId; if (data.hasOwnProperty("shippingMsg")) { if (_self.isString(data.shippingMsg) && !_self.isStringEmpty(data.shippingMsg)) { _self.shipPromoMsg = data.shippingMsg; updateShipPromoMsg(); } else { if (_self.isObject(data.shippingMsg) && !_self.isObjectEmpty(data.shippingMsg)) { if (_self.isStringEmpty(_self.data.skuId) && data.shippingMsg.long) { _self.shipPromoMsg = data.shippingMsg.long; } else { if (data.shippingMsg.short) { _self.shipPromoMsg = data.shippingMsg.short; } } updateShipPromoMsg(); } } } }); } function updatePDPPreOrderIndicators() { var $poGiftBadge = $(".preorder-gift-badge"), $pdTop = $(".product-detail.top"), badgeHtml = "

Pre-sale Gift Eligible

", $promoContainer = $(".promotion"), $promoCallOutMessage = $(".promotion .callout-message"), $poPromoMessage = $(".callout-message-row.preorder-promo-message"), $regularPromoMessage = $(".callout-message-row:not(.preorder-promo-message)"); if (_self.data.hasPreOrderInventory) { if ($poGiftBadge.length === 0 && $pdTop.length > 0) { $pdTop.prepend(badgeHtml); } else { $poGiftBadge.show(); } } else { if ($poGiftBadge.length !== 0) { $poGiftBadge.hide(); } if ($poPromoMessage.length !== 0 && $regularPromoMessage.length === 0) { $promoContainer.hide(); $poPromoMessage.hide(); } else { if ($poPromoMessage.length !== 0) { $poPromoMessage.hide(); } } } } if (_self.isStringEmpty(_self.promoMsg) || _self.data.bopisPromoAssetID !== _self.promoMsgAssetID) { _self.promoMsgAssetID = _self.data.bopisPromoAssetID; _self.getBopisPromoMessaging(_self.data.bopisPromoAssetID, function (data) { if (data.hasOwnProperty("isOnline") && data.isOnline && data.hasOwnProperty("assetContent") && !_self.isStringEmpty(data.assetContent)) { _self.promoMsg = data.assetContent; $("#" + _self.instance.tagId + " .promo-msg").html(_self.promoMsg); } }); } return str;}function Bopis_fixStoreData(data) { const _self = this; var i; if (data.stores) { for (i = 0; i < data.stores.length; i++) { data.stores[i].distance = data.stores[i].distance.replace(/[^.0-9]/g, ""); data.stores[i].name = data.stores[i].name.replace(/Belk /gi, ""); } }}function Bopis_getBopisPromoMessaging(bopisPromoAssetID, callback) { const _self = this; var CAN = bopisPromoAssetID !== "" ? bopisPromoAssetID : "bopis-promo-messaging"; var url = _self.baseAjaxUrl; url += "COContent-GetContentAsset?assetName="; url += CAN; $.ajax(url, {success: function (data, textStatus, jqXHR) { log("getBopisPromoMessaging ajax success: data:", data, "textStatus:", textStatus, "jqXHR:", jqXHR); if (_self.isFunction(callback)) { try { callback(data); } catch (e) { log("Exception:", e); } } }, error: function (jqXHR, textStatus, errorThrown) { log("getBopisPromoMessaging ajax error: jqXHR:", jqXHR, "textStatus:", textStatus, "errorThrown:", errorThrown); }, complete: function (jqXHR, textStatus) { log("getBopisPromoMessaging ajax complete: jqXHR:", jqXHR, "textStatus:", textStatus); }});}function Bopis_getShippingPromoMessage(pid, callback) { const _self = this; var url = _self.baseAjaxUrl; url += "Product-GetShippingPromoMsg?pid="; url += pid; $.ajax(url, {success: function (data, textStatus, jqXHR) { log("getShippingPromoMessage ajax success: data:", data, "textStatus:", textStatus, "jqXHR:", jqXHR); if (_self.isUndefined(data)) { data = {}; } if (_self.isFunction(callback)) { try { callback(pid, data); } catch (e) { log("Exception:", e); } } }, error: function (jqXHR, textStatus, errorThrown) { log("getShippingPromoMessage ajax error: jqXHR:", jqXHR, "textStatus:", textStatus, "errorThrown:", errorThrown); if (_self.isFunction(callback)) { try { callback(pid, {}); } catch (e) { log("Exception:", e); } } }, complete: function (jqXHR, textStatus) { log("getShippingPromoMessage ajax complete: jqXHR:", jqXHR, "textStatus:", textStatus); }});}function Bopis_getStoresByZip(zip, callback) { const _self = this; var url = _self.baseAjaxUrl; _self.error = false; if (_self.isStringEmpty(zip)) { return; } url += "Stores-GetBopisStoresByZip?zipCode=" + zip; callback = callback || function (zip, data) { log("No callback given for getStoresByZip call by zip:", zip, "returned data:", data); }; $.ajax(url, {success: function (data, textStatus, jqXHR) { log("getStoresByZip ajax success: data:", data, "textStatus:", textStatus, "jqXHR:", jqXHR); if (_self.isObject(data) && data.hasOwnProperty("success") && data.success) { _self.fixStoreData(data); } if (!data.success) { _self.error = true; } if (_self.isFunction(callback)) { try { callback(zip, data); } catch (e) { log("Exception:", e); } } }, error: function (jqXHR, textStatus, errorThrown) { log("getStoresByZip ajax error: jqXHR:", jqXHR, "textStatus:", textStatus, "errorThrown:", errorThrown); }, complete: function (jqXHR, textStatus) { log("getStoresByZip ajax complete: jqXHR:", jqXHR, "textStatus:", textStatus); }});}function Bopis_getSddStore(callback) { const _self = this; var url = _self.baseAjaxUrl, cachedData; log("_self.sddZipToStoreCache:", _self.sddZipToStoreCache); if (_self.sddZipToStoreCache.hasOwnProperty(_self.data.sddZip)) { cachedData = _self.sddZipToStoreCache[_self.data.sddZip]; if (!_self.isUndefined(cachedData) && !_self.isObjectEmpty(cachedData) && _self.isFunction(callback)) { try { callback(cachedData); } catch (e) { log("Exception:", e); } return; } } url += "COSameDayDelivery-GetDeliveryAssuranceStore?zipCode=" + _self.data.sddZip; $.ajax(url, {success: function (data, textStatus, jqXHR) { log("getSddStore ajax success: data:", data, "textStatus:", textStatus, "jqXHR:", jqXHR); if (_self.isObject(data) && !_self.isObjectEmpty(data) && data.hasOwnProperty("zipCode") && _self.isString(data.zipCode) && !_self.isStringEmpty(data.zipCode)) { _self.sddZipToStoreCache[data.zipCode] = data; } else { data = {}; } if (_self.isFunction(callback)) { try { callback(data); } catch (e) { log("Exception:", e); } } }, error: function (jqXHR, textStatus, errorThrown) { log("getSddStore ajax error: jqXHR:", jqXHR, "textStatus:", textStatus, "errorThrown:", errorThrown); if (_self.isFunction(callback)) { try { callback({}); } catch (e) { log("Exception:", e); } } }, complete: function (jqXHR, textStatus) { log("getSddStore ajax complete: jqXHR:", jqXHR, "textStatus:", textStatus); }});}function Bopis_setSessionStore(storeId, callback) { const _self = this; var url = _self.baseAjaxUrl; url += "StoreInventory-SetPreferredStore?storeId=" + storeId; $.ajax(url, {success: function (data, textStatus, jqXHR) { log("setSessionStore ajax success: data:", data, "textStatus:", textStatus, "jqXHR:", jqXHR); if (_self.isFunction(callback)) { try { callback(data); } catch (e) { log("Exception:", e); } } }, error: function (jqXHR, textStatus, errorThrown) { log("setSessionStore ajax error: jqXHR:", jqXHR, "textStatus:", textStatus, "errorThrown:", errorThrown); }, complete: function (jqXHR, textStatus) { log("setSessionStore ajax complete: jqXHR:", jqXHR, "textStatus:", textStatus); }});}function Bopis_getPreOrderFCInventory(pid, preOrderPromoDetails, callback) { log("getPreOrderFCInventory called with pid:", pid, "preOrderPromoDetails:", preOrderPromoDetails, "callback", callback); const _self = this; var url = _self.baseAjaxUrl + "COPreOrder-GetPreOrderFCInventory"; if (_self.isStringEmpty(preOrderPromoDetails)) { return; } callback = callback || function (preOrderPromoDetails, data) { log("No callback given for getPreOrderFCInventory call by preOrderPromoDetails:", preOrderPromoDetails, "returned data:", data); }; preOrderPromoDetails = JSON.parse(preOrderPromoDetails); preOrderPromoDetails.pid = pid; $.ajax({method: "POST", dataType: "json", contentType: "application/json", url: url, data: JSON.stringify(preOrderPromoDetails), success: function (data, textStatus, jqXHR) { log("getPreOrderFCInventory ajax success: data:", data, "textStatus:", textStatus, "jqXHR:", jqXHR); if (_self.isFunction(callback)) { try { callback(pid, preOrderPromoDetails, data); } catch (e) { log("Exception:", e); } } }, error: function (jqXHR, textStatus, errorThrown) { log("getPreOrderFCInventory ajax error: jqXHR:", jqXHR, "textStatus:", textStatus, "errorThrown:", errorThrown); }, complete: function (jqXHR, textStatus) { log("getPreOrderFCInventory ajax complete: jqXHR:", jqXHR, "textStatus:", textStatus); }});}function Bopis_availabilityMessage(quantity, forceInStock, isPunc, forPopper) { const _self = this; const p = ".", e = "!", n = ""; var M = _self.config.messaging, str = " quantity) { str += " less\">" + M.stock["less"]; if (5 > quantity) { str += " (" + M.stock.lowX.replace("X", quantity) + ")"; } } else { if (forceInStock || 5 < quantity) { str += " in\">" + M.stock["in"] + (!forPopper && isPunc ? p : ""); } else { if (0 === quantity) { str += " out\">" + M.stock.out; } else { if (5 === quantity) { str += " low\">" + M.stock.low; } else { if (5 > quantity) { str += " low\">" + M.stock.lowX.replace("X", quantity) + (isPunc ? e : ""); } } } } } str += ""; return str;}function Bopis_buildSelectionToggle(theClass, text) { const _self = this; var str = ""; str += ""; str += ""; str += "

"; return str;}function Bopis_buildStoreSelectionToggle(text) { const _self = this; var str = ""; str += ""; str += ""; str += "

"; return str;}function Bopis_searchStores(stores) { const _self = this; var i, store, ret = {}; _self.copyObject(ret, _self.default.config.init.searchResults); if (0 < stores.length) { for (i = 0; i < stores.length; i++) { store = stores[i]; if (0 < store.quantity) { ret.inStore = true; if (store.bopis) { ret.bopis = true; ret.store = store; break; } } } ret.isSearch = true; } return ret;}function Bopis_updateInStockOnly() { const _self = this; var $C = $("#" + _self.instance.tagId), $d = $C.find(".popper.bopis .stores li .filter-instockonly").closest("li"), $inp = $C.find(".popper.bopis .filters input[name=\"in-stock-only\"]"); if ($inp.length) { if ($inp.prop("checked")) { _self.inStockOnly = true; $d.hide(); } else { _self.inStockOnly = false; $d.show(); } _self.updatePopperScrollbar(); }}function Bopis_searchResponse(pid, zip, data) { const _self = this; var $C = $("#" + _self.instance.tagId); if (_self.isObject(data) && data.hasOwnProperty("success") && data.success) { _self.data.skuId = pid; _self.data.zip = zip; if (data.hasOwnProperty("stores") && _self.isArray(data.stores) && 0 < data.stores.length) { _self.data.store = data.stores[0]; _self.stores = data.stores; } else { _self.data.store = {}; _self.stores = []; } if (data.hasOwnProperty("readyHours") && _self.isNumber(data.readyHours)) { _self.readyHours = data.readyHours; } if (data.hasOwnProperty("pickupToday") && _self.isBoolean(data.pickupToday)) { _self.pickupToday = data.pickupToday; } if (data.hasOwnProperty("pickupDay") && _self.isString(data.pickupDay)) { _self.data.pickupDay = data.pickupDay; } _self.searchResults = _self.searchStores(_self.stores); if (_self.searchResults.bopis) { if (_self.feature.myStore) { $C.find(".my-store").replaceWith(buildMyStoreHtml(_self.stores[0], 0)); } $C.find(".popper.bopis .stores").empty(); $C.find(".popper.bopis .stores").append(_self.buildStoresHtml()); $C.find(".popper.bopis .zip-link").hide().html(_self.data.zip); $C.find(".popper.bopis .show-on-results").show(); $C.find(".popper.bopis .no-stores-msg").remove(); $C.find(".popper.bopis .zip-link").show(); $C.find(".popper.bopis .search-by-zip").hide(); _self.updateInStockOnly(); _self.updatePopperScrollbar(); _self.addStoreItemHandlers(); } else { $C.find(".popper.bopis .show-on-results").hide(); $C.find(".popper.bopis .search-by-zip").show(); $C.find(".popper.bopis .no-stores-msg").remove(); $C.find(".popper.bopis").append("

" + _self.config.messaging.notInStockX.replace("X", "" + zip + "") + " " + _self.config.messaging.tryArea + "

"); } } else { log("stopped here?"); $C.find(".popper.bopis .show-on-results").hide(); $C.find(".popper.bopis .search-by-zip").show(); $C.find(".popper.bopis .no-stores-msg").remove(); $C.find(".popper.bopis").append("

" + _self.config.messaging.notInStockX.replace("X", "" + zip + "") + " " + _self.config.messaging.tryArea + "

"); } if (window.progress) { window.progress.hide(); }}function Bopis_pickupTodayOrTomorrow() { const _self = this; var ret = " Today"; if (!_self.pickupToday) { if ("" === _self.data.pickupDay) { ret = " Tomorrow"; } else { ret = " " + _self.data.pickupDay; } } return ret;}function Bopis_buildPickupOption() { const _self = this; var str = "", name = "receive-option", labelText = "", isDisabled = true, skuSelected = false, hideRadio = false, M = _self.config.messaging, isChecked = false; skuSelected = !_self.isStringEmpty(_self.data.skuId); if (skuSelected && !_self.isArrayEmpty(_self.stores) && (!_self.data.bopisSku || _self.isObjectEmpty(_self.data.store) || !_self.data.store.bopis || 0 === _self.data.store.quantity)) { _self.searchResults = _self.searchStores(_self.stores); } str += "

"; isDisabled = _self.isPickupDisabled(); hideRadio = (!skuSelected || 0 === _self.data.skuStockLevel); if (hideRadio) { labelText += ""; if (skuSelected) { labelText += _self.config.messaging.skuOut; } else { labelText += _self.config.messaging.selectSize; } labelText += ""; } else { labelText = _self.buildProductPickupStatus(); } if ("bag" === _self.config.feature && !_self.isObjectEmpty(_self.data.store) && _self.data.bopisSelected) { isChecked = true; } else { if (!_self.data.skuShipEligible) { isChecked = true; } } str += _self.buildInputRC({isDisabled: isDisabled, isMultiSelect: false, id: name + "-pickup", value: "pickup", name: name, content: labelText, isChecked: isChecked, isMessage: hideRadio}); str += "

"; return str;}function Bopis_buildPreSaleOption() { const _self = this; var str = "", name = "receive-option", labelText = "", M = _self.config.messaging; if (!_self.data.hasPreOrderInventory) { return str; } str += "

"; labelText += "" + M.preSaleHeader + " - " + M.preSaleShipMessage + " " + _self.data.releaseDate + "
" + M.preSaleCouponExclusionMessage + "
"; if ("bag" === _self.config.feature && _self.data.preOrderSelected) { _self.fromPreOrder = true; } str += _self.buildInputRC({isMultiSelect: false, id: name + "-presale", value: "presale", name: name, content: labelText, isChecked: "bag" === _self.config.feature && _self.data.preOrderSelected ? true : false}); str += ""; str += "

(Video) Most PS5 Users Are Doing This All Wrong

"; return str;}function Bopis_buildProductShipStatus(skuStockLevel, forceInStock, surchargeAmount) { const _self = this; var str = "", M = _self.config.messaging; function fill(msg) { var rE = /{{E}}/, rT = /{{T}}/; msg = msg.replace(rE, _self.data.sddEndTime.replace(" ", "")); msg = msg.replace(rT, _self.data.sddSameDay ? "today" : "tomorrow"); return msg; } str += ""; if (_self.data.skuShipEligible) { str += ("bag" === _self.config.feature && !isStringEmpty(_self.data.sddStoreId)) ? M.sdd.title : M.shipFree; if ("bag" === _self.config.feature && !isStringEmpty(_self.data.sddStoreId)) { str += ""; str += " - " + fill(M.sdd.delivers); str += ""; } else { if ("bag" === _self.config.feature && !_self.isStringEmpty(_self.data.estimatedShippingMessage)) { str += ""; str += " - " + _self.config.messaging.estimatedDelivery + _self.data.estimatedShippingMessage; str += ""; } else { str += ""; if (!_self.isStringEmpty(_self.shipPromoMsg)) { str += " - " + _self.shipPromoMsg; } str += ""; } } str += "
"; str += _self.availabilityMessage(skuStockLevel, forceInStock, true, false); if (_self.isNumber(surchargeAmount) && 0 !== surchargeAmount) { str += "$" + surchargeAmount + " " + M.surchargeAmountApplies + ""; } } else { str += _self.config.messaging.noShip; str += "
"; str += "" + _self.config.messaging.bopisOnly + ""; } str += "
"; return str;}function Bopis_buildProductPickupStatus() { const _self = this; const regD = /{{D}}/; var str = "", msg = "", br = "
", bh = "", tc = "", ssm = "", pro = "", M = _self.config.messaging, sto = {}; str += "

"; function storeMsg(store) { var sto = {msg: M.atNearStore, name: M.selectStore}; if (!_self.isObjectEmpty(store)) { if (store.closed) { sto.msg = M.storeClosed; } else { sto.msg = M.atMyStore; } sto.name = store.name; } return sto; } function ofZip(msg) { var str = br + ssm + msg; if (!_self.isStringEmpty(_self.data.zip)) { str += " of " + _self.data.zip; } str += tc; return str; } function inStoreScenarios() { if (_self.searchResults.isSearch && _self.searchResults.inStore) { if (0 < _self.data.store.quantity) { msg = bh + M.notBopis + tc; if (_self.data.store.closed) { msg += br + ssm + M.storeClosed + tc; } else { msg += br + ssm + M.atMyStore + tc; } msg += _self.buildStoreSelectionToggle(_self.data.store.name); msg += br + _self.availabilityMessage(_self.data.store.quantity, false, true, false); } else { if (!_self.data.skuOnlineOnly) { msg = bh + M.noBopisNearby + tc; } else { msg = bh + M.notBopis + tc; } msg += br + ssm + M.atNearStore + tc; msg += " " + _self.buildStoreSelectionToggle(M.selectStore); } } else { if (_self.data.skuOnlineOnly) { msg = bh + M.notBopis + tc; msg += br + ssm + _self.config.messaging.skuOnlineOnly + tc; } else { if (_self.data.bopisSku) { msg = bh + M.noBopisNearby + tc; msg += ofZip(M.notNearby.replace(regD, _self.data.storeSearchDistance)); msg += br + _self.buildStoreSelectionToggle(M.selectZip); } else { msg = bh + M.notBopis + tc; if (_self.data.store.closed) { msg += br + ssm + M.storeClosed + tc; } else { msg += br + ssm + M.atNearStore + tc; msg += " " + _self.buildStoreSelectionToggle(M.selectStore); } } } } } if (_self.data.mirakl) { msg = bh + M.notBopis + tc; } else { if (_self.data.productOnlineOnly) { msg = bh + M.notBopis + tc; if ("pdp" === _self.config.feature) { msg += br + _self.config.messaging.productOnlineOnly; } } else { if (_self.data.skuOnlineOnly) { msg = bh + M.notBopis + tc; if ("pdp" === _self.config.feature) { msg += br + ssm + M.skuOnlineOnly + tc; } } else { if (!_self.data.productInStock) { log("(!_self.data.productInStock) Scenario Should NOT have occured"); } else { if (_self.data.bopisEnabled && _self.data.findInStoreEnabled) { if (_self.error) { if (_self.data.skuOnlineOnly) { msg = bh + M.notBopis + tc; if ("pdp" === _self.config.feature) { msg += br + ssm + _self.config.messaging.skuOnlineOnly + tc; } } else { if (_self.data.bopisSku) { msg = bh + M.noBopisNearby + tc; } else { msg = bh + M.notBopis + tc; } msg += ofZip(M.notNearby.replace(regD, _self.data.storeSearchDistance)); msg += br + _self.buildStoreSelectionToggle(M.selectZip); } } else { if (_self.data.bopisProduct) { if (!_self.isStringEmpty(_self.data.skuId)) { if (_self.data.bopisSku) { if (!_self.isStringEmpty(_self.data.zip)) { if (!_self.isObjectEmpty(_self.data.store)) { if (_self.data.store.bopis && 0 < _self.data.store.quantity) { msg = bh + M.bopis + _self.pickupTodayOrTomorrow() + tc; msg += br + _self.availabilityMessage(_self.data.store.quantity, false, false, false); msg += " at "; msg += _self.buildStoreSelectionToggle(_self.data.store.name); msg += br + pro; if (_self.isStringEmpty(_self.promoMsg)) { msg += M.readyTimeX.replace("X", _self.readyHours); } else { msg += _self.promoMsg; } msg += tc; } else { if (_self.searchResults.bopis) { msg = bh + M.bopis + _self.pickupTodayOrTomorrow() + tc; msg += br + M.nearby + " " + _self.buildStoreSelectionToggle(M.selectStore); msg += br + pro; if (_self.isStringEmpty(_self.promoMsg)) { msg += M.readyTimeX.replace("X", _self.readyHours); } else { msg += _self.promoMsg; } msg += tc; } else { if ("bag" === _self.config.feature) { msg = bh + M.notBopis + tc; } else { inStoreScenarios(); } } } } else { if (0 === _self.stores.length) { msg = bh + M.notBopis + tc; msg += ofZip(M.noStoresNearby.replace(regD, _self.data.storeSearchDistance)); msg += br + _self.buildStoreSelectionToggle(M.selectZip); } else { msg = bh + M.noBopisNearby + _self.pickupTodayOrTomorrow() + tc; msg += " " + _self.buildStoreSelectionToggle(M.selectStore); } } } else { msg = bh + M.bopis + _self.pickupTodayOrTomorrow() + tc; msg += " " + _self.buildStoreSelectionToggle(M.selectStore); } } else { if ("bag" === _self.config.feature) { msg = bh + M.notBopis + tc; } else { inStoreScenarios(); } } } else { log("(_self.isStringEmpty(data.prdoductId)) Scenario Should NOT have occured"); } } else { if (!_self.isStringEmpty(data.prdoductId)) { if (_self.data.bopisSku) { } else { } } else { msg = bh + M.notBopis + tc; msg += br + M.selectSize; } } } } else { if ("bag" === _self.config.feature) { msg = bh + M.notBopis + tc; } else { msg = bh + M.bopisDisabled + tc; if (_self.data.findInStoreEnabled) { sto = storeMsg(_self.data.store); msg += br + ssm + sto.msg + tc + " " + _self.buildStoreSelectionToggle(sto.name); } } } } } } } str += msg; str += "

"; return str;}function Bopis_buildStoreHtml(store, offset) { const _self = this; var str = "", VC = _self.feature; str += ""; str += "" + store.name + ""; str += "
" + store.distance + " mi"; if (store.bopis) { if (VC.showStock) { str += _self.availabilityMessage(store.quantity, false, true, true); } } else { str += "Temporarily Unavailable"; } str += "
"; return str;}function Bopis_buildMyStoreHtml(store, offset) { const _self = this; var str = ""; str += "

"; str += "

"; str += "

My store near " + _self.data.zip + "

"; str += _self.buildStoreHtml(store, offset); str += "

Always included in filter results

"; str += "

"; str += "

"; return str;}function Bopis_buildStoreItemHtml(store, offset) { const _self = this; var str = "", VC = _self.feature, addClass = "filter-instockonly", isDisabled = true, isChecked = false, isSelected = _self.selectedStoreIds.some(function (e) { return e === store.id; }); if (store.id === _self.data.storeId || isSelected) { isChecked = true; } if ("plp" === _self.config.feature) { if (store.bopis) { isDisabled = false; } } else { if (0 < store.quantity && store.bopis) { if ("bag" === _self.config.feature && _self.data.hasOwnProperty("lineItemQuantity") && _self.data.lineItemQuantity > store.quantity) { addClass = ""; } else { isDisabled = false; } } } str += _self.buildInputRC({isDisabled: isDisabled, isMultiSelect: VC.isMultiSelect, name: name + offset, id: store.id, name: "store", value: store.id, content: _self.buildStoreHtml(store, offset), isChecked: isChecked, isMessage: false, "class": isDisabled ? addClass : ""}); return str;}function Bopis_buildStoresHtml() { const _self = this; var str = "", VC = _self.feature, s = 0, storesLength = _self.stores.length; if (0 < VC.storeListLimit && VC.storeListLimit < storesLength) { storesLength = VC.storeListLimit; } for (s = 0; s < storesLength; s++) { str += "
  • "; str += _self.buildStoreItemHtml(_self.stores[s], s); str += "
  • "; } return str;}function Bopis_buildToolTip(data) { const _self = this, ttc = "sdd-ui-tooltip", qttc = "sddq-ui-tooltip", styleId = ttc + "-style", qstyleId = qttc + "-style", style = "." + ttc + "{max-width:300px;z-index:5;}", qstyleb = "." + qttc + "{max-width:300px;z-index:", qstylee = ";}", hbs = "

    ", he = "

    "; var content = "", str = "", ss = null, qv = null, qzi = 1000, tc = ttc; if (data.hasOwnProperty("isOnline") && data.isOnline && data.hasOwnProperty("assetContent") && !_self.isStringEmpty(data.assetContent)) { content = data.assetContent; } if (_self.data.isQuickView) { if (!document.querySelector("#" + qstyleId)) { qv = document.querySelector(".ui-dialog.quick-view"); if (qv) { qzi = qv.style["z-index"]; } ss = document.createElement("style"); ss.id = qstyleId; ss.innerHTML = qstyleb + qzi + qstylee; } tc = qttc; } else { if (!document.querySelector("#" + styleId)) { ss = document.createElement("style"); ss.id = styleId; ss.innerHTML = style; } } if (!_self.isNull(ss)) { document.head.appendChild(ss); } str += hbs + tc + hbe + content + he; return str;}function Bopis_buildSddEligibleBanner() { const _self = this; const zipClass = "select-zip"; var str = "", zipLabel = "Check My Area", isTo = false, toggle = "", message = _self.config.messaging.sdd.msgEligible, isEligible = true; if ("pdp" === _self.config.feature && _self.data.sddEnabled) { if (!_self.isStringEmpty(_self.data.sddZip)) { zipLabel = _self.data.sddZip, isTo = true; } toggle = _self.buildSelectionToggle(zipClass, zipLabel); if (_self.isStringEmpty(_self.data.sddZip)) { message = _self.config.messaging.sdd.title; } else { if (_self.isStringEmpty(_self.data.sddStoreId) || _self.data.sddStore.closed || !_self.data.sddStore.bopis || 0 >= _self.data.sddStore.quantity) { message = _self.config.messaging.sdd.msgNotEligible; isEligible = false; } } } str += "

    "; str += "

    "; str += "

    " + "" + message + " " + _self.buildToolTip(_self.data.sddToolTip) + (isTo ? " to " : " ") + toggle + "

    "; str += "

    "; return str;}function Bopis_buildPopper(theClass) { const _self = this; var str = "", storesLength, min = false, hideTop = false, DN = " style=\"display:none;\"", altMsg = "Update location:", defaultMsg = "Stores near", msg = defaultMsg, sd = "none", oi = "inline", VC = _self.feature, noStoresMsg = "", zip = "", zipStr, isSdd = ("select-zip" === theClass), isConns = ("select-zip-conns" === theClass), isError = false, popperClass = "", bc = ""; if (isSdd) { VC = _self.config.features.bagSddBanner; zip = _self.data.sddZip; min = true; sd = "block"; popperClass = "sdd"; bc = "update"; } else { if (isConns) { VC = _self.config.features.bagSddBanner; zip = !_self.isStringEmpty(_self.data.connsZip) ? _self.data.connsZip : _self.data.sddZip; min = true; sd = "block"; popperClass = "conns"; bc = "update-conns-zip"; } else { zip = _self.data.zip; isError = _self.error; if (_self.isStringEmpty(zip) || isError || (_self.searchResults.isSearch && !_self.searchResults.bopis && !_self.searchResults.inStore)) { min = true; sd = "block"; } popperClass = "bopis"; bc = "search"; } } if (VC.myStore) { if ("" !== zip) { msg = altMsg; } _self.firstStoreItem = 1; hideTop = true; } str += "

    "; str += "

    "; str += "

    "; if (!isSdd && !isConns) { str += "

    " + msg + " " + zip + "

    "; } str += "

    "; if (VC.showFilters && !VC.myStore) { str += ""; } str += "

    "; if (!isSdd && !isConns) { if (VC.myStore && 0 < _self.stores.length) { str += buildMyStoreHtml(_self.stores[0], 0); } if (!_self.searchResults.isSearch || _self.searchResults.bopis || _self.searchResults.inStore) { str += "

      "; str += _self.buildStoresHtml(); str += "

    "; } else { str += "

    "; zipStr = "" + zip + ""; if (0 < _self.stores.length) { noStoresMsg = _self.config.messaging.notInStockX.replace("X", zipStr); } else { noStoresMsg = _self.config.messaging.notInStockX.replace("X", zipStr); } str += "

    " + noStoresMsg + " " + _self.config.messaging.tryArea + "

    "; } if (VC.isMultiSelect) { str += "

    "; } } str += "

    (Video) God Of War Ragnarok(PS5) - Unboxing, Installation & Gameplay 😍
    "; return str;}function Bopis_showPopper(theClass) { log("showPopper called!"); const _self = this; var str = "", tc = theClass ? theClass : "select-store", $i = $("#" + _self.instance.tagId + "-" + tc), $pl = $i.nextAll(".popper-location"), $p = $pl.find(".popper"), zip = "", showWait = false; function show() { $p = $pl.find(".popper").show(); _self.fixPopperPosition(); if (0 === $(document.activeElement).filter(".zip-code").length) { $p.find(".top").focus(); } _self.isPopperOpen = true; if (!$i.prop("checked")) { $i.prop("checked", true); } _self.updatePopperScrollbar(); if ("plp" === _self.config.feature && _self.feature.moveToLeftOnDesktop) { $("#secondary").css({overflow: "visible", display: "inline-block"}); } } if ("bag" === _self.config.feature && 0 === _self.stores.length && !_self.error && (!_self.isStringEmpty(_self.data.zip) || !_self.isStringEmpty(_self.data.sessionZip))) { showWait = true; if (window.progress) { window.progress.show(); } zip = _self.data.zip; if (_self.isStringEmpty(zip)) { zip = _self.data.sessionZip; } if (!_self.isStringEmpty(zip)) { _self.data.zip = zip; _self.getStoresByZipPidBatch(_self.data.skuId, _self.data.skuOrin, zip, "", "", function (parms, data) { _self.searchResponse(parms.pid, parms.zip, data); show(); }); } } if (_self.isPopperOpen) { return; } if (0 === $p.length) { str += _self.buildPopper(theClass); $pl.append(str); _self.addPopperHandlers(); } _self.ignoreNextClosePopper = true; _self["class"].ignoreNextClosePopperSelf = _self; setTimeout(function (e) { _self.ignoreNextClosePopper = false; _self["class"].ignoreNextClosePopperSelf = null; }, 5); if (!showWait) { show(); }}function Bopis_hidePopper() { const _self = this; var $C = $("#" + _self.instance.tagId); _self.ignoreNextClosePopper = false; _self["class"].ignoreNextClosePopperSelf = null; if (0 < $C.length) { $C.find(".select-store").prop("checked", false); $C.find(".select-zip").prop("checked", false); $C.find(".popper").hide(); _self.isPopperOpen = false; } if ("plp" === _self.config.feature && _self.feature.moveToLeftOnDesktop) { $("#secondary").css({overflow: "", display: ""}); }}function Bopis_hidePoppers(ignoreSelf) { const _self = this; var $poppers = $(".vco_Bopis"); if (!_self.isUndefined(ignoreSelf) && !_self.isNull(ignoreSelf)) { $poppers = $poppers.not("#" + ignoreSelf.instance.tagId); } $poppers = $poppers.find(".popper"); $poppers.each(function (i, o) { var $o = $(o), $i, $b, bid, c; $i = $o.closest(".pickup-message").find(".toggle-carrot"); $b = $i.closest("." + _self.component.class); bid = $b.attr("id"); if (coms.hasOwnProperty(bid)) { c = coms[bid]; c.hidePopper.call(c); } });}function Bopis_updatePopperScrollbar() { const _self = this; var $C = $("#" + _self.instance.tagId), $S = $C.find(".popper.bopis .stores"); if (4 < $S.find("li:visible").length) { $S.css("overflow-y", "scroll"); } else { $S.css("overflow-y", "hidden"); }}function Bopis_fixPopperPosition() { const _self = this; const marginLeft = 12; var $ps = $("." + _self.component.class + " .popper"), $au, r, delta, pRight, aRight; $ps.each(function (i, o) { var $o = $(o); r = $o[0].getBoundingClientRect(); if (0 !== r.width || 0 !== r.height) { pRight = Number($o.css("right").replace("px", "")); $au = $o.find(".arrowup"); delta = Math.floor(r.left) - marginLeft; if (0 > delta) { $o.css("right", pRight + delta); aRight = Number($au.css("right").replace("px", "")); $au.css("right", aRight - delta); } } });}function Bopis_multiSelectUpdate($C, selectedCount) { const _self = this; if (0 < _self.feature.storeSelectLimit && _self.feature.storeSelectLimit <= selectedCount) { $C.find(".popper .stores input:not(:checked)").prop("disabled", true); } else { $C.find(".popper .stores input:disabled").prop("disabled", false); }}function Bopis_addPDPZipSelectionHandlers() { const _self = this; const zipClass = "select-zip", ENS = "click." + _self.component.class + "." + zipClass + ".popper"; var $in, len; var $C = $("#" + _self.instance.tagId); var $zObj = $C.find("." + zipClass); $zObj.off(ENS); $zObj.on(ENS, function (e) { $(".toggle-carrot.select-store").prop("checked", false); $(".toggle-carrot.select-store + .vlabel + .popper-location .popper").hide(); _self.isPopperOpen = false; if ($(e.currentTarget).prop("checked")) { _self.showPopper(zipClass); $in = $C.find(".popper .search-by-zip .zip-code"); $in.focus(); len = $in.val().length; $in[0].setSelectionRange(len, len); } else { _self.hidePopper(); } e.stopPropagation(); });}function Bopis_addStoreItemHandlers() { const _self = this, checkedStorePattern = ".popper.bopis .stores input:checked"; var $C = $("#" + _self.instance.tagId), $ins = $C.find(".stores input"); $ins.on("click", function (e) { var store = {}, found = null, str = ""; if (_self.feature.isMultiSelect) { selectedCount = $C.find(checkedStorePattern).length; if (0 === selectedCount) { e.preventDefault(); } else { _self.multiSelectUpdate($C, selectedCount); } } else { store.obj = $C.find("#" + e.currentTarget.getAttribute("id")); store.name = store.obj.find("+ .vlabel > .store > .name").html(); store.id = store.obj.val(); found = _self.findStore(store.id).store; if (!_self.isEmpty(found)) { _self.data.store = found; _self.data.storeId = found.id; str = _self.buildInputRC({isDisabled: _self.isPickupDisabled(), isMultiSelect: false, id: "receive-option-pickup", value: "pickup", name: "receive-option", content: _self.buildProductPickupStatus(), isChecked: true, isMessage: false}); if (!_self.isNull(_self.to)) { clearTimeout(_self.to); _self.to = null; } _self.to = setTimeout(function () { $C.find(".receive-option-pickup").html(str); _self.isPopperOpen = false; _self.updateStoreId(); _self.addStoreSelectionHandlers(); _self.to = null; }, 1000); if ("bag" === _self.config.feature) { window.expose.cartInventory.deliveryOptionChange(_self.data.lineItemId, true, false, _self.fromPreOrder, _self.data.storeId); } } } });}function Bopis_addStoreSelectionHandlers() { const _self = this; var $C = $("#" + _self.instance.tagId); var $ss = $C.find(".select-store"); $ss.on("click", function (e) { $(".toggle-carrot.select-zip").prop("checked", false); $(".toggle-carrot.select-zip + .vlabel + .popper-location .popper").hide(); _self.isPopperOpen = false; if ($ss.prop("checked")) { _self.showPopper(); } else { _self.hidePopper(); } e.stopPropagation(); }); $C.on("click", ".js_nostore", function (e) { e.preventDefault(); _self.showPopper(); }); function pickupOptionHandler(previousOption) { if (_self.isObjectEmpty(_self.data.store) || !_self.data.store.bopis || 0 === _self.data.store.quantity || "bag" === _self.config.feature && _self.data.store.quantity < _self.data.lineItemQuantity) { $(".toggle-carrot.select-zip").prop("checked", false); $(".toggle-carrot.select-zip + .vlabel + .popper-location .popper").hide(); _self.isPopperOpen = false; _self.showPopper(); $("#" + _self.instance.tagId + previousOption).prop("checked", true); } else { if ("bag" === _self.config.feature) { window.expose.cartInventory.deliveryOptionChange(_self.data.lineItemId, true, false, _self.fromPreOrder, _self.data.storeId); } } } function changePWCVisibility(isPreOrder) { var $pwc = $(".vjs_price-with-coupon"); if ($pwc.length > 0) { if (isPreOrder) { $pwc.hide(); } else { $pwc.show(); } } } if ("bag" === _self.config.feature) { $C.find("#" + _self.instance.tagId + "-receive-option-pickup").on("click", function (e) { if (_self.data.triggerPOModal && _self.fromPreOrder) { e.preventDefault(); document.addEventListener("modal-affirmed", function (data) { if (data.detail === "preorder-ro-change-modal") { if (_self.isObjectEmpty(_self.data.store) || !_self.data.store.bopis || 0 === _self.data.store.quantity || "bag" === _self.config.feature && _self.data.store.quantity < _self.data.lineItemQuantity) { pickupOptionHandler("-receive-option-presale"); } else { $("#" + _self.instance.tagId + "-receive-option-pickup").prop("checked", true); window.expose.cartInventory.deliveryOptionChange(_self.data.lineItemId, true, false, _self.fromPreOrder, _self.data.storeId); } window.location.hash = ""; } }); window.location.hash = "preorder-ro-change-modal"; } else { if (_self.fromPreOrder) { pickupOptionHandler("-receive-option-presale"); } else { pickupOptionHandler("-receive-option-ship"); } } }); } else { $C.find("#" + _self.instance.tagId + "-receive-option-pickup").on("change", function (e) { pickupOptionHandler("-receive-option-ship"); changePWCVisibility(false); }); } $C.find("#" + _self.instance.tagId + "-receive-option-ship").on("click", function (e) { if ("bag" === _self.config.feature) { if (_self.data.triggerPOModal && _self.fromPreOrder) { e.preventDefault(); document.addEventListener("modal-affirmed", function (data) { if (data.detail === "preorder-ro-change-modal") { $("#" + _self.instance.tagId + "-receive-option-ship").prop("checked", true); window.expose.cartInventory.deliveryOptionChange(_self.data.lineItemId, false, false, _self.fromPreOrder); window.location.hash = ""; } }); document.addEventListener("modal-rejected", function (data) { if (data.detail === "preorder-ro-change-modal") { $("#" + _self.instance.tagId + "-receive-option-presale").prop("checked", true); } }); window.location.hash = "preorder-ro-change-modal"; } else { $("#" + _self.instance.tagId + "-receive-option-ship").prop("checked", true); window.expose.cartInventory.deliveryOptionChange(_self.data.lineItemId, false, false, _self.fromPreOrder); } } else { $("#" + _self.instance.tagId + "-receive-option-ship").prop("checked", true); changePWCVisibility(false); } }); $C.find("#" + _self.instance.tagId + "-receive-option-presale").on("click", function (e) { if ("bag" === _self.config.feature) { window.expose.cartInventory.deliveryOptionChange(_self.data.lineItemId, false, true, false); } else { changePWCVisibility(true); } });}function Bopis_addPopperHandlers() { const _self = this; const checkedStorePattern = ".popper .stores input:checked"; var i, $C = $("#" + _self.instance.tagId), selectedCount = 0; var isFix = (-1 !== navigator.userAgent.indexOf("iPhone OS 13_")); _self.to = null; function sddChangeZip() { var zip = $C.find(".search-by-zip .zip-code.sdd").val(); var $f, $b; if (5 === zip.length) { if ("bagSddBanner" === _self.config.feature) { $f = $("#sddZipCode"); if ($f.length) { $f.val(zip); $b = $("#update-sddZip"); if ($b.length) { $C.find("#" + _self.instance.tagId + "-select-zip + .vlabel .as-link").html(zip); if (window.progress) { window.progress.show(); } _self.hidePopper(); $("input[type=\"hidden\"][name$=\"_updateCart\"]").remove(); $("input[type=\"hidden\"][name$=\"_updateGiftBox\"]").remove(); $("input[type=\"hidden\"][name$=\"_updateSameDayDelivery\"]").remove(); $b.click(); } } } else { _self.data.sddZip = zip; _self.data.sddStoreId = ""; if (window.progress) { window.progress.show(); } _self.hidePopper(); _self.getSddStore(function (data) { if (!_self.isObjectEmpty(data) && data.hasOwnProperty("store") && !_self.isStringEmpty(data.store)) { _self.data.sddStoreId = data.store; _self.getStoresByZipPidBatch(_self.data.skuId, _self.data.skuOrin, "", _self.data.sddZip, _self.data.sddStoreId, function (parms, data) { log("pdp zip update data:", data); if (data.hasOwnProperty("success") && data.success && data.hasOwnProperty("sddStore") && !_self.isObjectEmpty(data.sddStore)) { _self.data.sddStore = data.sddStore; _self.data.sddStoreId = _self.data.sddStore.id; } if (_self.data.sddEnabled) { $C.find(".sdd-eligible").replaceWith(_self.buildSddEligibleBanner()); _self.addPDPZipSelectionHandlers(); } if (window.progress) { window.progress.hide(); } }); } else { log("no sddStoreId!"); if (_self.data.sddEnabled) { $C.find(".sdd-eligible").replaceWith(_self.buildSddEligibleBanner()); _self.addPDPZipSelectionHandlers(); } if (window.progress) { window.progress.hide(); } } }); } } else { $C.find(".popper.sdd .no-stores-msg").remove(); $C.find(".popper.sdd").append("

    " + _self.config.messaging.notInStockX.replace("X", "" + zip + "") + " " + _self.config.messaging.tryArea + "

    "); } } if (0 < $C.length) { _self.multiSelectUpdate($C, $C.find(checkedStorePattern).length); $C.find(".zip-code:not(.conns)").on("keypress", function (e) { switch (e.key) { case "Enter": e.preventDefault(); if ($(e.currentTarget).siblings("button.update").length) { sddChangeZip(); } else { search(); } break; case "0": case "1": case "2": case "3": case "4": case "5": case "6": case "7": case "8": case "9": break; default: e.preventDefault(); return false; break; } }); function iPhoneOS13PopperFix($this) { var $p = $C.find(".popper"); $p.hide(); setTimeout(function () { $p.show(); $this.focus(); }); } if (isFix) { $C.find(".zip-code").on("keyup", function (e) { var $this = $(this), $p = $C.find(".popper"); if (2 > $this.val().length) { iPhoneOS13PopperFix($this); } }); } $C.find(".zip-code").on("paste", function (e) { var $o = $(this), v, nv, ret = false; setTimeout(function () { v = $o.val(); nv = v.replace(/[^0-9]/g, ""); if (v !== nv) { $o.val(nv); } }, 0); return true; }); _self.addStoreItemHandlers(); _self.updateInStockOnly(); $C.find(".filters input[name=\"in-stock-only\"]").on("click", function () { _self.updateInStockOnly(); }); function search() { var available = false; _self.data.zip = $C.find(".search-by-zip .zip-code.bopis").val(); if ("pdp" === _self.config.feature || "bag" === _self.config.feature) { if (_self.isStringEmpty(_self.data.zip)) { _self.searchResponse(_self.data.skuId, "", {success: true, stores: []}); } else { if (window.progress) { window.progress.show(); } _self.getStoresByZipPidBatch(_self.data.skuId, _self.data.skuOrin, _self.data.zip, "", "", function (parms, data) { _self.searchResponse(parms.pid, parms.zip, data); }); } } else { if ("plp" === _self.config.feature) { _self.getStoresByZip(_self.data.zip, function (zip, data) { var found = {}, selectedStoreIds = [], saveSelected; if (_self.isObject(data) && data.hasOwnProperty("success") && data.success) { _self.data.zip = zip; _self.stores = data.stores; if (data.hasOwnProperty("readyHours") && _self.isNumber(data.readyHours)) { _self.readyHours = data.readyHours; } if (data.hasOwnProperty("pickupToday") && _self.isBoolean(data.pickupToday)) { _self.pickupToday = data.pickupToday; } if (data.hasOwnProperty("pickupDay") && _self.isString(data.pickupDay)) { _self.data.pickupDay = data.pickupDay; } if (!_self.isArrayEmpty(_self.stores)) { found = _self.findFirstBopisStore(); } if (!_self.isUndefined(found.store)) { _self.data.store = found.store; _self.data.storeId = found.store.id; selectedStoreIds.push(found.store.id); _self.selectedStoreIds = []; $C.find(".stores").empty(); $C.find(".stores").append(_self.buildStoresHtml()); $C.find(".zip-link").hide().html(_self.data.zip); $C.find(".show-on-results").show(); $C.find(".no-stores-msg").remove(); _self.updatePopperScrollbar(); _self.addStoreItemHandlers(); } else { _self.data.store = {}; $C.find(".show-on-results").hide(); $C.find(".no-stores-msg").remove(); $C.find(".popper").append("

    " + _self.config.messaging.notInStockX.replace("X", "" + _self.data.zip + "") + " " + _self.config.messaging.tryArea + "

    "); } } }); } } } function handleConnsInvResponse(pid, data) { _self.data.connsInvData = data; $(".conns-label").replaceWith(_self.buildConnsDeliveryStatus()); _self.addConnsZipSelectionHandler(); $("#conns-fields").html(_self.buildConnsFields()); } function updateConnsZipCode() { var zip = $C.find(".search-by-zip .zip-code.conns").val(); if (5 === zip.length) { if ("bag" === _self.config.feature) { $connsZip = $("#connsZipCode"); if ($connsZip.length) { $connsZip.val(zip); $updateZipButton = $("#update-connsZip"); if ($updateZipButton.length) { $C.find("#" + _self.instance.tagId + "-select-zip-conns + .vlabel .as-link").html(zip); if (window.progress) { window.progress.show(); } _self.hidePopper(); $("input[type=\"hidden\"][name$=\"_updateCart\"]").remove(); $("input[type=\"hidden\"][name$=\"_updateGiftBox\"]").remove(); $("input[type=\"hidden\"][name$=\"_updateSameDayDelivery\"]").remove(); $("input[type=\"hidden\"][name$=\"_updateSSDZipCode\"]").remove(); $updateZipButton.click(); } } } else { if (_self.data.connsZip !== zip) { _self.data.connsZip = zip; document.dispatchEvent(new CustomEvent("conns-zip-updated", {detail: {zip: zip, callback: handleConnsInvResponse, pid: _self.data.skuId}})); } _self.hidePopper(); } } } $C.find(".search-by-zip .update").on("click", sddChangeZip); $C.find(".search-by-zip .search").on("click", search); $C.find(".search-by-zip .update-conns-zip").on("click", updateConnsZipCode); $C.find(".search-by-zip .zip-code.conns").on("keypress", function (e) { if (e.key === "Enter") { e.preventDefault(); updateConnsZipCode(); } }); $C.find(".search-by-zip .clear-input").on("click", function (e) { var $z = $(e.currentTarget); if ($z.length) { $z = $z.siblings(".zip-code"); $z.val(""); if (isFix) { iPhoneOS13PopperFix($z); } } }); $C.find(".zip-link").on("click", function (e) { e.stopPropagation(); $C.find(".zip").hide(); $C.find(".top .zip-link").hide(); $C.find(".search-by-zip").show(); $C.find(".top").show(); _self.fixPopperPosition(); }); $C.find(".bottom .multi-select-results").on("click", function () { var $checkedStores, firstStoreId = "", firstStore = {}, storename = "", storeId = "", sep = ""; $checkedStores = $C.find(".stores .rcheckbox:checked"); if (0 < $checkedStores.length) { firstStoreId = $checkedStores.eq(0).val(); if (!_self.isStringEmpty(firstStoreId)) { _self.setSessionStore(firstStoreId); if (1 < $checkedStores.length) { storename = _self.config.messaging.atStoresX.replace("X", $checkedStores.length); } else { firstStore = _self.findStore(firstStoreId).store; storename = firstStore.name; } $C.find(".select-store + .vlabel .as-link").html(storename); _self.selectedStoreIds = []; $checkedStores.each(function (i, o) { var v = $(o).val(); _self.selectedStoreIds.push(v); storeId += sep + v; sep = "|"; }); window.User.storeId = storeId; _self.hidePopper(); var $fbsp = $C.find("#filterByStorePickup"); if (0 < $fbsp.length) { if ($fbsp.prop("checked")) { $fbsp.removeClass("js__allitems"); $fbsp.removeClass("js_nostore"); $fbsp.addClass("js__pickuptoday"); $fbsp.click(); $fbsp.removeClass("js__pickuptoday"); $fbsp.addClass("js__allitems"); } else { $fbsp.addClass("js__pickuptoday"); $fbsp.click(); } } } else { log("first store emtpy!"); } } }); } $(window).off("resize.bopis.popper").on("resize.bopis.popper", function () { _self.fixPopperPosition(); });}function Bopis_addOutlineHandlers() { const _self = this; var flag = false; var $C = $("#" + _self.instance.tagId); $C.on("keydown", function (e) { var $t = $(e.target), $n = $t, f = ""; if (9 === e.keyCode) { flag = true; log("key 9"); } if (13 === e.keyCode) { log("key 13"); log("e.target:", e.target); if ($t.hasClass("vlabel")) { f = $t.attr("for"); if (!_self.isStringEmpty(f)) { $n = $t.siblings("#" + f); } if (0 === $n.length) { $n = $t.prev(); } } $n.trigger("click"); } }); $C.on("focusin", function (e) { var $t = $(e.target); if (flag) { $t.removeClass("no-outline"); flag = false; $t.on("blur", function () { $t.addClass("no-outline"); }); } });}function Bopis_buildStoreId() { const _self = this; var str = ""; str += ""; return str;}function Bopis_updateStoreId() { const _self = this; var $i = $("input[name=\"store-ship-radio\"]"); $i.attr("value", _self.data.storeId);}function Bopis_findStore(id) { const _self = this; var i, found = {}; for (i = 0; i < _self.stores.length; i++) { if (id === _self.stores[i].id) { found.store = _self.stores[i]; found.offset = i; break; } } return found;}function Bopis_findFirstBopisStore() { const _self = this; var i, found = {}; for (i = 0; i < _self.stores.length; i++) { if (_self.stores[i].bopis) { found.store = _self.stores[i]; found.offset = i; break; } } return found;}function Bopis_buildConnsOption() { const _self = this; var str = "", name = "receive-option", labelText = ""; if (_self.isObjectEmpty(_self.data.connsSKUData)) { return str; } str += "

    "; labelText = _self.buildConnsDeliveryStatus(); labelText += "

    "; str += _self.buildInputRC({isMultiSelect: false, id: name + "-ship", value: "ship", name: name, content: labelText, isChecked: true, isMessage: false}); str += "

    " + deliveryOptionTitle; if (!_self.isObjectEmpty(_self.data.connsInvData) && !_self.isObjectEmpty(_self.data.connsSKUData) && _self.data.connsSKUData.delivery && _self.data.connsInvData.conns && _self.data.connsInvData.conns.hasOwnProperty("deliveryDate") && _self.data.connsInvData.conns.deliveryDate !== null) { str += " - " + M.connsDeliveryDate + " " + _self.data.connsInvData.conns.deliveryDate + ""; } else { if (!_self.isObjectEmpty(_self.data.connsSKUData) && !_self.data.connsSKUData.delivery && _self.config.feature === "bag") { str += " - " + _self.config.messaging.estimatedDelivery + _self.data.connsInvData.conns.deliveryDate + ""; } } str += ""; if (!inStock) { zipLabel = "Try Another Area"; deliveryMessage += availability + toDeliver; deliveryMessage += isConnsZipAvailable ? _self.data.connsZip : _self.data.sddZip; deliveryMessage += "."; } else { if (!_self.isStringEmpty(_self.data.connsZip) || !_self.isStringEmpty(_self.data.sddZip)) { zipLabel = isConnsZipAvailable ? _self.data.connsZip : _self.data.sddZip; deliveryMessage += availability + toDeliver; } } if (!isConnsZipAvailable) { _self.data.connsZip = _self.data.sddZip; } str += "
    " + deliveryMessage + ""; str += _self.buildConnsZipSelectionToggle(zipClass, zipLabel); if (inStock && isDeliveryItem && zipLabel !== "" && _self.config.feature !== "bag") { str += "

    "; _self.buildConnsDeliveryPrice(_self.baseAjaxUrl, _self.data.skuId, zipLabel); } return str;}function Bopis_buildConnsFields() { const _self = this, zip = _self.data.connsZip !== "" ? _self.data.connsZip : _self.data.sddZip; var str = ""; if (!_self.isObjectEmpty(_self.data.connsInvData) && !_self.isObjectEmpty(_self.data.connsInvData.conns)) { str += ""; $("#add-to-cart").removeClass("disabled add-to-cart-disabled").addClass("add-to-cart").prop("disabled", false).attr("type", "submit"); } str += ""; return str;}function Bopis_buildConnsDeliveryPrice(ajaxUrl, pid, zip) { if (window.progress) { window.progress.show(); } var url = ajaxUrl + "COConns-GetDeliveryCharges?pid=" + pid + "&zipCode=" + zip; $.ajax(url, {success: function (data) { if (data && data.hasOwnProperty("delivery")) { let deliveryPriceEl = document.querySelector(".conns-delivery-price"); if (deliveryPriceEl !== null) { deliveryPriceEl.innerHTML = data.delivery === "0.00" ? "FREE" : "$" + data.delivery; } } if (window.progress) { window.progress.hide(); } }});}function Bopis_update(data) { const _self = this; var $C; _self.log("Bopis.update called with new data:", data); $C = $("#" + _self.instance.tagId); if (!$C.length) { _self.log("component needs to be rebuilt"); $(".bopis-filter-options").html(_self.buildComponentTag()); $C = $("#" + _self.instance.tagId); } if (data) { Object.assign(_self.data, data); _self.reset(); } $C.empty(); $C.html(_self.html());}var cNames={"Bopis":{isNull:isNull,isUndefined:isUndefined,isBoolean:isBoolean,isFunction:isFunction,isNumber:isNumber,isString:isString,isStringEmpty:isStringEmpty,isArray:isArray,isArrayEmpty:isArrayEmpty,isObject:isObject,isObjectEmpty:isObjectEmpty,isObjectNotEmpty:isObjectNotEmpty,isObjectAndEmpty:isObjectAndEmpty,isObjectAndNotEmpty:isObjectAndNotEmpty,isBaseObject:isBaseObject,isBaseObjectAndEmpty:isBaseObjectAndEmpty,isBaseObjectAndNotEmpty:isBaseObjectAndNotEmpty,isEmpty:isEmpty,toBoolean:toBoolean,getUrlParm:getUrlParm,addUrlParms:addUrlParms,objPropDef:objPropDef,jsonClone:jsonClone,jsonCompare:jsonCompare,performJsonAjaxRequests:performJsonAjaxRequests,pad:pad,createId:createId,onNtoE:onNtoE,onEtoVal:onEtoVal,log:log,newInstance:newInstance,buildStyle:buildStyle,buildTagString:buildTagString,buildComponentTag:buildComponentTag,copyObjectNameMapDefault:copyObjectNameMapDefault,copyObject:copyObject,mergeObjects:mergeObjects,persist:persist,html:Bopis_html,baseAjaxUrl:"/on/demandware.store/Sites-Belk-Site/default/",isPopperOpen:false,promoMsg:"",isPromoMsg:false,promoMsgAssetID:"",shipPromoMsg:"",isShipPromoMsg:false,firstStoreItem:0,ignoreNextClosePopper:false,hasPreOrderResponse:false,fromPreOrder:false,feature:{},store:{},stores:[],sddZipToStoreCache:{},lastSkuId:"none",error:false,searchResults:{"isSearch":false,"bopis":false,"inStore":false,"store":{}},selectedStoreIds:[],inStockOnly:true,getDeliveryConfigBatch:Bopis_getDeliveryConfigBatch,getStoresByZipPidBatch:Bopis_getStoresByZipPidBatch,validateData:Bopis_validateData,reset:Bopis_reset,plp:Bopis_plp,pdp:Bopis_pdp,bag:Bopis_bag,bagSddBanner:Bopis_bagSddBanner,isPickupDisabled:Bopis_isPickupDisabled,isStoresDataNeeded:Bopis_isStoresDataNeeded,buildInputRC:Bopis_buildInputRC,buildPDP:Bopis_buildPDP,fixStoreData:Bopis_fixStoreData,getBopisPromoMessaging:Bopis_getBopisPromoMessaging,getShippingPromoMessage:Bopis_getShippingPromoMessage,getStoresByZip:Bopis_getStoresByZip,getSddStore:Bopis_getSddStore,setSessionStore:Bopis_setSessionStore,getPreOrderFCInventory:Bopis_getPreOrderFCInventory,availabilityMessage:Bopis_availabilityMessage,buildSelectionToggle:Bopis_buildSelectionToggle,buildStoreSelectionToggle:Bopis_buildStoreSelectionToggle,searchStores:Bopis_searchStores,updateInStockOnly:Bopis_updateInStockOnly,searchResponse:Bopis_searchResponse,pickupTodayOrTomorrow:Bopis_pickupTodayOrTomorrow,buildPickupOption:Bopis_buildPickupOption,buildPreSaleOption:Bopis_buildPreSaleOption,buildProductShipStatus:Bopis_buildProductShipStatus,buildProductPickupStatus:Bopis_buildProductPickupStatus,buildStoreHtml:Bopis_buildStoreHtml,buildMyStoreHtml:Bopis_buildMyStoreHtml,buildStoreItemHtml:Bopis_buildStoreItemHtml,buildStoresHtml:Bopis_buildStoresHtml,buildToolTip:Bopis_buildToolTip,buildSddEligibleBanner:Bopis_buildSddEligibleBanner,buildPopper:Bopis_buildPopper,showPopper:Bopis_showPopper,hidePopper:Bopis_hidePopper,hidePoppers:Bopis_hidePoppers,updatePopperScrollbar:Bopis_updatePopperScrollbar,fixPopperPosition:Bopis_fixPopperPosition,multiSelectUpdate:Bopis_multiSelectUpdate,addPDPZipSelectionHandlers:Bopis_addPDPZipSelectionHandlers,addStoreItemHandlers:Bopis_addStoreItemHandlers,addStoreSelectionHandlers:Bopis_addStoreSelectionHandlers,addPopperHandlers:Bopis_addPopperHandlers,addOutlineHandlers:Bopis_addOutlineHandlers,buildStoreId:Bopis_buildStoreId,updateStoreId:Bopis_updateStoreId,findStore:Bopis_findStore,findFirstBopisStore:Bopis_findFirstBopisStore,buildConnsOption:Bopis_buildConnsOption,buildConnsZipSelectionToggle:Bopis_buildConnsZipSelectionToggle,addConnsZipSelectionHandler:Bopis_addConnsZipSelectionHandler,buildConnsDeliveryStatus:Bopis_buildConnsDeliveryStatus,buildConnsFields:Bopis_buildConnsFields,buildConnsDeliveryPrice:Bopis_buildConnsDeliveryPrice,update:Bopis_update,super:{},component:{"name":"Bopis","class":"vco_Bopis"},default:{"data":{"productOnlineOnly":false,"skuOnlineOnly":false,"bopisEnabled":false,"findInStoreEnabled":false,"curbSidePickupEnabled":false,"sddEnabled":false,"fisEnabled":true,"bopisProduct":true,"bopisSku":false,"zip":"","storeId":"","productInStock":false,"skuId":"","skuStockLevel":-1,"surchargeAmount":"","showPreOrder":false,"isPreOrderEnabled":false,"preOrderSelected":false,"hasPreOrderInventory":false,"triggerPOModal":false,"isQuickView":false,"releaseDate":"","preOrderPromoId":"","preOrderPromoDetails":"","store":{},"estimatedShippingMessage":"","sddZip":"","sddStoreId":"","sddStore":{},"sddSameDay":true,"skuSddEligible":false,"skuShipEligible":false,"storeSearchDistance":50,"pickupDay":"","mirakl":false,"bopisPromoAssetID":"bopis-promo-messaging","isConnsItem":false,"connsSKUData":{},"connsInvData":{},"connsZip":""},"config":{"init":{"searchResults":{"isSearch":false,"bopis":false,"inStore":false}},"feature":"","features":{"plp":{"moveToLeftOnDesktop":true,"isMultiSelect":true,"showFilters":false,"myStore":false,"showStock":false,"storeListLimit":0,"storeSelectLimit":5,"hideScrollbars":false},"pdp":{"isMultiSelect":false,"showFilters":true,"myStore":false,"showStock":true,"storeListLimit":0,"storeSelectLimit":0,"hideScrollbars":false},"bag":{"isMultiSelect":false,"showFilters":true,"myStore":false,"showStock":true,"storeListLimit":0,"storeSelectLimit":0,"hideScrollbars":false},"bagSddBanner":{"isMultiSelect":false,"showFilters":false,"myStore":false,"showStock":false,"storeListLimit":0,"storeSelectLimit":0,"hideScrollbars":false}},"readyHours":4,"pickupToday":true,"tags":{},"messaging":{"sdd":{"title":"Same Day Delivery","pre":"NEW! ","sameDayPre":"Get it today! ","nextDayPre":"Get it fast! ","elitesPre":"Elites Get FREE","forElites":"for Elites","Free":"FREE","delivers":"Delivers by {{E}} {{T}}.","eligible":"You have {{X}} eligible item{{S}}. Order by {{C}} to get it today by {{E}}.","eligibleCutoff":"It's past time for Same Day. Get {{X}} item{{S}} tomorrow by {{E}}.","eligibleActive":"{{X}} item{{S}} deliver today by {{E}}.","eligibleActiveCutoff":"It's past time for Same Day. {{X}} item{{S}} deliver tomorrow by {{E}}.","eligiblePresale":"Order by {{C}} to get {{X}} items today by {{E}}. Pre-sale items will still ship on release date.","eligiblePresaleCutoff":"It's past time for Same Day. Get {{X}} item{{S}} tomorrow by {{E}}. Pre-sale will ship on release date.","noSddInZip":"Your items are not available for Same Day to this ZIP.","noZip":"Enter your ZIP to check availability.","zipNotEligible":"This service is not available in your ZIP.","msgEligible":"Eligible for Same Day Delivery","msgNotEligible":"Not eligible for Same Day Delivery"},"stock":{"in":"In stock","low":"A few left","lowX":"X left","out":"Out of stock","less":"Insufficient Stock"},"bopisDisabled":"Pickup temporarily unavailable","shipFree":"Ship It","ship":"Ship It","productOut":"This item is currently out of stock.","productOutNear":"This item is currently out of stock within {{D}} miles of {{Z}}.","skuOut":"Your selected item options are currently out of stock.","productOnlineOnly":"This item is online only.","skuOnlineOnly":"Selected item options are online only.","bopisOnly":"Store Pickup Only","noShip":"Shipping not available","bopis":"FREE Store Pickup","notBopis":"Pickup not available","noBopisNearby":"Pickup not available nearby","readyTimeX":"Most orders ready within X hours!","atMyStore":"Visit store to purchase at ","storeClosure":"Stores are temporarily closed.","storeClosed":"Store is temporarily closed.","atNearStore":"Visit store to purchase.","notNearby":"Not in stock within {{D}} miles","noStoresNearby":"No stores within {{D}} miles","selectZip":"Try Another Area","selectStore":"Find A Store","selectSizeBopisOnly":"Select size to find in store","selectSize":"Please select a size to check in-store availability.","selectSizeForOpt":"Select size to see delivery options.","nearby":"Available nearby","noStoresX":"No Belk stores are located near X.","notInStockX":"Item is not in stock at a store near X.","tryArea":"Try another area or shop online and we'll ship it.","atStoresX":"At X Stores Near You","estimatedDelivery":" Arrives in ","surchargeAmountApplies":"large item surcharge applies.","preSaleHeader":"Pre-sale","preSaleShipMessage":"Ships with Gift","preSaleCouponExclusionMessage":"Coupon & Non-Pre-sale Gifts Excluded","receiveOptionsHeader":"How to get it","connsTruckDelivery":"Truck Delivery","connsDeliveryDate":"Arrives","connsToDeliver":" to deliver at "}}}}};if (window.comp.hasOwnProperty('insert')) nextInsert=window.comp.insert;window.comp={VERSION:"0.3.4.0",debug:debug,insert:insert,attach:attach,getComs:getComs,update:update};})(window,document);

    (Video) God of War Ragnarök - "Father and Son" Cinematic Trailer | PS5 & PS4 Games

    Videos

    1. Sony DOES IT! the NEW PS5 is PS3!
    (PSReady)
    2. GOD OF WAR RAGNAROK PS5 Walkthrough Gameplay Part 1 - INTRO (FULL GAME)
    (theRadBrad)
    3. God of War Ragnarök - PS5 vs PS4 vs PS4 Pro - The Complete Cross-Gen Comparison
    (Digital Foundry)
    4. PS5 - 2 YEARS LATER
    (gameranx)
    5. Unboxing GOD OF WAR RAGNARÖK Jötnar, DualSense, Press kit & Collector's Edition [PS5]
    (TheRelaxingEnd)
    6. Sony Playstation 5 - PS5 Unbox & Setup
    (Just Vlad)
    Top Articles
    Latest Posts
    Article information

    Author: Terrell Hackett

    Last Updated: 20/08/2023

    Views: 5794

    Rating: 4.1 / 5 (52 voted)

    Reviews: 83% of readers found this page helpful

    Author information

    Name: Terrell Hackett

    Birthday: 1992-03-17

    Address: Suite 453 459 Gibson Squares, East Adriane, AK 71925-5692

    Phone: +21811810803470

    Job: Chief Representative

    Hobby: Board games, Rock climbing, Ghost hunting, Origami, Kabaddi, Mushroom hunting, Gaming

    Introduction: My name is Terrell Hackett, I am a gleaming, brainy, courageous, helpful, healthy, cooperative, graceful person who loves writing and wants to share my knowledge and understanding with you.