diff --git a/public/icons/arrow_up.svg b/public/icons/arrow_up.svg index ca5df02a..debd88c6 100644 --- a/public/icons/arrow_up.svg +++ b/public/icons/arrow_up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/public/icons/ver3/Avatar.svg b/public/icons/ver3/Avatar.svg new file mode 100644 index 00000000..5b0be660 --- /dev/null +++ b/public/icons/ver3/Avatar.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/icons/ver3/add.svg b/public/icons/ver3/add.svg new file mode 100644 index 00000000..b82ccac8 --- /dev/null +++ b/public/icons/ver3/add.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/ver3/bell.svg b/public/icons/ver3/bell.svg new file mode 100644 index 00000000..cf787d69 --- /dev/null +++ b/public/icons/ver3/bell.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/ver3/blue_heart.svg b/public/icons/ver3/blue_heart.svg new file mode 100644 index 00000000..e4127bce --- /dev/null +++ b/public/icons/ver3/blue_heart.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/ver3/chevron_down.svg b/public/icons/ver3/chevron_down.svg new file mode 100644 index 00000000..d204da62 --- /dev/null +++ b/public/icons/ver3/chevron_down.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/ver3/house.svg b/public/icons/ver3/house.svg new file mode 100644 index 00000000..650872cc --- /dev/null +++ b/public/icons/ver3/house.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/ver3/list_create.svg b/public/icons/ver3/list_create.svg new file mode 100644 index 00000000..67b82e5a --- /dev/null +++ b/public/icons/ver3/list_create.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/icons/ver3/search.svg b/public/icons/ver3/search.svg new file mode 100644 index 00000000..34fb7d40 --- /dev/null +++ b/public/icons/ver3/search.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/ver3/share.svg b/public/icons/ver3/share.svg new file mode 100644 index 00000000..eb4d401e --- /dev/null +++ b/public/icons/ver3/share.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/ver3/square_pencil.svg b/public/icons/ver3/square_pencil.svg new file mode 100644 index 00000000..ef82c48e --- /dev/null +++ b/public/icons/ver3/square_pencil.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/sw.js b/public/sw.js index a5d691d6..cd5fa6e8 100644 --- a/public/sw.js +++ b/public/sw.js @@ -1,101 +1,674 @@ -/** - * Copyright 2018 Google Inc. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * http://www.apache.org/licenses/LICENSE-2.0 - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// If the loader is already loaded, just stop. if (!self.define) { - let registry = {}; - - // Used for `eval` and `importScripts` where we can't get script URL by other means. - // In both cases, it's safe to use a global var because those functions are synchronous. - let nextDefineUri; - - const singleRequire = (uri, parentUri) => { - uri = new URL(uri + ".js", parentUri).href; - return registry[uri] || ( - - new Promise(resolve => { - if ("document" in self) { - const script = document.createElement("script"); - script.src = uri; - script.onload = resolve; - document.head.appendChild(script); - } else { - nextDefineUri = uri; - importScripts(uri); - resolve(); - } - }) - - .then(() => { - let promise = registry[uri]; - if (!promise) { - throw new Error(`Module ${uri} didn’t register its module`); - } - return promise; + let e, + s = {}; + const i = (i, a) => ( + (i = new URL(i + '.js', a).href), + s[i] || + new Promise((s) => { + if ('document' in self) { + const e = document.createElement('script'); + (e.src = i), (e.onload = s), document.head.appendChild(e); + } else (e = i), importScripts(i), s(); + }).then(() => { + let e = s[i]; + if (!e) throw new Error(`Module ${i} didn’t register its module`); + return e; }) - ); - }; - - self.define = (depsNames, factory) => { - const uri = nextDefineUri || ("document" in self ? document.currentScript.src : "") || location.href; - if (registry[uri]) { - // Module is already loading or loaded. - return; - } - let exports = {}; - const require = depUri => singleRequire(depUri, uri); - const specialDeps = { - module: { uri }, - exports, - require - }; - registry[uri] = Promise.all(depsNames.map( - depName => specialDeps[depName] || require(depName) - )).then(deps => { - factory(...deps); - return exports; - }); + ); + self.define = (a, c) => { + const n = e || ('document' in self ? document.currentScript.src : '') || location.href; + if (s[n]) return; + let o = {}; + const r = (e) => i(e, n), + d = { module: { uri: n }, exports: o, require: r }; + s[n] = Promise.all(a.map((e) => d[e] || r(e))).then((e) => (c(...e), o)); }; } -define(['./workbox-a20113bf'], (function (workbox) { 'use strict'; - - importScripts(); - self.skipWaiting(); - workbox.clientsClaim(); - workbox.registerRoute("/", new workbox.NetworkFirst({ - "cacheName": "start-url", - plugins: [{ - cacheWillUpdate: async ({ - request, - response, - event, - state - }) => { - if (response && response.type === 'opaqueredirect') { - return new Response(response.body, { - status: 200, - statusText: 'OK', - headers: response.headers - }); - } - return response; - } - }] - }), 'GET'); - workbox.registerRoute(/.*/i, new workbox.NetworkOnly({ - "cacheName": "dev", - plugins: [] - }), 'GET'); - -})); -//# sourceMappingURL=sw.js.map +define(['./workbox-c95f9b89'], function (e) { + 'use strict'; + importScripts(), + self.skipWaiting(), + e.clientsClaim(), + e.precacheAndRoute( + [ + { url: '/_next/app-build-manifest.json', revision: '92f0e34ee25137f65ed3153a75fc302b' }, + { url: '/_next/static/5nxbEGFvdgNpHPk_9r0R5/_buildManifest.js', revision: 'cbc471fb8d0d45b3a46987b48f224da4' }, + { url: '/_next/static/5nxbEGFvdgNpHPk_9r0R5/_ssgManifest.js', revision: 'b6652df95db52feb4daf4eca35380933' }, + { url: '/_next/static/chunks/1431-54fefdfa440e1650.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/2080.94f266ec92cebab6.js', revision: '94f266ec92cebab6' }, + { url: '/_next/static/chunks/2175-637415379c3bb71d.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/2181-cd43ceee7e78b1af.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/2472-e8ae552231acaff3.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/2629-8803fd31fab914e1.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/3302-08e60c8dc7f67d10.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/3709-6b562168990c9a8a.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/3783-1958e75e23022ca8.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/381-d9cbac8abf7a6b19.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/3975359d.20a905d3f696a4b0.js', revision: '20a905d3f696a4b0' }, + { url: '/_next/static/chunks/413-d7087f5c18b26dfb.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/4152-d3060b6c71d84516.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/4224-e47effdf1735da06.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/4403-932ea203a9c9779b.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/4986-98d6619813fd422e.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/5167-13fe582eb5a0a9fd.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/5340-f6439465c2046c76.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/5671-f5d07a88762d055c.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/5948-14aae0fa79a17b4f.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/5987.b314e7c0e4ca6019.js', revision: 'b314e7c0e4ca6019' }, + { url: '/_next/static/chunks/6503-23cf9c0adbb84cf9.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/7108-f01d454415fdd2d8.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/8326-1c78b9ff47c5f195.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/9061-9b3c5b78db329ee0.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/9378-bbef32f0c86a50ff.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/9583-97bd19fa3975d683.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/9714-7003c6f99537e848.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/975-28fcc50d4b7f1cea.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/app/(home)/layout-21572c88fc5e7d32.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/app/(home)/page-9c6c191c35c519bb.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/app/account/page-ec8d141d93350411.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/app/account/profile/page-4c2e7aea947c5153.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { + url: '/_next/static/chunks/app/account/withdraw/page-cd5fcffb04647e08.js', + revision: '5nxbEGFvdgNpHPk_9r0R5', + }, + { + url: '/_next/static/chunks/app/auth/redirect/kakao/page-4ec3c9d0afc89af8.js', + revision: '5nxbEGFvdgNpHPk_9r0R5', + }, + { + url: '/_next/static/chunks/app/collection/%5BfolderId%5D/page-1a7e9840db50e143.js', + revision: '5nxbEGFvdgNpHPk_9r0R5', + }, + { url: '/_next/static/chunks/app/collection/page-0ba3ce7200e81ea7.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/app/layout-ae15ed5c99a772a6.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { + url: '/_next/static/chunks/app/list/%5BlistId%5D/edit/page-21234a323c67aa3e.js', + revision: '5nxbEGFvdgNpHPk_9r0R5', + }, + { + url: '/_next/static/chunks/app/list/%5BlistId%5D/history/page-88e8115844344008.js', + revision: '5nxbEGFvdgNpHPk_9r0R5', + }, + { + url: '/_next/static/chunks/app/list/%5BlistId%5D/page-2d51f2d986554965.js', + revision: '5nxbEGFvdgNpHPk_9r0R5', + }, + { url: '/_next/static/chunks/app/list/create/page-790b3e7db301fef1.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/app/not-found-abe431e57148ecd6.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { + url: '/_next/static/chunks/app/notices/%5BnoticeId%5D/page-3ef7759ff9ee662f.js', + revision: '5nxbEGFvdgNpHPk_9r0R5', + }, + { url: '/_next/static/chunks/app/notices/layout-ed020ebe735e786a.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/app/notices/page-64f39d2ac8e32d04.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/app/notification/page-83c82537096217f6.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/app/search/page-2c9b55433a6c7b42.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/app/start-listy/page-3c93f748a4e509ab.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { + url: '/_next/static/chunks/app/user/%5BuserId%5D/(follow)/followers/page-b32cd89df189b9a7.js', + revision: '5nxbEGFvdgNpHPk_9r0R5', + }, + { + url: '/_next/static/chunks/app/user/%5BuserId%5D/(follow)/followings/page-77812bb19701d236.js', + revision: '5nxbEGFvdgNpHPk_9r0R5', + }, + { + url: '/_next/static/chunks/app/user/%5BuserId%5D/collabolist/page-4a9cf9b44af8a476.js', + revision: '5nxbEGFvdgNpHPk_9r0R5', + }, + { + url: '/_next/static/chunks/app/user/%5BuserId%5D/mylist/page-8116a9840872162c.js', + revision: '5nxbEGFvdgNpHPk_9r0R5', + }, + { + url: '/_next/static/chunks/app/withdrawn-account/page-d044bb173a1550a4.js', + revision: '5nxbEGFvdgNpHPk_9r0R5', + }, + { url: '/_next/static/chunks/dc112a36-a26ec11f6dfc39b0.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/eeac573e-379a37b61a843f32.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/fd9d1056-9469e701c612d19b.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/framework-4498e84bb0ba1830.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/main-636390417b266abe.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/main-app-f9d2ea17ff72ddbb.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/pages/_app-8ace8cb53043124a.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/pages/_error-799b6191c844551c.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js', revision: '837c0df77fd5009c9e46d446188ecfd0' }, + { url: '/_next/static/chunks/webpack-4f1b308c0840d742.js', revision: '5nxbEGFvdgNpHPk_9r0R5' }, + { url: '/_next/static/css/0ab870a4df7fbc2c.css', revision: '0ab870a4df7fbc2c' }, + { url: '/_next/static/css/1361cf6b2b4cb0af.css', revision: '1361cf6b2b4cb0af' }, + { url: '/_next/static/css/14b2e3b574f5e034.css', revision: '14b2e3b574f5e034' }, + { url: '/_next/static/css/1707a3d99ee453c5.css', revision: '1707a3d99ee453c5' }, + { url: '/_next/static/css/18ca4472b65c760d.css', revision: '18ca4472b65c760d' }, + { url: '/_next/static/css/1b2e447e3c80179c.css', revision: '1b2e447e3c80179c' }, + { url: '/_next/static/css/208b6a993de51eaf.css', revision: '208b6a993de51eaf' }, + { url: '/_next/static/css/280b23f213d90d1c.css', revision: '280b23f213d90d1c' }, + { url: '/_next/static/css/29f29fc1d1850b2e.css', revision: '29f29fc1d1850b2e' }, + { url: '/_next/static/css/2c375b1b45994eb5.css', revision: '2c375b1b45994eb5' }, + { url: '/_next/static/css/367d5e26cb3af35a.css', revision: '367d5e26cb3af35a' }, + { url: '/_next/static/css/376dc32deef000df.css', revision: '376dc32deef000df' }, + { url: '/_next/static/css/3e2219ae9d565d75.css', revision: '3e2219ae9d565d75' }, + { url: '/_next/static/css/4271835ee8545eed.css', revision: '4271835ee8545eed' }, + { url: '/_next/static/css/42f1b14d07aa835c.css', revision: '42f1b14d07aa835c' }, + { url: '/_next/static/css/719178bc16e534ac.css', revision: '719178bc16e534ac' }, + { url: '/_next/static/css/87114319cedc4e94.css', revision: '87114319cedc4e94' }, + { url: '/_next/static/css/892c4a1f42e9be13.css', revision: '892c4a1f42e9be13' }, + { url: '/_next/static/css/b0f31944929b1918.css', revision: 'b0f31944929b1918' }, + { url: '/_next/static/css/c77302c90dd928d6.css', revision: 'c77302c90dd928d6' }, + { url: '/_next/static/css/d05e712bf441c548.css', revision: 'd05e712bf441c548' }, + { url: '/_next/static/css/ec48ca834057e269.css', revision: 'ec48ca834057e269' }, + { url: '/_next/static/css/f13e72b2058a6547.css', revision: 'f13e72b2058a6547' }, + { url: '/_next/static/css/f53e931a7f80c78c.css', revision: 'f53e931a7f80c78c' }, + { url: '/_next/static/css/f5721bb0afa35a7e.css', revision: 'f5721bb0afa35a7e' }, + { url: '/_next/static/css/fa202f80606cccbf.css', revision: 'fa202f80606cccbf' }, + { + url: '/_next/static/media/fallback_profileImage.cb99c69e.webp', + revision: 'da0ee9aad58808229d9bd8d6c7621e6d', + }, + { url: '/fonts/Pretendard-Black.woff2', revision: '9c448b4c6a74fa9d0f3c5f587dddd61d' }, + { url: '/fonts/Pretendard-Bold.woff2', revision: 'ada305dc6b509a75b5e214975053bcb3' }, + { url: '/fonts/Pretendard-ExtraBold.woff2', revision: '6d788c9ff2c0479213ff4a11b547592c' }, + { url: '/fonts/Pretendard-ExtraLight.woff2', revision: 'a96413cb14c07666b10527782084339f' }, + { url: '/fonts/Pretendard-Light.woff2', revision: '53349e45ddb87964edb163e00e1c8c47' }, + { url: '/fonts/Pretendard-Medium.woff2', revision: 'd801e8cc91183adaee1657a231180593' }, + { url: '/fonts/Pretendard-Regular.woff2', revision: '8e19dfa697923356ce5710c7ca2b2a65' }, + { url: '/fonts/Pretendard-SemiBold.woff2', revision: '6101e99fb33bfa6ab7f52390565a71e5' }, + { url: '/fonts/Pretendard-Thin.woff2', revision: '377e37748604e1df779361b4eb5c2e95' }, + { url: '/icons/add.svg', revision: '4425d07c154460aafca881eb352411de' }, + { url: '/icons/airplane_send.svg', revision: 'ad9e1b4d613acab284035477afa3975a' }, + { url: '/icons/arrow_up.svg', revision: 'e2fe9aaa53bddc8550ce26cbe5070a42' }, + { url: '/icons/attach_image.svg', revision: 'be7110b450056a070553f75d50b46679' }, + { url: '/icons/avatar.svg', revision: 'c38e0eff2d48d837815312c02c5dc4dc' }, + { url: '/icons/back.svg', revision: 'b364998443ea6d7e23745c752fd70d63' }, + { url: '/icons/bell.svg', revision: '32352b54d547c6c3d1e9ada98f89cf74' }, + { url: '/icons/camera.svg', revision: '330209cd0da38e1233539b0d7f9395b5' }, + { url: '/icons/cancel_button.svg', revision: 'f37871286eda108471a6227476a4846d' }, + { url: '/icons/category_book.svg', revision: 'fab53573bc0ec81e6d8b59bbf4e34659' }, + { url: '/icons/category_culture.svg', revision: '94f67ed1c1f36b9a8bb0eb42cd6c110f' }, + { url: '/icons/category_life.svg', revision: '9942c611ab7c78c476d0f66e2871ba98' }, + { url: '/icons/category_movie.svg', revision: 'de8638a11585c5beb7875731a295da7a' }, + { url: '/icons/category_music.svg', revision: 'f7023c3a47f054a6eec2fbaf702893ae' }, + { url: '/icons/category_place.svg', revision: 'afbccf56987ab73b18ad40dcfa783124' }, + { url: '/icons/category_plant.svg', revision: 'b29d14c2d8c3137e4b81340aed28faac' }, + { url: '/icons/check_blue.svg', revision: 'ecf5f4558d2b997ee800e0d8be6cd1f3' }, + { url: '/icons/check_red.svg', revision: '4685830ec32b07af33dec614f974f5ea' }, + { url: '/icons/checked_box.svg', revision: 'e1c164756efee929c2dc79a69ca28bd2' }, + { url: '/icons/chevron_down.svg', revision: '768e4eda9f11abec7b3c2d3b7e7bf7f1' }, + { url: '/icons/chevron_down_double.svg', revision: '39db88f2f4d7ee5c5ca381236a678e1b' }, + { url: '/icons/chevron_down_sm.svg', revision: 'c38f7ad4270d1b2b2bf58aa46a899a2b' }, + { url: '/icons/chevron_right.svg', revision: '0981b5f20e80efe7c34a5e9965c4a799' }, + { url: '/icons/chevron_right_double.svg', revision: '5031077510c715b23d1b69c647376c9f' }, + { url: '/icons/clear.svg', revision: '0435c8c9dca7ba73151b9e6c65a16218' }, + { url: '/icons/clear_x_black.svg', revision: 'afdc0d53a562264d83dadd53723c63f7' }, + { url: '/icons/clear_x_gray.svg', revision: '9b0ad47d68a785c05d33e14e470b402e' }, + { url: '/icons/close_button.svg', revision: '1fab35cbd9be65553a64bbf36bcd9d6e' }, + { url: '/icons/close_x_gray.svg', revision: '0bcc117b0bd5907003ce331abecc7e76' }, + { url: '/icons/collaborators_plus.svg', revision: 'c117159fa7c4c764ac0ab389316792f5' }, + { url: '/icons/collect.svg', revision: '4f247a85bedadd00fc3f469116213bb3' }, + { url: '/icons/collected.svg', revision: '98a75e6a6ea677a3dd6c9729ccf69fde' }, + { url: '/icons/collection.svg', revision: '69158f2eb6537ca8efb74e8eae764e98' }, + { url: '/icons/crown.svg', revision: 'a12dc0a19271aa84604031f5355ea5c1' }, + { url: '/icons/crown_new.svg', revision: 'a12dc0a19271aa84604031f5355ea5c1' }, + { url: '/icons/default_profile.svg', revision: 'd87c8bacd2b227486709030e5ebf01e0' }, + { url: '/icons/default_profile_temporary.svg', revision: '375ece560a523e079a70856166f33caf' }, + { url: '/icons/dnd.svg', revision: '9ae62327214195bec89e980cb36ea4d0' }, + { url: '/icons/edit_pen.svg', revision: '2956f49354f81288ac251afa207fbabb' }, + { url: '/icons/error_x.svg', revision: 'c97ed9dbb02009ebfb0e6c9954778e39' }, + { url: '/icons/etc.svg', revision: '5e44ef8361c08d2cea1188c785d4413d' }, + { url: '/icons/explore.svg', revision: '8d3b400ab31f2e571649c3ad347d2177' }, + { url: '/icons/eye.svg', revision: '5144d71ecbdb9e6fba87ea8d441f75be' }, + { url: '/icons/eye_emoji.svg', revision: '14b342ab5a5e76e73d0b5476fc6c9b0a' }, + { url: '/icons/folder_animal_plant.svg', revision: 'abaaaec9002f86dcc614167125b375eb' }, + { url: '/icons/folder_book.svg', revision: 'c95035883cf0147f8900299365649e05' }, + { url: '/icons/folder_culture.svg', revision: '554e8750785552e4bb44b6546100d240' }, + { url: '/icons/folder_entire.svg', revision: '8b52528573eee0edf322c8cb824b64a8' }, + { url: '/icons/folder_etc.svg', revision: 'a3683e4478a9039625cbc8555b84aa29' }, + { url: '/icons/folder_food.svg', revision: 'e50bcc4dcb50edb033a5c208e8b31cb0' }, + { url: '/icons/folder_life.svg', revision: '7ff9278a980e58b0a23c0aa7d5042807' }, + { url: '/icons/folder_movie_drama.svg', revision: '87cc85701e0bfd8801027c65086bfa81' }, + { url: '/icons/folder_music.svg', revision: 'fd2e5c17e1ed7c78c34078cbbc3e4f6c' }, + { url: '/icons/folder_place.svg', revision: 'cfa79817cf838d2edd063ca4b8e61e99' }, + { url: '/icons/globe.svg', revision: '88761bfb02615fad335fb0c70d5226a3' }, + { url: '/icons/google_login.svg', revision: '8153f680c62a54614b88a3ed392c3977' }, + { url: '/icons/heart_3d.svg', revision: '272534d60024a7283a4f9f5c64b36b65' }, + { url: '/icons/help_circle.svg', revision: 'bb43751e5a610362e746d3da0ff36a58' }, + { url: '/icons/history.svg', revision: '391ee903bb1d3e416cafe69b1cc5f1d0' }, + { url: '/icons/horizontal_line.svg', revision: '14dd20f3381f42e6b4d15a13788f00eb' }, + { url: '/icons/kakao_login.svg', revision: '74efc38a2cbaed5f2e1c5920d804469a' }, + { url: '/icons/kakao_login_narrow.svg', revision: '2c451193f6512b5c54aa47ec48779fce' }, + { url: '/icons/large_logo.svg', revision: 'd2eb0e07b8c3ea82139b013f80ba621d' }, + { url: '/icons/link.svg', revision: '3296c0ece6ad96462b1b353af53b8c7e' }, + { url: '/icons/linkIcon_3d.svg', revision: '23fea7f7834b0dc7b262490f5d019f06' }, + { url: '/icons/lock.svg', revision: '3faff0690ba34aab22d1d968e4fdc05c' }, + { url: '/icons/lock_alt.svg', revision: '302c1e8fe403d12f71ed5d1db92de222' }, + { url: '/icons/logo.svg', revision: '88393a362293d548d027142b98b589a3' }, + { url: '/icons/logo_circle.svg', revision: '3d7434bca194fb13d1c78c778ae47b7b' }, + { url: '/icons/logout.svg', revision: 'efe25b6cb2e03e95bf080321d2e9856a' }, + { url: '/icons/magnifying_glass.svg', revision: 'cba7405d9832deb8058f1dcfd2154ceb' }, + { url: '/icons/message_square.svg', revision: '043aaa3b733b5078caed715fa7c42898' }, + { url: '/icons/my_feed.svg', revision: 'b91a8d4db4f6ae5df2c022f85f742a4d' }, + { url: '/icons/naver_login.svg', revision: 'cc2f0fe313a98312f7b8b2131bc63d5c' }, + { url: '/icons/new/add.svg', revision: '9ebfc66cdc81453411846cdcb1b8d2b5' }, + { url: '/icons/new/bookmark.svg', revision: '73cf41169171f006e2dc8403d6a133e2' }, + { url: '/icons/new/bottom_nav_add.svg', revision: '85bf9d0dcd1d4900b362f26a76f01d40' }, + { url: '/icons/new/bottom_nav_feed.svg', revision: 'c16209493c6294a19a97d3cd7111d45a' }, + { url: '/icons/new/bottom_nav_home.svg', revision: '45318e9648d3a6fdd26ae848f077bf58' }, + { url: '/icons/new/lock.svg', revision: 'effc519f08f38ca2739c1a4cd5e57acc' }, + { url: '/icons/notification_on.svg', revision: '5457acf00dbe76a2b7586d37a57c7025' }, + { url: '/icons/plus.svg', revision: '758d3402130afe8e54ba6600e3eb5d34' }, + { url: '/icons/popup_menu.svg', revision: '5f58e7522878e7bb1f2d887ce78602f3' }, + { url: '/icons/pwa/android/android-pwa-144.png', revision: 'ec347e82a6786d5fa5b3f17917b454b2' }, + { url: '/icons/pwa/android/android-pwa-192.png', revision: '15c091efd31b5edf1f87b86211787859' }, + { url: '/icons/pwa/android/android-pwa-48.png', revision: '6f22b2d25b7813253a500fc7725dc9a5' }, + { url: '/icons/pwa/android/android-pwa-512.png', revision: 'f2ffc05ed366547235bbf4ddfcdac512' }, + { url: '/icons/pwa/android/android-pwa-72.png', revision: 'bd099085259eaa5ca460e442f044b721' }, + { url: '/icons/pwa/android/android-pwa-96.png', revision: '48e06f57f9c3b479f42963b4436c1746' }, + { url: '/icons/pwa/ios/ios-pwa-100.png', revision: '70772572461c5d2663222c21f26b2d3d' }, + { url: '/icons/pwa/ios/ios-pwa-1024.png', revision: '942a5a7bbfe5acafc81d3f7e548f1a60' }, + { url: '/icons/pwa/ios/ios-pwa-114.png', revision: '570ebd75c0547798dc77c9801f7488c0' }, + { url: '/icons/pwa/ios/ios-pwa-120.png', revision: '9ed17e4e2a87702b1ba9559837d61495' }, + { url: '/icons/pwa/ios/ios-pwa-128.png', revision: 'f99968e0a2b71c45170ee80726ebe381' }, + { url: '/icons/pwa/ios/ios-pwa-144.png', revision: 'ec347e82a6786d5fa5b3f17917b454b2' }, + { url: '/icons/pwa/ios/ios-pwa-152.png', revision: 'a81073b984b13884e9cce5b58c123592' }, + { url: '/icons/pwa/ios/ios-pwa-16.png', revision: 'e4d1cdaf6c87f451fd43f7eff776672d' }, + { url: '/icons/pwa/ios/ios-pwa-167.png', revision: '5378f6c12a7fe4f52a0c82bbb2b12892' }, + { url: '/icons/pwa/ios/ios-pwa-180.png', revision: '82183c7e6479ca065b2c3ae85e5f7460' }, + { url: '/icons/pwa/ios/ios-pwa-192.png', revision: '15c091efd31b5edf1f87b86211787859' }, + { url: '/icons/pwa/ios/ios-pwa-20.png', revision: '665a94c0e5d99c550e7bbaaf2112b666' }, + { url: '/icons/pwa/ios/ios-pwa-256.png', revision: '15aee341b5656e6a50d29565427b017f' }, + { url: '/icons/pwa/ios/ios-pwa-29.png', revision: '6f1b14984bd51b94381a683148d25b26' }, + { url: '/icons/pwa/ios/ios-pwa-32.png', revision: 'cf960a7a7a88ad8d292934a9e283ae24' }, + { url: '/icons/pwa/ios/ios-pwa-40.png', revision: 'd48df0d25902a37b3abcedd872914c3e' }, + { url: '/icons/pwa/ios/ios-pwa-50.png', revision: '2bfc8f202d7c5395aa9c3ba27b7f8aec' }, + { url: '/icons/pwa/ios/ios-pwa-512.png', revision: 'f2ffc05ed366547235bbf4ddfcdac512' }, + { url: '/icons/pwa/ios/ios-pwa-57.png', revision: 'b8a5ca4580e0f09d9a2677e0bb50c041' }, + { url: '/icons/pwa/ios/ios-pwa-58.png', revision: '9d130dc6e129961e73d7b32af3228026' }, + { url: '/icons/pwa/ios/ios-pwa-60.png', revision: 'c79b35376cf831bf81e2360b142dcd3d' }, + { url: '/icons/pwa/ios/ios-pwa-64.png', revision: '9a63e4497556dbb7425d3cc20380f99d' }, + { url: '/icons/pwa/ios/ios-pwa-72.png', revision: 'bd099085259eaa5ca460e442f044b721' }, + { url: '/icons/pwa/ios/ios-pwa-76.png', revision: 'ec7fc0ac3c8f03b2dfd2e96afec432a2' }, + { url: '/icons/pwa/ios/ios-pwa-80.png', revision: '9dc0172c85474a197428afaf1f1e0f6f' }, + { url: '/icons/pwa/ios/ios-pwa-87.png', revision: 'adaf96f12ac88b1684e4d5e9b1de5202' }, + { url: '/icons/pwa/windows11/LargeTile.scale-100.png', revision: '248fa58a3ccdf7e0ed2c98f20fb2375a' }, + { url: '/icons/pwa/windows11/LargeTile.scale-125.png', revision: '0952b908b026e24dddce188459e1c9ed' }, + { url: '/icons/pwa/windows11/LargeTile.scale-150.png', revision: '1ba8f9220385e99e27ad5492c2023319' }, + { url: '/icons/pwa/windows11/LargeTile.scale-200.png', revision: '54a1739fa32d94c5ade34024ba5d3267' }, + { url: '/icons/pwa/windows11/LargeTile.scale-400.png', revision: '579f2bae2d59334132fc3bb490168709' }, + { url: '/icons/pwa/windows11/SmallTile.scale-100.png', revision: 'fed433f8972075b8039618f998af4e82' }, + { url: '/icons/pwa/windows11/SmallTile.scale-125.png', revision: '99a3050382ba5e49d2625818feb0d807' }, + { url: '/icons/pwa/windows11/SmallTile.scale-150.png', revision: '7531347be38172a5988e13aa3c57d89b' }, + { url: '/icons/pwa/windows11/SmallTile.scale-200.png', revision: '48b331b973bade0e0501dcab7d807938' }, + { url: '/icons/pwa/windows11/SmallTile.scale-400.png', revision: '4d6889db49d6ff0568d96273f44f5b0c' }, + { url: '/icons/pwa/windows11/SplashScreen.scale-100.png', revision: 'e1c5325dabd6729992a858e6906d5cad' }, + { url: '/icons/pwa/windows11/SplashScreen.scale-125.png', revision: '6199d0d0552fb740a6c684253d7d1f2e' }, + { url: '/icons/pwa/windows11/SplashScreen.scale-150.png', revision: '082903387369d78075f5511eee4b50a1' }, + { url: '/icons/pwa/windows11/SplashScreen.scale-200.png', revision: '92b1bf10a23b4448b4e59f2da1f49f48' }, + { url: '/icons/pwa/windows11/SplashScreen.scale-400.png', revision: '12d31bb9446bd9143b5f0a6b0eae90a6' }, + { url: '/icons/pwa/windows11/Square150x150Logo.scale-100.png', revision: '2749207600d9314d23064ceecc84fc8b' }, + { url: '/icons/pwa/windows11/Square150x150Logo.scale-125.png', revision: '76256650169125879d1852a88242fae1' }, + { url: '/icons/pwa/windows11/Square150x150Logo.scale-150.png', revision: '8c7f307daea71623127a2f1fc85c8617' }, + { url: '/icons/pwa/windows11/Square150x150Logo.scale-200.png', revision: '901cf1e928d8a0f937c06675999920d3' }, + { url: '/icons/pwa/windows11/Square150x150Logo.scale-400.png', revision: '6e5e6d056e91d18306302c15b40d0d52' }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png', + revision: '4f73fa41c23b45ac8f3aa433bd7ea042', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png', + revision: '015cbd9b3c77b157f2fd217e75c0d9f6', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png', + revision: 'c390fcb22692f215c8fb3b602dd4dd2c', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png', + revision: '5b3bc883728de3446d3976cc17e82dd2', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png', + revision: 'b56cc9838d243cf47d12775afefc262a', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png', + revision: '5e2836ebec83614cf1622ba00485c4c1', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png', + revision: '3d6a29076d59134dd07027ec0ac64e03', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png', + revision: '2549c1b2c955aa49012d16062bc99414', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png', + revision: 'c417b191f754a951ad8d6eb5cfb3938d', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png', + revision: '02c8c0e165fc1b41f608a2a63988cbd4', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png', + revision: '703785c61c38de647bd13a108662d0ce', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png', + revision: 'b809431b0b6a971be98bc1c935ec8bac', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png', + revision: '9d175bab7e7b4847dfc3eb5bfd4a2b86', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png', + revision: '3c1ab974ed06b5dde97be528a9aab93d', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png', + revision: '7b3b86e29bd1a182cb47cb2ce74dd063', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-16.png', + revision: '4f73fa41c23b45ac8f3aa433bd7ea042', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-20.png', + revision: '015cbd9b3c77b157f2fd217e75c0d9f6', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-24.png', + revision: 'c390fcb22692f215c8fb3b602dd4dd2c', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-256.png', + revision: '5b3bc883728de3446d3976cc17e82dd2', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-30.png', + revision: 'b56cc9838d243cf47d12775afefc262a', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-32.png', + revision: '5e2836ebec83614cf1622ba00485c4c1', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-36.png', + revision: '3d6a29076d59134dd07027ec0ac64e03', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-40.png', + revision: '2549c1b2c955aa49012d16062bc99414', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-44.png', + revision: 'c417b191f754a951ad8d6eb5cfb3938d', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-48.png', + revision: '02c8c0e165fc1b41f608a2a63988cbd4', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-60.png', + revision: '703785c61c38de647bd13a108662d0ce', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-64.png', + revision: 'b809431b0b6a971be98bc1c935ec8bac', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-72.png', + revision: '9d175bab7e7b4847dfc3eb5bfd4a2b86', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-80.png', + revision: '3c1ab974ed06b5dde97be528a9aab93d', + }, + { + url: '/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-96.png', + revision: '7b3b86e29bd1a182cb47cb2ce74dd063', + }, + { url: '/icons/pwa/windows11/Square44x44Logo.scale-100.png', revision: 'c417b191f754a951ad8d6eb5cfb3938d' }, + { url: '/icons/pwa/windows11/Square44x44Logo.scale-125.png', revision: '22701d968d096945bd88e34ec0e6a741' }, + { url: '/icons/pwa/windows11/Square44x44Logo.scale-150.png', revision: '4fa5a51fb3f635e11503b6c03161c8c4' }, + { url: '/icons/pwa/windows11/Square44x44Logo.scale-200.png', revision: '191294b2265e161a92a064567c7feedb' }, + { url: '/icons/pwa/windows11/Square44x44Logo.scale-400.png', revision: '527a79bd90771b33c766a941f56442df' }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-16.png', revision: '4f73fa41c23b45ac8f3aa433bd7ea042' }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-20.png', revision: '015cbd9b3c77b157f2fd217e75c0d9f6' }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-24.png', revision: 'c390fcb22692f215c8fb3b602dd4dd2c' }, + { + url: '/icons/pwa/windows11/Square44x44Logo.targetsize-256.png', + revision: '5b3bc883728de3446d3976cc17e82dd2', + }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-30.png', revision: 'b56cc9838d243cf47d12775afefc262a' }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-32.png', revision: '5e2836ebec83614cf1622ba00485c4c1' }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-36.png', revision: '3d6a29076d59134dd07027ec0ac64e03' }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-40.png', revision: '2549c1b2c955aa49012d16062bc99414' }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-44.png', revision: 'c417b191f754a951ad8d6eb5cfb3938d' }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-48.png', revision: '02c8c0e165fc1b41f608a2a63988cbd4' }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-60.png', revision: '703785c61c38de647bd13a108662d0ce' }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-64.png', revision: 'b809431b0b6a971be98bc1c935ec8bac' }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-72.png', revision: '9d175bab7e7b4847dfc3eb5bfd4a2b86' }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-80.png', revision: '3c1ab974ed06b5dde97be528a9aab93d' }, + { url: '/icons/pwa/windows11/Square44x44Logo.targetsize-96.png', revision: '7b3b86e29bd1a182cb47cb2ce74dd063' }, + { url: '/icons/pwa/windows11/StoreLogo.scale-100.png', revision: '2bfc8f202d7c5395aa9c3ba27b7f8aec' }, + { url: '/icons/pwa/windows11/StoreLogo.scale-125.png', revision: 'fd1d270bd065fba99b97c9a3363657b4' }, + { url: '/icons/pwa/windows11/StoreLogo.scale-150.png', revision: '7e8c506f0986261ac9144c5a32046a37' }, + { url: '/icons/pwa/windows11/StoreLogo.scale-200.png', revision: '70772572461c5d2663222c21f26b2d3d' }, + { url: '/icons/pwa/windows11/StoreLogo.scale-400.png', revision: 'd3899d097a3144718c8063b3fbc0348d' }, + { url: '/icons/pwa/windows11/Wide310x150Logo.scale-100.png', revision: '31f543a1047a76ed582e3c8136543737' }, + { url: '/icons/pwa/windows11/Wide310x150Logo.scale-125.png', revision: '583576fc99c1151f6000d40847def393' }, + { url: '/icons/pwa/windows11/Wide310x150Logo.scale-150.png', revision: '8a5f2709f2b1c45863daf5105753d1eb' }, + { url: '/icons/pwa/windows11/Wide310x150Logo.scale-200.png', revision: 'e1c5325dabd6729992a858e6906d5cad' }, + { url: '/icons/pwa/windows11/Wide310x150Logo.scale-400.png', revision: '92b1bf10a23b4448b4e59f2da1f49f48' }, + { url: '/icons/search.svg', revision: 'b0daeada51ad288fed573d94b731cef9' }, + { url: '/icons/send.svg', revision: 'f8d8da7a46d39579379fb134a07983c7' }, + { url: '/icons/setting.svg', revision: 'e0747a89be1f898a245f131d1132218a' }, + { url: '/icons/settings.svg', revision: '4f2e9a0edb30b48323b1df11361e4b0d' }, + { url: '/icons/share.svg', revision: '6f598c21f54a878807c319be61c0b302' }, + { url: '/icons/share_alt.svg', revision: '5c932eb6d2d54b2d8a5ca33470040699' }, + { url: '/icons/telescope.svg', revision: 'bafdd07a2c6db3eaa83828f74c36dc3e' }, + { url: '/icons/trash_bin.svg', revision: '6968ca26f4dbc18790469bcfa7ece2bd' }, + { url: '/icons/trash_can.svg', revision: 'e0be066d8b53158917e13e5f96100374' }, + { url: '/icons/unchecked_box.svg', revision: 'd5fad617f49e4135b99eaa45f063201c' }, + { url: '/icons/user.svg', revision: '7e8aec9ea767612406789f54ae33613c' }, + { url: '/icons/ver3/Avatar.svg', revision: '61acea80e56df877b719c77d4aabc1e7' }, + { url: '/icons/ver3/add.svg', revision: '85bf9d0dcd1d4900b362f26a76f01d40' }, + { url: '/icons/ver3/bell.svg', revision: '2b38e0a3405693269ea2005f332eaa76' }, + { url: '/icons/ver3/blue_heart.svg', revision: '9ad9425068e64f1d19647a8d69dd1e6a' }, + { url: '/icons/ver3/chevron_down.svg', revision: '7b50ea8ae18b26287080815953e8d318' }, + { url: '/icons/ver3/house.svg', revision: 'f09d6a9e3662e03bc06cf37b938e405b' }, + { url: '/icons/ver3/list_create.svg', revision: 'b219e82d6ec50846b9ab3dbf92fe9209' }, + { url: '/icons/ver3/search.svg', revision: '01dfb286776abe752b96fcaa7226d8fc' }, + { url: '/icons/ver3/share.svg', revision: 'efec2ebc9a6473304334f9893dadd339' }, + { url: '/icons/ver3/square_pencil.svg', revision: 'd2c95bf3e30694f764c176eadaf87b93' }, + { url: '/icons/vertical_kebab_button.svg', revision: '4d6fb17555a3468e5c04bfca4bc76c69' }, + { url: '/icons/withdraw_x.svg', revision: '06f2c44097743673ed79d028138d10e8' }, + { url: '/icons/write.svg', revision: '020974cecc0f1750fc83fafc19a9ae0a' }, + { url: '/icons/x_circle_fill.svg', revision: '5259ad04a49a4980759339041ccc3548' }, + { url: '/images/arrow_left.svg', revision: 'e507a4d16ddcc89d1b83baf04b51ecc7' }, + { url: '/images/arrow_right.svg', revision: '9e653f2a624cf8c9a0795ece0a245b70' }, + { url: '/images/category_book.png', revision: '64af6478b3c85879a00d4e09f89b9973' }, + { url: '/images/category_culture.png', revision: '3059e84cf9fb84909f6621456b6d1dd9' }, + { url: '/images/category_life.png', revision: '4c28a691daf2be939cb064ea3a8d714d' }, + { url: '/images/category_music.png', revision: 'b24c891fbdad0f0507d0bf5c7ab1c332' }, + { url: '/images/category_place.png', revision: '6a7339fd780c407b74a0ffa1b57bf768' }, + { url: '/images/category_plant.png', revision: 'e78a73b4280aec0d3a36557f0483a7a3' }, + { url: '/images/category_play.png', revision: 'c27081f3b014ea20378fe6c85eae7f6f' }, + { url: '/images/fallback_backgroundImage.webp', revision: '0b02871440b219d106c80ed6e00f2300' }, + { url: '/images/fallback_list.webp', revision: 'a732c63f2f18cc864d880b625d2c260b' }, + { url: '/images/fallback_profileImage.webp', revision: 'da0ee9aad58808229d9bd8d6c7621e6d' }, + { url: '/images/fallback_renctangle.webp', revision: '242b1453f78280adec5f3a0627681c58' }, + { url: '/images/fallback_square.lg.webp', revision: 'b384f5ddee188be53bd2db5c94d42143' }, + { url: '/images/fallback_square.sm.webp', revision: 'dcca0795f367628c018e09d70d7549dc' }, + { url: '/images/list_section3.png', revision: 'd13ba714a10a17b8786bb4837a415bf1' }, + { url: '/images/mock_profile.png', revision: '8eacf17d25139b7268c91c49f2d78a8b' }, + { url: '/images/new_list.png', revision: 'ad4be3e6aac226d4f5ec74b9174ad267' }, + { url: '/images/no_data_image.svg', revision: '1b5772a07e6643affa128167747211c2' }, + { url: '/images/not-found.svg', revision: 'e18e608a0064c1ac11c523fe348f22dc' }, + { url: '/images/ocean.png', revision: 'b792611ed086669ea1834c3d02b26b38' }, + { url: '/images/section3_hero.png', revision: 'f52bb6ff4b2757581be16b8d5080c4ce' }, + { url: '/images/section3_hero.svg', revision: '128bf82d4c461963ee97b53695a6c6de' }, + { url: '/images/section4_hero.svg', revision: 'e021539b0df0bf4b1ade605725266b9a' }, + { url: '/images/section6_image1.png', revision: '66e685fc18cc37110e071c6dde4c9730' }, + { url: '/images/section6_image2.png', revision: '2a7e77fe2c87323f75fef37842006c68' }, + { url: '/images/section6_image3.png', revision: '3addb62e68e97f8585b9dc7678d2ae5e' }, + { url: '/images/section6_image4.png', revision: 'fd8b6b29efb3625bd7be8e3bbfbf48de' }, + { url: '/images/section6_image5.png', revision: '9fc31af2110e67a27ea9c05b44c6d249' }, + { url: '/images/section6_image6.png', revision: 'f5b709ab87883ac86335f4c977c700c2' }, + { url: '/images/section6_image7.png', revision: '4ac4d31569abbdcc6fd0ba357e9521b3' }, + { url: '/images/section7_phone.png', revision: '37c4a84e59bf75bdbf71dca3292bc01c' }, + { url: '/images/section7_phone2.png', revision: 'b2c1ce0706c1e1a5d4280a78f0f3fffa' }, + { url: '/images/sparkle.png', revision: '543554be13d41aed3d6933284d0a8aed' }, + { url: '/images/surf_wave.webp', revision: 'e851b7f596e49c5b1fbd965830066238' }, + { url: '/images/tape_image.png', revision: '730361de353f53cc6a89827cfc6c4a66' }, + { url: '/images/tape_image.svg', revision: '900fe1a4328849a08e01a35131ae7fee' }, + { url: '/images/wave.png', revision: '7b1af732fc31975edf78c1b2546b9863' }, + { url: '/images/wave_image.svg', revision: 'a64659308db08f313f7d1be49611c51b' }, + { url: '/images/wave_surf.png', revision: '23dea9566bc7f4923c665691cfd52a56' }, + { url: '/images/wave_surf.svg', revision: '4fefca4096e8c33dca1a8b11d5e218e2' }, + { url: '/manifest.json', revision: 'fe9e116e457de46ecca8c8ca71ea38d3' }, + { url: '/videos/record_video.mp4', revision: '725adb1154606c22664eabd8bfe01bb4' }, + { url: '/videos/video_section3.mp4', revision: '62c561547deeb4eaee23a4c2255d5b88' }, + ], + { ignoreURLParametersMatching: [] } + ), + e.cleanupOutdatedCaches(), + e.registerRoute( + '/', + new e.NetworkFirst({ + cacheName: 'start-url', + plugins: [ + { + cacheWillUpdate: async ({ request: e, response: s, event: i, state: a }) => + s && 'opaqueredirect' === s.type + ? new Response(s.body, { status: 200, statusText: 'OK', headers: s.headers }) + : s, + }, + ], + }), + 'GET' + ), + e.registerRoute( + /^https:\/\/fonts\.(?:gstatic)\.com\/.*/i, + new e.CacheFirst({ + cacheName: 'google-fonts-webfonts', + plugins: [new e.ExpirationPlugin({ maxEntries: 4, maxAgeSeconds: 31536e3 })], + }), + 'GET' + ), + e.registerRoute( + /^https:\/\/fonts\.(?:googleapis)\.com\/.*/i, + new e.StaleWhileRevalidate({ + cacheName: 'google-fonts-stylesheets', + plugins: [new e.ExpirationPlugin({ maxEntries: 4, maxAgeSeconds: 604800 })], + }), + 'GET' + ), + e.registerRoute( + /\.(?:eot|otf|ttc|ttf|woff|woff2|font.css)$/i, + new e.StaleWhileRevalidate({ + cacheName: 'static-font-assets', + plugins: [new e.ExpirationPlugin({ maxEntries: 4, maxAgeSeconds: 604800 })], + }), + 'GET' + ), + e.registerRoute( + /\.(?:jpg|jpeg|gif|png|svg|ico|webp)$/i, + new e.StaleWhileRevalidate({ + cacheName: 'static-image-assets', + plugins: [new e.ExpirationPlugin({ maxEntries: 64, maxAgeSeconds: 86400 })], + }), + 'GET' + ), + e.registerRoute( + /\/_next\/image\?url=.+$/i, + new e.StaleWhileRevalidate({ + cacheName: 'next-image', + plugins: [new e.ExpirationPlugin({ maxEntries: 64, maxAgeSeconds: 86400 })], + }), + 'GET' + ), + e.registerRoute( + /\.(?:mp3|wav|ogg)$/i, + new e.CacheFirst({ + cacheName: 'static-audio-assets', + plugins: [new e.RangeRequestsPlugin(), new e.ExpirationPlugin({ maxEntries: 32, maxAgeSeconds: 86400 })], + }), + 'GET' + ), + e.registerRoute( + /\.(?:mp4)$/i, + new e.CacheFirst({ + cacheName: 'static-video-assets', + plugins: [new e.RangeRequestsPlugin(), new e.ExpirationPlugin({ maxEntries: 32, maxAgeSeconds: 86400 })], + }), + 'GET' + ), + e.registerRoute( + /\.(?:js)$/i, + new e.StaleWhileRevalidate({ + cacheName: 'static-js-assets', + plugins: [new e.ExpirationPlugin({ maxEntries: 32, maxAgeSeconds: 86400 })], + }), + 'GET' + ), + e.registerRoute( + /\.(?:css|less)$/i, + new e.StaleWhileRevalidate({ + cacheName: 'static-style-assets', + plugins: [new e.ExpirationPlugin({ maxEntries: 32, maxAgeSeconds: 86400 })], + }), + 'GET' + ), + e.registerRoute( + /\/_next\/data\/.+\/.+\.json$/i, + new e.StaleWhileRevalidate({ + cacheName: 'next-data', + plugins: [new e.ExpirationPlugin({ maxEntries: 32, maxAgeSeconds: 86400 })], + }), + 'GET' + ), + e.registerRoute( + /\.(?:json|xml|csv)$/i, + new e.NetworkFirst({ + cacheName: 'static-data-assets', + plugins: [new e.ExpirationPlugin({ maxEntries: 32, maxAgeSeconds: 86400 })], + }), + 'GET' + ), + e.registerRoute( + ({ url: e }) => { + if (!(self.origin === e.origin)) return !1; + const s = e.pathname; + return !s.startsWith('/api/auth/') && !!s.startsWith('/api/'); + }, + new e.NetworkFirst({ + cacheName: 'apis', + networkTimeoutSeconds: 10, + plugins: [new e.ExpirationPlugin({ maxEntries: 16, maxAgeSeconds: 86400 })], + }), + 'GET' + ), + e.registerRoute( + ({ url: e }) => { + if (!(self.origin === e.origin)) return !1; + return !e.pathname.startsWith('/api/'); + }, + new e.NetworkFirst({ + cacheName: 'others', + networkTimeoutSeconds: 10, + plugins: [new e.ExpirationPlugin({ maxEntries: 32, maxAgeSeconds: 86400 })], + }), + 'GET' + ), + e.registerRoute( + ({ url: e }) => !(self.origin === e.origin), + new e.NetworkFirst({ + cacheName: 'cross-origin', + networkTimeoutSeconds: 10, + plugins: [new e.ExpirationPlugin({ maxEntries: 32, maxAgeSeconds: 3600 })], + }), + 'GET' + ); +}); diff --git a/public/sw.js.map b/public/sw.js.map deleted file mode 100644 index b280aeba..00000000 --- a/public/sw.js.map +++ /dev/null @@ -1,32 +0,0 @@ -{ - "version": 3, - "file": "sw.js", - "sources": [ - "../../../../../private/var/folders/k1/dqklgtzs47vckvrkl74mxsxc0000gn/T/92653e5fe2ebf991a1b5d4056a74e5d3/sw.js" - ], - "sourcesContent": [ - "import {registerRoute as workbox_routing_registerRoute} from '/Users/eugene/dev/front/ListyWave-front/node_modules/next-pwa/node_modules/workbox-routing/registerRoute.mjs';\nimport {NetworkFirst as workbox_strategies_NetworkFirst} from '/Users/eugene/dev/front/ListyWave-front/node_modules/next-pwa/node_modules/workbox-strategies/NetworkFirst.mjs';\nimport {NetworkOnly as workbox_strategies_NetworkOnly} from '/Users/eugene/dev/front/ListyWave-front/node_modules/next-pwa/node_modules/workbox-strategies/NetworkOnly.mjs';\nimport {clientsClaim as workbox_core_clientsClaim} from '/Users/eugene/dev/front/ListyWave-front/node_modules/next-pwa/node_modules/workbox-core/clientsClaim.mjs';/**\n * Welcome to your Workbox-powered service worker!\n *\n * You'll need to register this file in your web app.\n * See https://goo.gl/nhQhGp\n *\n * The rest of the code is auto-generated. Please don't update this file\n * directly; instead, make changes to your Workbox build configuration\n * and re-run your build process.\n * See https://goo.gl/2aRDsh\n */\n\n\nimportScripts(\n \n);\n\n\n\n\n\n\n\nself.skipWaiting();\n\nworkbox_core_clientsClaim();\n\n\n\nworkbox_routing_registerRoute(\"/\", new workbox_strategies_NetworkFirst({ \"cacheName\":\"start-url\", plugins: [{ cacheWillUpdate: async ({ request, response, event, state }) => { if (response && response.type === 'opaqueredirect') { return new Response(response.body, { status: 200, statusText: 'OK', headers: response.headers }) } return response } }] }), 'GET');\nworkbox_routing_registerRoute(/.*/i, new workbox_strategies_NetworkOnly({ \"cacheName\":\"dev\", plugins: [] }), 'GET');\n\n\n\n\n" - ], - "names": [ - "importScripts", - "self", - "skipWaiting", - "workbox_core_clientsClaim", - "workbox_routing_registerRoute", - "workbox_strategies_NetworkFirst", - "plugins", - "cacheWillUpdate", - "request", - "response", - "event", - "state", - "type", - "Response", - "body", - "status", - "statusText", - "headers", - "workbox_strategies_NetworkOnly" - ], - "mappings": "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" -} diff --git a/public/workbox-a20113bf.js b/public/workbox-a20113bf.js deleted file mode 100644 index cc752ccd..00000000 --- a/public/workbox-a20113bf.js +++ /dev/null @@ -1,2456 +0,0 @@ -define(['exports'], (function (exports) { 'use strict'; - - // @ts-ignore - try { - self['workbox:core:6.6.0'] && _(); - } catch (e) {} - - /* - Copyright 2019 Google LLC - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - const logger = (() => { - // Don't overwrite this value if it's already set. - // See https://github.com/GoogleChrome/workbox/pull/2284#issuecomment-560470923 - if (!('__WB_DISABLE_DEV_LOGS' in globalThis)) { - self.__WB_DISABLE_DEV_LOGS = false; - } - let inGroup = false; - const methodToColorMap = { - debug: `#7f8c8d`, - log: `#2ecc71`, - warn: `#f39c12`, - error: `#c0392b`, - groupCollapsed: `#3498db`, - groupEnd: null // No colored prefix on groupEnd - }; - const print = function (method, args) { - if (self.__WB_DISABLE_DEV_LOGS) { - return; - } - if (method === 'groupCollapsed') { - // Safari doesn't print all console.groupCollapsed() arguments: - // https://bugs.webkit.org/show_bug.cgi?id=182754 - if (/^((?!chrome|android).)*safari/i.test(navigator.userAgent)) { - console[method](...args); - return; - } - } - const styles = [`background: ${methodToColorMap[method]}`, `border-radius: 0.5em`, `color: white`, `font-weight: bold`, `padding: 2px 0.5em`]; - // When in a group, the workbox prefix is not displayed. - const logPrefix = inGroup ? [] : ['%cworkbox', styles.join(';')]; - console[method](...logPrefix, ...args); - if (method === 'groupCollapsed') { - inGroup = true; - } - if (method === 'groupEnd') { - inGroup = false; - } - }; - // eslint-disable-next-line @typescript-eslint/ban-types - const api = {}; - const loggerMethods = Object.keys(methodToColorMap); - for (const key of loggerMethods) { - const method = key; - api[method] = (...args) => { - print(method, args); - }; - } - return api; - })(); - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - const messages$1 = { - 'invalid-value': ({ - paramName, - validValueDescription, - value - }) => { - if (!paramName || !validValueDescription) { - throw new Error(`Unexpected input to 'invalid-value' error.`); - } - return `The '${paramName}' parameter was given a value with an ` + `unexpected value. ${validValueDescription} Received a value of ` + `${JSON.stringify(value)}.`; - }, - 'not-an-array': ({ - moduleName, - className, - funcName, - paramName - }) => { - if (!moduleName || !className || !funcName || !paramName) { - throw new Error(`Unexpected input to 'not-an-array' error.`); - } - return `The parameter '${paramName}' passed into ` + `'${moduleName}.${className}.${funcName}()' must be an array.`; - }, - 'incorrect-type': ({ - expectedType, - paramName, - moduleName, - className, - funcName - }) => { - if (!expectedType || !paramName || !moduleName || !funcName) { - throw new Error(`Unexpected input to 'incorrect-type' error.`); - } - const classNameStr = className ? `${className}.` : ''; - return `The parameter '${paramName}' passed into ` + `'${moduleName}.${classNameStr}` + `${funcName}()' must be of type ${expectedType}.`; - }, - 'incorrect-class': ({ - expectedClassName, - paramName, - moduleName, - className, - funcName, - isReturnValueProblem - }) => { - if (!expectedClassName || !moduleName || !funcName) { - throw new Error(`Unexpected input to 'incorrect-class' error.`); - } - const classNameStr = className ? `${className}.` : ''; - if (isReturnValueProblem) { - return `The return value from ` + `'${moduleName}.${classNameStr}${funcName}()' ` + `must be an instance of class ${expectedClassName}.`; - } - return `The parameter '${paramName}' passed into ` + `'${moduleName}.${classNameStr}${funcName}()' ` + `must be an instance of class ${expectedClassName}.`; - }, - 'missing-a-method': ({ - expectedMethod, - paramName, - moduleName, - className, - funcName - }) => { - if (!expectedMethod || !paramName || !moduleName || !className || !funcName) { - throw new Error(`Unexpected input to 'missing-a-method' error.`); - } - return `${moduleName}.${className}.${funcName}() expected the ` + `'${paramName}' parameter to expose a '${expectedMethod}' method.`; - }, - 'add-to-cache-list-unexpected-type': ({ - entry - }) => { - return `An unexpected entry was passed to ` + `'workbox-precaching.PrecacheController.addToCacheList()' The entry ` + `'${JSON.stringify(entry)}' isn't supported. You must supply an array of ` + `strings with one or more characters, objects with a url property or ` + `Request objects.`; - }, - 'add-to-cache-list-conflicting-entries': ({ - firstEntry, - secondEntry - }) => { - if (!firstEntry || !secondEntry) { - throw new Error(`Unexpected input to ` + `'add-to-cache-list-duplicate-entries' error.`); - } - return `Two of the entries passed to ` + `'workbox-precaching.PrecacheController.addToCacheList()' had the URL ` + `${firstEntry} but different revision details. Workbox is ` + `unable to cache and version the asset correctly. Please remove one ` + `of the entries.`; - }, - 'plugin-error-request-will-fetch': ({ - thrownErrorMessage - }) => { - if (!thrownErrorMessage) { - throw new Error(`Unexpected input to ` + `'plugin-error-request-will-fetch', error.`); - } - return `An error was thrown by a plugins 'requestWillFetch()' method. ` + `The thrown error message was: '${thrownErrorMessage}'.`; - }, - 'invalid-cache-name': ({ - cacheNameId, - value - }) => { - if (!cacheNameId) { - throw new Error(`Expected a 'cacheNameId' for error 'invalid-cache-name'`); - } - return `You must provide a name containing at least one character for ` + `setCacheDetails({${cacheNameId}: '...'}). Received a value of ` + `'${JSON.stringify(value)}'`; - }, - 'unregister-route-but-not-found-with-method': ({ - method - }) => { - if (!method) { - throw new Error(`Unexpected input to ` + `'unregister-route-but-not-found-with-method' error.`); - } - return `The route you're trying to unregister was not previously ` + `registered for the method type '${method}'.`; - }, - 'unregister-route-route-not-registered': () => { - return `The route you're trying to unregister was not previously ` + `registered.`; - }, - 'queue-replay-failed': ({ - name - }) => { - return `Replaying the background sync queue '${name}' failed.`; - }, - 'duplicate-queue-name': ({ - name - }) => { - return `The Queue name '${name}' is already being used. ` + `All instances of backgroundSync.Queue must be given unique names.`; - }, - 'expired-test-without-max-age': ({ - methodName, - paramName - }) => { - return `The '${methodName}()' method can only be used when the ` + `'${paramName}' is used in the constructor.`; - }, - 'unsupported-route-type': ({ - moduleName, - className, - funcName, - paramName - }) => { - return `The supplied '${paramName}' parameter was an unsupported type. ` + `Please check the docs for ${moduleName}.${className}.${funcName} for ` + `valid input types.`; - }, - 'not-array-of-class': ({ - value, - expectedClass, - moduleName, - className, - funcName, - paramName - }) => { - return `The supplied '${paramName}' parameter must be an array of ` + `'${expectedClass}' objects. Received '${JSON.stringify(value)},'. ` + `Please check the call to ${moduleName}.${className}.${funcName}() ` + `to fix the issue.`; - }, - 'max-entries-or-age-required': ({ - moduleName, - className, - funcName - }) => { - return `You must define either config.maxEntries or config.maxAgeSeconds` + `in ${moduleName}.${className}.${funcName}`; - }, - 'statuses-or-headers-required': ({ - moduleName, - className, - funcName - }) => { - return `You must define either config.statuses or config.headers` + `in ${moduleName}.${className}.${funcName}`; - }, - 'invalid-string': ({ - moduleName, - funcName, - paramName - }) => { - if (!paramName || !moduleName || !funcName) { - throw new Error(`Unexpected input to 'invalid-string' error.`); - } - return `When using strings, the '${paramName}' parameter must start with ` + `'http' (for cross-origin matches) or '/' (for same-origin matches). ` + `Please see the docs for ${moduleName}.${funcName}() for ` + `more info.`; - }, - 'channel-name-required': () => { - return `You must provide a channelName to construct a ` + `BroadcastCacheUpdate instance.`; - }, - 'invalid-responses-are-same-args': () => { - return `The arguments passed into responsesAreSame() appear to be ` + `invalid. Please ensure valid Responses are used.`; - }, - 'expire-custom-caches-only': () => { - return `You must provide a 'cacheName' property when using the ` + `expiration plugin with a runtime caching strategy.`; - }, - 'unit-must-be-bytes': ({ - normalizedRangeHeader - }) => { - if (!normalizedRangeHeader) { - throw new Error(`Unexpected input to 'unit-must-be-bytes' error.`); - } - return `The 'unit' portion of the Range header must be set to 'bytes'. ` + `The Range header provided was "${normalizedRangeHeader}"`; - }, - 'single-range-only': ({ - normalizedRangeHeader - }) => { - if (!normalizedRangeHeader) { - throw new Error(`Unexpected input to 'single-range-only' error.`); - } - return `Multiple ranges are not supported. Please use a single start ` + `value, and optional end value. The Range header provided was ` + `"${normalizedRangeHeader}"`; - }, - 'invalid-range-values': ({ - normalizedRangeHeader - }) => { - if (!normalizedRangeHeader) { - throw new Error(`Unexpected input to 'invalid-range-values' error.`); - } - return `The Range header is missing both start and end values. At least ` + `one of those values is needed. The Range header provided was ` + `"${normalizedRangeHeader}"`; - }, - 'no-range-header': () => { - return `No Range header was found in the Request provided.`; - }, - 'range-not-satisfiable': ({ - size, - start, - end - }) => { - return `The start (${start}) and end (${end}) values in the Range are ` + `not satisfiable by the cached response, which is ${size} bytes.`; - }, - 'attempt-to-cache-non-get-request': ({ - url, - method - }) => { - return `Unable to cache '${url}' because it is a '${method}' request and ` + `only 'GET' requests can be cached.`; - }, - 'cache-put-with-no-response': ({ - url - }) => { - return `There was an attempt to cache '${url}' but the response was not ` + `defined.`; - }, - 'no-response': ({ - url, - error - }) => { - let message = `The strategy could not generate a response for '${url}'.`; - if (error) { - message += ` The underlying error is ${error}.`; - } - return message; - }, - 'bad-precaching-response': ({ - url, - status - }) => { - return `The precaching request for '${url}' failed` + (status ? ` with an HTTP status of ${status}.` : `.`); - }, - 'non-precached-url': ({ - url - }) => { - return `createHandlerBoundToURL('${url}') was called, but that URL is ` + `not precached. Please pass in a URL that is precached instead.`; - }, - 'add-to-cache-list-conflicting-integrities': ({ - url - }) => { - return `Two of the entries passed to ` + `'workbox-precaching.PrecacheController.addToCacheList()' had the URL ` + `${url} with different integrity values. Please remove one of them.`; - }, - 'missing-precache-entry': ({ - cacheName, - url - }) => { - return `Unable to find a precached response in ${cacheName} for ${url}.`; - }, - 'cross-origin-copy-response': ({ - origin - }) => { - return `workbox-core.copyResponse() can only be used with same-origin ` + `responses. It was passed a response with origin ${origin}.`; - }, - 'opaque-streams-source': ({ - type - }) => { - const message = `One of the workbox-streams sources resulted in an ` + `'${type}' response.`; - if (type === 'opaqueredirect') { - return `${message} Please do not use a navigation request that results ` + `in a redirect as a source.`; - } - return `${message} Please ensure your sources are CORS-enabled.`; - } - }; - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - const generatorFunction = (code, details = {}) => { - const message = messages$1[code]; - if (!message) { - throw new Error(`Unable to find message for code '${code}'.`); - } - return message(details); - }; - const messageGenerator = generatorFunction; - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * Workbox errors should be thrown with this class. - * This allows use to ensure the type easily in tests, - * helps developers identify errors from workbox - * easily and allows use to optimise error - * messages correctly. - * - * @private - */ - class WorkboxError extends Error { - /** - * - * @param {string} errorCode The error code that - * identifies this particular error. - * @param {Object=} details Any relevant arguments - * that will help developers identify issues should - * be added as a key on the context object. - */ - constructor(errorCode, details) { - const message = messageGenerator(errorCode, details); - super(message); - this.name = errorCode; - this.details = details; - } - } - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /* - * This method throws if the supplied value is not an array. - * The destructed values are required to produce a meaningful error for users. - * The destructed and restructured object is so it's clear what is - * needed. - */ - const isArray = (value, details) => { - if (!Array.isArray(value)) { - throw new WorkboxError('not-an-array', details); - } - }; - const hasMethod = (object, expectedMethod, details) => { - const type = typeof object[expectedMethod]; - if (type !== 'function') { - details['expectedMethod'] = expectedMethod; - throw new WorkboxError('missing-a-method', details); - } - }; - const isType = (object, expectedType, details) => { - if (typeof object !== expectedType) { - details['expectedType'] = expectedType; - throw new WorkboxError('incorrect-type', details); - } - }; - const isInstance = (object, - // Need the general type to do the check later. - // eslint-disable-next-line @typescript-eslint/ban-types - expectedClass, details) => { - if (!(object instanceof expectedClass)) { - details['expectedClassName'] = expectedClass.name; - throw new WorkboxError('incorrect-class', details); - } - }; - const isOneOf = (value, validValues, details) => { - if (!validValues.includes(value)) { - details['validValueDescription'] = `Valid values are ${JSON.stringify(validValues)}.`; - throw new WorkboxError('invalid-value', details); - } - }; - const isArrayOfClass = (value, - // Need general type to do check later. - expectedClass, - // eslint-disable-line - details) => { - const error = new WorkboxError('not-array-of-class', details); - if (!Array.isArray(value)) { - throw error; - } - for (const item of value) { - if (!(item instanceof expectedClass)) { - throw error; - } - } - }; - const finalAssertExports = { - hasMethod, - isArray, - isInstance, - isOneOf, - isType, - isArrayOfClass - }; - - // @ts-ignore - try { - self['workbox:routing:6.6.0'] && _(); - } catch (e) {} - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * The default HTTP method, 'GET', used when there's no specific method - * configured for a route. - * - * @type {string} - * - * @private - */ - const defaultMethod = 'GET'; - /** - * The list of valid HTTP methods associated with requests that could be routed. - * - * @type {Array} - * - * @private - */ - const validMethods = ['DELETE', 'GET', 'HEAD', 'PATCH', 'POST', 'PUT']; - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * @param {function()|Object} handler Either a function, or an object with a - * 'handle' method. - * @return {Object} An object with a handle method. - * - * @private - */ - const normalizeHandler = handler => { - if (handler && typeof handler === 'object') { - { - finalAssertExports.hasMethod(handler, 'handle', { - moduleName: 'workbox-routing', - className: 'Route', - funcName: 'constructor', - paramName: 'handler' - }); - } - return handler; - } else { - { - finalAssertExports.isType(handler, 'function', { - moduleName: 'workbox-routing', - className: 'Route', - funcName: 'constructor', - paramName: 'handler' - }); - } - return { - handle: handler - }; - } - }; - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * A `Route` consists of a pair of callback functions, "match" and "handler". - * The "match" callback determine if a route should be used to "handle" a - * request by returning a non-falsy value if it can. The "handler" callback - * is called when there is a match and should return a Promise that resolves - * to a `Response`. - * - * @memberof workbox-routing - */ - class Route { - /** - * Constructor for Route class. - * - * @param {workbox-routing~matchCallback} match - * A callback function that determines whether the route matches a given - * `fetch` event by returning a non-falsy value. - * @param {workbox-routing~handlerCallback} handler A callback - * function that returns a Promise resolving to a Response. - * @param {string} [method='GET'] The HTTP method to match the Route - * against. - */ - constructor(match, handler, method = defaultMethod) { - { - finalAssertExports.isType(match, 'function', { - moduleName: 'workbox-routing', - className: 'Route', - funcName: 'constructor', - paramName: 'match' - }); - if (method) { - finalAssertExports.isOneOf(method, validMethods, { - paramName: 'method' - }); - } - } - // These values are referenced directly by Router so cannot be - // altered by minificaton. - this.handler = normalizeHandler(handler); - this.match = match; - this.method = method; - } - /** - * - * @param {workbox-routing-handlerCallback} handler A callback - * function that returns a Promise resolving to a Response - */ - setCatchHandler(handler) { - this.catchHandler = normalizeHandler(handler); - } - } - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * RegExpRoute makes it easy to create a regular expression based - * {@link workbox-routing.Route}. - * - * For same-origin requests the RegExp only needs to match part of the URL. For - * requests against third-party servers, you must define a RegExp that matches - * the start of the URL. - * - * @memberof workbox-routing - * @extends workbox-routing.Route - */ - class RegExpRoute extends Route { - /** - * If the regular expression contains - * [capture groups]{@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp#grouping-back-references}, - * the captured values will be passed to the - * {@link workbox-routing~handlerCallback} `params` - * argument. - * - * @param {RegExp} regExp The regular expression to match against URLs. - * @param {workbox-routing~handlerCallback} handler A callback - * function that returns a Promise resulting in a Response. - * @param {string} [method='GET'] The HTTP method to match the Route - * against. - */ - constructor(regExp, handler, method) { - { - finalAssertExports.isInstance(regExp, RegExp, { - moduleName: 'workbox-routing', - className: 'RegExpRoute', - funcName: 'constructor', - paramName: 'pattern' - }); - } - const match = ({ - url - }) => { - const result = regExp.exec(url.href); - // Return immediately if there's no match. - if (!result) { - return; - } - // Require that the match start at the first character in the URL string - // if it's a cross-origin request. - // See https://github.com/GoogleChrome/workbox/issues/281 for the context - // behind this behavior. - if (url.origin !== location.origin && result.index !== 0) { - { - logger.debug(`The regular expression '${regExp.toString()}' only partially matched ` + `against the cross-origin URL '${url.toString()}'. RegExpRoute's will only ` + `handle cross-origin requests if they match the entire URL.`); - } - return; - } - // If the route matches, but there aren't any capture groups defined, then - // this will return [], which is truthy and therefore sufficient to - // indicate a match. - // If there are capture groups, then it will return their values. - return result.slice(1); - }; - super(match, handler, method); - } - } - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - const getFriendlyURL = url => { - const urlObj = new URL(String(url), location.href); - // See https://github.com/GoogleChrome/workbox/issues/2323 - // We want to include everything, except for the origin if it's same-origin. - return urlObj.href.replace(new RegExp(`^${location.origin}`), ''); - }; - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * The Router can be used to process a `FetchEvent` using one or more - * {@link workbox-routing.Route}, responding with a `Response` if - * a matching route exists. - * - * If no route matches a given a request, the Router will use a "default" - * handler if one is defined. - * - * Should the matching Route throw an error, the Router will use a "catch" - * handler if one is defined to gracefully deal with issues and respond with a - * Request. - * - * If a request matches multiple routes, the **earliest** registered route will - * be used to respond to the request. - * - * @memberof workbox-routing - */ - class Router { - /** - * Initializes a new Router. - */ - constructor() { - this._routes = new Map(); - this._defaultHandlerMap = new Map(); - } - /** - * @return {Map>} routes A `Map` of HTTP - * method name ('GET', etc.) to an array of all the corresponding `Route` - * instances that are registered. - */ - get routes() { - return this._routes; - } - /** - * Adds a fetch event listener to respond to events when a route matches - * the event's request. - */ - addFetchListener() { - // See https://github.com/Microsoft/TypeScript/issues/28357#issuecomment-436484705 - self.addEventListener('fetch', event => { - const { - request - } = event; - const responsePromise = this.handleRequest({ - request, - event - }); - if (responsePromise) { - event.respondWith(responsePromise); - } - }); - } - /** - * Adds a message event listener for URLs to cache from the window. - * This is useful to cache resources loaded on the page prior to when the - * service worker started controlling it. - * - * The format of the message data sent from the window should be as follows. - * Where the `urlsToCache` array may consist of URL strings or an array of - * URL string + `requestInit` object (the same as you'd pass to `fetch()`). - * - * ``` - * { - * type: 'CACHE_URLS', - * payload: { - * urlsToCache: [ - * './script1.js', - * './script2.js', - * ['./script3.js', {mode: 'no-cors'}], - * ], - * }, - * } - * ``` - */ - addCacheListener() { - // See https://github.com/Microsoft/TypeScript/issues/28357#issuecomment-436484705 - self.addEventListener('message', event => { - // event.data is type 'any' - // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access - if (event.data && event.data.type === 'CACHE_URLS') { - // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment - const { - payload - } = event.data; - { - logger.debug(`Caching URLs from the window`, payload.urlsToCache); - } - const requestPromises = Promise.all(payload.urlsToCache.map(entry => { - if (typeof entry === 'string') { - entry = [entry]; - } - const request = new Request(...entry); - return this.handleRequest({ - request, - event - }); - // TODO(philipwalton): TypeScript errors without this typecast for - // some reason (probably a bug). The real type here should work but - // doesn't: `Array | undefined>`. - })); // TypeScript - event.waitUntil(requestPromises); - // If a MessageChannel was used, reply to the message on success. - if (event.ports && event.ports[0]) { - void requestPromises.then(() => event.ports[0].postMessage(true)); - } - } - }); - } - /** - * Apply the routing rules to a FetchEvent object to get a Response from an - * appropriate Route's handler. - * - * @param {Object} options - * @param {Request} options.request The request to handle. - * @param {ExtendableEvent} options.event The event that triggered the - * request. - * @return {Promise|undefined} A promise is returned if a - * registered route can handle the request. If there is no matching - * route and there's no `defaultHandler`, `undefined` is returned. - */ - handleRequest({ - request, - event - }) { - { - finalAssertExports.isInstance(request, Request, { - moduleName: 'workbox-routing', - className: 'Router', - funcName: 'handleRequest', - paramName: 'options.request' - }); - } - const url = new URL(request.url, location.href); - if (!url.protocol.startsWith('http')) { - { - logger.debug(`Workbox Router only supports URLs that start with 'http'.`); - } - return; - } - const sameOrigin = url.origin === location.origin; - const { - params, - route - } = this.findMatchingRoute({ - event, - request, - sameOrigin, - url - }); - let handler = route && route.handler; - const debugMessages = []; - { - if (handler) { - debugMessages.push([`Found a route to handle this request:`, route]); - if (params) { - debugMessages.push([`Passing the following params to the route's handler:`, params]); - } - } - } - // If we don't have a handler because there was no matching route, then - // fall back to defaultHandler if that's defined. - const method = request.method; - if (!handler && this._defaultHandlerMap.has(method)) { - { - debugMessages.push(`Failed to find a matching route. Falling ` + `back to the default handler for ${method}.`); - } - handler = this._defaultHandlerMap.get(method); - } - if (!handler) { - { - // No handler so Workbox will do nothing. If logs is set of debug - // i.e. verbose, we should print out this information. - logger.debug(`No route found for: ${getFriendlyURL(url)}`); - } - return; - } - { - // We have a handler, meaning Workbox is going to handle the route. - // print the routing details to the console. - logger.groupCollapsed(`Router is responding to: ${getFriendlyURL(url)}`); - debugMessages.forEach(msg => { - if (Array.isArray(msg)) { - logger.log(...msg); - } else { - logger.log(msg); - } - }); - logger.groupEnd(); - } - // Wrap in try and catch in case the handle method throws a synchronous - // error. It should still callback to the catch handler. - let responsePromise; - try { - responsePromise = handler.handle({ - url, - request, - event, - params - }); - } catch (err) { - responsePromise = Promise.reject(err); - } - // Get route's catch handler, if it exists - const catchHandler = route && route.catchHandler; - if (responsePromise instanceof Promise && (this._catchHandler || catchHandler)) { - responsePromise = responsePromise.catch(async err => { - // If there's a route catch handler, process that first - if (catchHandler) { - { - // Still include URL here as it will be async from the console group - // and may not make sense without the URL - logger.groupCollapsed(`Error thrown when responding to: ` + ` ${getFriendlyURL(url)}. Falling back to route's Catch Handler.`); - logger.error(`Error thrown by:`, route); - logger.error(err); - logger.groupEnd(); - } - try { - return await catchHandler.handle({ - url, - request, - event, - params - }); - } catch (catchErr) { - if (catchErr instanceof Error) { - err = catchErr; - } - } - } - if (this._catchHandler) { - { - // Still include URL here as it will be async from the console group - // and may not make sense without the URL - logger.groupCollapsed(`Error thrown when responding to: ` + ` ${getFriendlyURL(url)}. Falling back to global Catch Handler.`); - logger.error(`Error thrown by:`, route); - logger.error(err); - logger.groupEnd(); - } - return this._catchHandler.handle({ - url, - request, - event - }); - } - throw err; - }); - } - return responsePromise; - } - /** - * Checks a request and URL (and optionally an event) against the list of - * registered routes, and if there's a match, returns the corresponding - * route along with any params generated by the match. - * - * @param {Object} options - * @param {URL} options.url - * @param {boolean} options.sameOrigin The result of comparing `url.origin` - * against the current origin. - * @param {Request} options.request The request to match. - * @param {Event} options.event The corresponding event. - * @return {Object} An object with `route` and `params` properties. - * They are populated if a matching route was found or `undefined` - * otherwise. - */ - findMatchingRoute({ - url, - sameOrigin, - request, - event - }) { - const routes = this._routes.get(request.method) || []; - for (const route of routes) { - let params; - // route.match returns type any, not possible to change right now. - // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment - const matchResult = route.match({ - url, - sameOrigin, - request, - event - }); - if (matchResult) { - { - // Warn developers that using an async matchCallback is almost always - // not the right thing to do. - if (matchResult instanceof Promise) { - logger.warn(`While routing ${getFriendlyURL(url)}, an async ` + `matchCallback function was used. Please convert the ` + `following route to use a synchronous matchCallback function:`, route); - } - } - // See https://github.com/GoogleChrome/workbox/issues/2079 - // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment - params = matchResult; - if (Array.isArray(params) && params.length === 0) { - // Instead of passing an empty array in as params, use undefined. - params = undefined; - } else if (matchResult.constructor === Object && - // eslint-disable-line - Object.keys(matchResult).length === 0) { - // Instead of passing an empty object in as params, use undefined. - params = undefined; - } else if (typeof matchResult === 'boolean') { - // For the boolean value true (rather than just something truth-y), - // don't set params. - // See https://github.com/GoogleChrome/workbox/pull/2134#issuecomment-513924353 - params = undefined; - } - // Return early if have a match. - return { - route, - params - }; - } - } - // If no match was found above, return and empty object. - return {}; - } - /** - * Define a default `handler` that's called when no routes explicitly - * match the incoming request. - * - * Each HTTP method ('GET', 'POST', etc.) gets its own default handler. - * - * Without a default handler, unmatched requests will go against the - * network as if there were no service worker present. - * - * @param {workbox-routing~handlerCallback} handler A callback - * function that returns a Promise resulting in a Response. - * @param {string} [method='GET'] The HTTP method to associate with this - * default handler. Each method has its own default. - */ - setDefaultHandler(handler, method = defaultMethod) { - this._defaultHandlerMap.set(method, normalizeHandler(handler)); - } - /** - * If a Route throws an error while handling a request, this `handler` - * will be called and given a chance to provide a response. - * - * @param {workbox-routing~handlerCallback} handler A callback - * function that returns a Promise resulting in a Response. - */ - setCatchHandler(handler) { - this._catchHandler = normalizeHandler(handler); - } - /** - * Registers a route with the router. - * - * @param {workbox-routing.Route} route The route to register. - */ - registerRoute(route) { - { - finalAssertExports.isType(route, 'object', { - moduleName: 'workbox-routing', - className: 'Router', - funcName: 'registerRoute', - paramName: 'route' - }); - finalAssertExports.hasMethod(route, 'match', { - moduleName: 'workbox-routing', - className: 'Router', - funcName: 'registerRoute', - paramName: 'route' - }); - finalAssertExports.isType(route.handler, 'object', { - moduleName: 'workbox-routing', - className: 'Router', - funcName: 'registerRoute', - paramName: 'route' - }); - finalAssertExports.hasMethod(route.handler, 'handle', { - moduleName: 'workbox-routing', - className: 'Router', - funcName: 'registerRoute', - paramName: 'route.handler' - }); - finalAssertExports.isType(route.method, 'string', { - moduleName: 'workbox-routing', - className: 'Router', - funcName: 'registerRoute', - paramName: 'route.method' - }); - } - if (!this._routes.has(route.method)) { - this._routes.set(route.method, []); - } - // Give precedence to all of the earlier routes by adding this additional - // route to the end of the array. - this._routes.get(route.method).push(route); - } - /** - * Unregisters a route with the router. - * - * @param {workbox-routing.Route} route The route to unregister. - */ - unregisterRoute(route) { - if (!this._routes.has(route.method)) { - throw new WorkboxError('unregister-route-but-not-found-with-method', { - method: route.method - }); - } - const routeIndex = this._routes.get(route.method).indexOf(route); - if (routeIndex > -1) { - this._routes.get(route.method).splice(routeIndex, 1); - } else { - throw new WorkboxError('unregister-route-route-not-registered'); - } - } - } - - /* - Copyright 2019 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - let defaultRouter; - /** - * Creates a new, singleton Router instance if one does not exist. If one - * does already exist, that instance is returned. - * - * @private - * @return {Router} - */ - const getOrCreateDefaultRouter = () => { - if (!defaultRouter) { - defaultRouter = new Router(); - // The helpers that use the default Router assume these listeners exist. - defaultRouter.addFetchListener(); - defaultRouter.addCacheListener(); - } - return defaultRouter; - }; - - /* - Copyright 2019 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * Easily register a RegExp, string, or function with a caching - * strategy to a singleton Router instance. - * - * This method will generate a Route for you if needed and - * call {@link workbox-routing.Router#registerRoute}. - * - * @param {RegExp|string|workbox-routing.Route~matchCallback|workbox-routing.Route} capture - * If the capture param is a `Route`, all other arguments will be ignored. - * @param {workbox-routing~handlerCallback} [handler] A callback - * function that returns a Promise resulting in a Response. This parameter - * is required if `capture` is not a `Route` object. - * @param {string} [method='GET'] The HTTP method to match the Route - * against. - * @return {workbox-routing.Route} The generated `Route`. - * - * @memberof workbox-routing - */ - function registerRoute(capture, handler, method) { - let route; - if (typeof capture === 'string') { - const captureUrl = new URL(capture, location.href); - { - if (!(capture.startsWith('/') || capture.startsWith('http'))) { - throw new WorkboxError('invalid-string', { - moduleName: 'workbox-routing', - funcName: 'registerRoute', - paramName: 'capture' - }); - } - // We want to check if Express-style wildcards are in the pathname only. - // TODO: Remove this log message in v4. - const valueToCheck = capture.startsWith('http') ? captureUrl.pathname : capture; - // See https://github.com/pillarjs/path-to-regexp#parameters - const wildcards = '[*:?+]'; - if (new RegExp(`${wildcards}`).exec(valueToCheck)) { - logger.debug(`The '$capture' parameter contains an Express-style wildcard ` + `character (${wildcards}). Strings are now always interpreted as ` + `exact matches; use a RegExp for partial or wildcard matches.`); - } - } - const matchCallback = ({ - url - }) => { - { - if (url.pathname === captureUrl.pathname && url.origin !== captureUrl.origin) { - logger.debug(`${capture} only partially matches the cross-origin URL ` + `${url.toString()}. This route will only handle cross-origin requests ` + `if they match the entire URL.`); - } - } - return url.href === captureUrl.href; - }; - // If `capture` is a string then `handler` and `method` must be present. - route = new Route(matchCallback, handler, method); - } else if (capture instanceof RegExp) { - // If `capture` is a `RegExp` then `handler` and `method` must be present. - route = new RegExpRoute(capture, handler, method); - } else if (typeof capture === 'function') { - // If `capture` is a function then `handler` and `method` must be present. - route = new Route(capture, handler, method); - } else if (capture instanceof Route) { - route = capture; - } else { - throw new WorkboxError('unsupported-route-type', { - moduleName: 'workbox-routing', - funcName: 'registerRoute', - paramName: 'capture' - }); - } - const defaultRouter = getOrCreateDefaultRouter(); - defaultRouter.registerRoute(route); - return route; - } - - // @ts-ignore - try { - self['workbox:strategies:6.6.0'] && _(); - } catch (e) {} - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - const cacheOkAndOpaquePlugin = { - /** - * Returns a valid response (to allow caching) if the status is 200 (OK) or - * 0 (opaque). - * - * @param {Object} options - * @param {Response} options.response - * @return {Response|null} - * - * @private - */ - cacheWillUpdate: async ({ - response - }) => { - if (response.status === 200 || response.status === 0) { - return response; - } - return null; - } - }; - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - const _cacheNameDetails = { - googleAnalytics: 'googleAnalytics', - precache: 'precache-v2', - prefix: 'workbox', - runtime: 'runtime', - suffix: typeof registration !== 'undefined' ? registration.scope : '' - }; - const _createCacheName = cacheName => { - return [_cacheNameDetails.prefix, cacheName, _cacheNameDetails.suffix].filter(value => value && value.length > 0).join('-'); - }; - const eachCacheNameDetail = fn => { - for (const key of Object.keys(_cacheNameDetails)) { - fn(key); - } - }; - const cacheNames = { - updateDetails: details => { - eachCacheNameDetail(key => { - if (typeof details[key] === 'string') { - _cacheNameDetails[key] = details[key]; - } - }); - }, - getGoogleAnalyticsName: userCacheName => { - return userCacheName || _createCacheName(_cacheNameDetails.googleAnalytics); - }, - getPrecacheName: userCacheName => { - return userCacheName || _createCacheName(_cacheNameDetails.precache); - }, - getPrefix: () => { - return _cacheNameDetails.prefix; - }, - getRuntimeName: userCacheName => { - return userCacheName || _createCacheName(_cacheNameDetails.runtime); - }, - getSuffix: () => { - return _cacheNameDetails.suffix; - } - }; - - /* - Copyright 2020 Google LLC - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - function stripParams(fullURL, ignoreParams) { - const strippedURL = new URL(fullURL); - for (const param of ignoreParams) { - strippedURL.searchParams.delete(param); - } - return strippedURL.href; - } - /** - * Matches an item in the cache, ignoring specific URL params. This is similar - * to the `ignoreSearch` option, but it allows you to ignore just specific - * params (while continuing to match on the others). - * - * @private - * @param {Cache} cache - * @param {Request} request - * @param {Object} matchOptions - * @param {Array} ignoreParams - * @return {Promise} - */ - async function cacheMatchIgnoreParams(cache, request, ignoreParams, matchOptions) { - const strippedRequestURL = stripParams(request.url, ignoreParams); - // If the request doesn't include any ignored params, match as normal. - if (request.url === strippedRequestURL) { - return cache.match(request, matchOptions); - } - // Otherwise, match by comparing keys - const keysOptions = Object.assign(Object.assign({}, matchOptions), { - ignoreSearch: true - }); - const cacheKeys = await cache.keys(request, keysOptions); - for (const cacheKey of cacheKeys) { - const strippedCacheKeyURL = stripParams(cacheKey.url, ignoreParams); - if (strippedRequestURL === strippedCacheKeyURL) { - return cache.match(cacheKey, matchOptions); - } - } - return; - } - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * The Deferred class composes Promises in a way that allows for them to be - * resolved or rejected from outside the constructor. In most cases promises - * should be used directly, but Deferreds can be necessary when the logic to - * resolve a promise must be separate. - * - * @private - */ - class Deferred { - /** - * Creates a promise and exposes its resolve and reject functions as methods. - */ - constructor() { - this.promise = new Promise((resolve, reject) => { - this.resolve = resolve; - this.reject = reject; - }); - } - } - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - // Callbacks to be executed whenever there's a quota error. - // Can't change Function type right now. - // eslint-disable-next-line @typescript-eslint/ban-types - const quotaErrorCallbacks = new Set(); - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * Runs all of the callback functions, one at a time sequentially, in the order - * in which they were registered. - * - * @memberof workbox-core - * @private - */ - async function executeQuotaErrorCallbacks() { - { - logger.log(`About to run ${quotaErrorCallbacks.size} ` + `callbacks to clean up caches.`); - } - for (const callback of quotaErrorCallbacks) { - await callback(); - { - logger.log(callback, 'is complete.'); - } - } - { - logger.log('Finished running callbacks.'); - } - } - - /* - Copyright 2019 Google LLC - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * Returns a promise that resolves and the passed number of milliseconds. - * This utility is an async/await-friendly version of `setTimeout`. - * - * @param {number} ms - * @return {Promise} - * @private - */ - function timeout(ms) { - return new Promise(resolve => setTimeout(resolve, ms)); - } - - /* - Copyright 2020 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - function toRequest(input) { - return typeof input === 'string' ? new Request(input) : input; - } - /** - * A class created every time a Strategy instance instance calls - * {@link workbox-strategies.Strategy~handle} or - * {@link workbox-strategies.Strategy~handleAll} that wraps all fetch and - * cache actions around plugin callbacks and keeps track of when the strategy - * is "done" (i.e. all added `event.waitUntil()` promises have resolved). - * - * @memberof workbox-strategies - */ - class StrategyHandler { - /** - * Creates a new instance associated with the passed strategy and event - * that's handling the request. - * - * The constructor also initializes the state that will be passed to each of - * the plugins handling this request. - * - * @param {workbox-strategies.Strategy} strategy - * @param {Object} options - * @param {Request|string} options.request A request to run this strategy for. - * @param {ExtendableEvent} options.event The event associated with the - * request. - * @param {URL} [options.url] - * @param {*} [options.params] The return value from the - * {@link workbox-routing~matchCallback} (if applicable). - */ - constructor(strategy, options) { - this._cacheKeys = {}; - /** - * The request the strategy is performing (passed to the strategy's - * `handle()` or `handleAll()` method). - * @name request - * @instance - * @type {Request} - * @memberof workbox-strategies.StrategyHandler - */ - /** - * The event associated with this request. - * @name event - * @instance - * @type {ExtendableEvent} - * @memberof workbox-strategies.StrategyHandler - */ - /** - * A `URL` instance of `request.url` (if passed to the strategy's - * `handle()` or `handleAll()` method). - * Note: the `url` param will be present if the strategy was invoked - * from a workbox `Route` object. - * @name url - * @instance - * @type {URL|undefined} - * @memberof workbox-strategies.StrategyHandler - */ - /** - * A `param` value (if passed to the strategy's - * `handle()` or `handleAll()` method). - * Note: the `param` param will be present if the strategy was invoked - * from a workbox `Route` object and the - * {@link workbox-routing~matchCallback} returned - * a truthy value (it will be that value). - * @name params - * @instance - * @type {*|undefined} - * @memberof workbox-strategies.StrategyHandler - */ - { - finalAssertExports.isInstance(options.event, ExtendableEvent, { - moduleName: 'workbox-strategies', - className: 'StrategyHandler', - funcName: 'constructor', - paramName: 'options.event' - }); - } - Object.assign(this, options); - this.event = options.event; - this._strategy = strategy; - this._handlerDeferred = new Deferred(); - this._extendLifetimePromises = []; - // Copy the plugins list (since it's mutable on the strategy), - // so any mutations don't affect this handler instance. - this._plugins = [...strategy.plugins]; - this._pluginStateMap = new Map(); - for (const plugin of this._plugins) { - this._pluginStateMap.set(plugin, {}); - } - this.event.waitUntil(this._handlerDeferred.promise); - } - /** - * Fetches a given request (and invokes any applicable plugin callback - * methods) using the `fetchOptions` (for non-navigation requests) and - * `plugins` defined on the `Strategy` object. - * - * The following plugin lifecycle methods are invoked when using this method: - * - `requestWillFetch()` - * - `fetchDidSucceed()` - * - `fetchDidFail()` - * - * @param {Request|string} input The URL or request to fetch. - * @return {Promise} - */ - async fetch(input) { - const { - event - } = this; - let request = toRequest(input); - if (request.mode === 'navigate' && event instanceof FetchEvent && event.preloadResponse) { - const possiblePreloadResponse = await event.preloadResponse; - if (possiblePreloadResponse) { - { - logger.log(`Using a preloaded navigation response for ` + `'${getFriendlyURL(request.url)}'`); - } - return possiblePreloadResponse; - } - } - // If there is a fetchDidFail plugin, we need to save a clone of the - // original request before it's either modified by a requestWillFetch - // plugin or before the original request's body is consumed via fetch(). - const originalRequest = this.hasCallback('fetchDidFail') ? request.clone() : null; - try { - for (const cb of this.iterateCallbacks('requestWillFetch')) { - request = await cb({ - request: request.clone(), - event - }); - } - } catch (err) { - if (err instanceof Error) { - throw new WorkboxError('plugin-error-request-will-fetch', { - thrownErrorMessage: err.message - }); - } - } - // The request can be altered by plugins with `requestWillFetch` making - // the original request (most likely from a `fetch` event) different - // from the Request we make. Pass both to `fetchDidFail` to aid debugging. - const pluginFilteredRequest = request.clone(); - try { - let fetchResponse; - // See https://github.com/GoogleChrome/workbox/issues/1796 - fetchResponse = await fetch(request, request.mode === 'navigate' ? undefined : this._strategy.fetchOptions); - if ("development" !== 'production') { - logger.debug(`Network request for ` + `'${getFriendlyURL(request.url)}' returned a response with ` + `status '${fetchResponse.status}'.`); - } - for (const callback of this.iterateCallbacks('fetchDidSucceed')) { - fetchResponse = await callback({ - event, - request: pluginFilteredRequest, - response: fetchResponse - }); - } - return fetchResponse; - } catch (error) { - { - logger.log(`Network request for ` + `'${getFriendlyURL(request.url)}' threw an error.`, error); - } - // `originalRequest` will only exist if a `fetchDidFail` callback - // is being used (see above). - if (originalRequest) { - await this.runCallbacks('fetchDidFail', { - error: error, - event, - originalRequest: originalRequest.clone(), - request: pluginFilteredRequest.clone() - }); - } - throw error; - } - } - /** - * Calls `this.fetch()` and (in the background) runs `this.cachePut()` on - * the response generated by `this.fetch()`. - * - * The call to `this.cachePut()` automatically invokes `this.waitUntil()`, - * so you do not have to manually call `waitUntil()` on the event. - * - * @param {Request|string} input The request or URL to fetch and cache. - * @return {Promise} - */ - async fetchAndCachePut(input) { - const response = await this.fetch(input); - const responseClone = response.clone(); - void this.waitUntil(this.cachePut(input, responseClone)); - return response; - } - /** - * Matches a request from the cache (and invokes any applicable plugin - * callback methods) using the `cacheName`, `matchOptions`, and `plugins` - * defined on the strategy object. - * - * The following plugin lifecycle methods are invoked when using this method: - * - cacheKeyWillByUsed() - * - cachedResponseWillByUsed() - * - * @param {Request|string} key The Request or URL to use as the cache key. - * @return {Promise} A matching response, if found. - */ - async cacheMatch(key) { - const request = toRequest(key); - let cachedResponse; - const { - cacheName, - matchOptions - } = this._strategy; - const effectiveRequest = await this.getCacheKey(request, 'read'); - const multiMatchOptions = Object.assign(Object.assign({}, matchOptions), { - cacheName - }); - cachedResponse = await caches.match(effectiveRequest, multiMatchOptions); - { - if (cachedResponse) { - logger.debug(`Found a cached response in '${cacheName}'.`); - } else { - logger.debug(`No cached response found in '${cacheName}'.`); - } - } - for (const callback of this.iterateCallbacks('cachedResponseWillBeUsed')) { - cachedResponse = (await callback({ - cacheName, - matchOptions, - cachedResponse, - request: effectiveRequest, - event: this.event - })) || undefined; - } - return cachedResponse; - } - /** - * Puts a request/response pair in the cache (and invokes any applicable - * plugin callback methods) using the `cacheName` and `plugins` defined on - * the strategy object. - * - * The following plugin lifecycle methods are invoked when using this method: - * - cacheKeyWillByUsed() - * - cacheWillUpdate() - * - cacheDidUpdate() - * - * @param {Request|string} key The request or URL to use as the cache key. - * @param {Response} response The response to cache. - * @return {Promise} `false` if a cacheWillUpdate caused the response - * not be cached, and `true` otherwise. - */ - async cachePut(key, response) { - const request = toRequest(key); - // Run in the next task to avoid blocking other cache reads. - // https://github.com/w3c/ServiceWorker/issues/1397 - await timeout(0); - const effectiveRequest = await this.getCacheKey(request, 'write'); - { - if (effectiveRequest.method && effectiveRequest.method !== 'GET') { - throw new WorkboxError('attempt-to-cache-non-get-request', { - url: getFriendlyURL(effectiveRequest.url), - method: effectiveRequest.method - }); - } - // See https://github.com/GoogleChrome/workbox/issues/2818 - const vary = response.headers.get('Vary'); - if (vary) { - logger.debug(`The response for ${getFriendlyURL(effectiveRequest.url)} ` + `has a 'Vary: ${vary}' header. ` + `Consider setting the {ignoreVary: true} option on your strategy ` + `to ensure cache matching and deletion works as expected.`); - } - } - if (!response) { - { - logger.error(`Cannot cache non-existent response for ` + `'${getFriendlyURL(effectiveRequest.url)}'.`); - } - throw new WorkboxError('cache-put-with-no-response', { - url: getFriendlyURL(effectiveRequest.url) - }); - } - const responseToCache = await this._ensureResponseSafeToCache(response); - if (!responseToCache) { - { - logger.debug(`Response '${getFriendlyURL(effectiveRequest.url)}' ` + `will not be cached.`, responseToCache); - } - return false; - } - const { - cacheName, - matchOptions - } = this._strategy; - const cache = await self.caches.open(cacheName); - const hasCacheUpdateCallback = this.hasCallback('cacheDidUpdate'); - const oldResponse = hasCacheUpdateCallback ? await cacheMatchIgnoreParams( - // TODO(philipwalton): the `__WB_REVISION__` param is a precaching - // feature. Consider into ways to only add this behavior if using - // precaching. - cache, effectiveRequest.clone(), ['__WB_REVISION__'], matchOptions) : null; - { - logger.debug(`Updating the '${cacheName}' cache with a new Response ` + `for ${getFriendlyURL(effectiveRequest.url)}.`); - } - try { - await cache.put(effectiveRequest, hasCacheUpdateCallback ? responseToCache.clone() : responseToCache); - } catch (error) { - if (error instanceof Error) { - // See https://developer.mozilla.org/en-US/docs/Web/API/DOMException#exception-QuotaExceededError - if (error.name === 'QuotaExceededError') { - await executeQuotaErrorCallbacks(); - } - throw error; - } - } - for (const callback of this.iterateCallbacks('cacheDidUpdate')) { - await callback({ - cacheName, - oldResponse, - newResponse: responseToCache.clone(), - request: effectiveRequest, - event: this.event - }); - } - return true; - } - /** - * Checks the list of plugins for the `cacheKeyWillBeUsed` callback, and - * executes any of those callbacks found in sequence. The final `Request` - * object returned by the last plugin is treated as the cache key for cache - * reads and/or writes. If no `cacheKeyWillBeUsed` plugin callbacks have - * been registered, the passed request is returned unmodified - * - * @param {Request} request - * @param {string} mode - * @return {Promise} - */ - async getCacheKey(request, mode) { - const key = `${request.url} | ${mode}`; - if (!this._cacheKeys[key]) { - let effectiveRequest = request; - for (const callback of this.iterateCallbacks('cacheKeyWillBeUsed')) { - effectiveRequest = toRequest(await callback({ - mode, - request: effectiveRequest, - event: this.event, - // params has a type any can't change right now. - params: this.params // eslint-disable-line - })); - } - this._cacheKeys[key] = effectiveRequest; - } - return this._cacheKeys[key]; - } - /** - * Returns true if the strategy has at least one plugin with the given - * callback. - * - * @param {string} name The name of the callback to check for. - * @return {boolean} - */ - hasCallback(name) { - for (const plugin of this._strategy.plugins) { - if (name in plugin) { - return true; - } - } - return false; - } - /** - * Runs all plugin callbacks matching the given name, in order, passing the - * given param object (merged ith the current plugin state) as the only - * argument. - * - * Note: since this method runs all plugins, it's not suitable for cases - * where the return value of a callback needs to be applied prior to calling - * the next callback. See - * {@link workbox-strategies.StrategyHandler#iterateCallbacks} - * below for how to handle that case. - * - * @param {string} name The name of the callback to run within each plugin. - * @param {Object} param The object to pass as the first (and only) param - * when executing each callback. This object will be merged with the - * current plugin state prior to callback execution. - */ - async runCallbacks(name, param) { - for (const callback of this.iterateCallbacks(name)) { - // TODO(philipwalton): not sure why `any` is needed. It seems like - // this should work with `as WorkboxPluginCallbackParam[C]`. - await callback(param); - } - } - /** - * Accepts a callback and returns an iterable of matching plugin callbacks, - * where each callback is wrapped with the current handler state (i.e. when - * you call each callback, whatever object parameter you pass it will - * be merged with the plugin's current state). - * - * @param {string} name The name fo the callback to run - * @return {Array} - */ - *iterateCallbacks(name) { - for (const plugin of this._strategy.plugins) { - if (typeof plugin[name] === 'function') { - const state = this._pluginStateMap.get(plugin); - const statefulCallback = param => { - const statefulParam = Object.assign(Object.assign({}, param), { - state - }); - // TODO(philipwalton): not sure why `any` is needed. It seems like - // this should work with `as WorkboxPluginCallbackParam[C]`. - return plugin[name](statefulParam); - }; - yield statefulCallback; - } - } - } - /** - * Adds a promise to the - * [extend lifetime promises]{@link https://w3c.github.io/ServiceWorker/#extendableevent-extend-lifetime-promises} - * of the event event associated with the request being handled (usually a - * `FetchEvent`). - * - * Note: you can await - * {@link workbox-strategies.StrategyHandler~doneWaiting} - * to know when all added promises have settled. - * - * @param {Promise} promise A promise to add to the extend lifetime promises - * of the event that triggered the request. - */ - waitUntil(promise) { - this._extendLifetimePromises.push(promise); - return promise; - } - /** - * Returns a promise that resolves once all promises passed to - * {@link workbox-strategies.StrategyHandler~waitUntil} - * have settled. - * - * Note: any work done after `doneWaiting()` settles should be manually - * passed to an event's `waitUntil()` method (not this handler's - * `waitUntil()` method), otherwise the service worker thread my be killed - * prior to your work completing. - */ - async doneWaiting() { - let promise; - while (promise = this._extendLifetimePromises.shift()) { - await promise; - } - } - /** - * Stops running the strategy and immediately resolves any pending - * `waitUntil()` promises. - */ - destroy() { - this._handlerDeferred.resolve(null); - } - /** - * This method will call cacheWillUpdate on the available plugins (or use - * status === 200) to determine if the Response is safe and valid to cache. - * - * @param {Request} options.request - * @param {Response} options.response - * @return {Promise} - * - * @private - */ - async _ensureResponseSafeToCache(response) { - let responseToCache = response; - let pluginsUsed = false; - for (const callback of this.iterateCallbacks('cacheWillUpdate')) { - responseToCache = (await callback({ - request: this.request, - response: responseToCache, - event: this.event - })) || undefined; - pluginsUsed = true; - if (!responseToCache) { - break; - } - } - if (!pluginsUsed) { - if (responseToCache && responseToCache.status !== 200) { - responseToCache = undefined; - } - { - if (responseToCache) { - if (responseToCache.status !== 200) { - if (responseToCache.status === 0) { - logger.warn(`The response for '${this.request.url}' ` + `is an opaque response. The caching strategy that you're ` + `using will not cache opaque responses by default.`); - } else { - logger.debug(`The response for '${this.request.url}' ` + `returned a status code of '${response.status}' and won't ` + `be cached as a result.`); - } - } - } - } - } - return responseToCache; - } - } - - /* - Copyright 2020 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * An abstract base class that all other strategy classes must extend from: - * - * @memberof workbox-strategies - */ - class Strategy { - /** - * Creates a new instance of the strategy and sets all documented option - * properties as public instance properties. - * - * Note: if a custom strategy class extends the base Strategy class and does - * not need more than these properties, it does not need to define its own - * constructor. - * - * @param {Object} [options] - * @param {string} [options.cacheName] Cache name to store and retrieve - * requests. Defaults to the cache names provided by - * {@link workbox-core.cacheNames}. - * @param {Array} [options.plugins] [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} - * to use in conjunction with this caching strategy. - * @param {Object} [options.fetchOptions] Values passed along to the - * [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters) - * of [non-navigation](https://github.com/GoogleChrome/workbox/issues/1796) - * `fetch()` requests made by this strategy. - * @param {Object} [options.matchOptions] The - * [`CacheQueryOptions`]{@link https://w3c.github.io/ServiceWorker/#dictdef-cachequeryoptions} - * for any `cache.match()` or `cache.put()` calls made by this strategy. - */ - constructor(options = {}) { - /** - * Cache name to store and retrieve - * requests. Defaults to the cache names provided by - * {@link workbox-core.cacheNames}. - * - * @type {string} - */ - this.cacheName = cacheNames.getRuntimeName(options.cacheName); - /** - * The list - * [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} - * used by this strategy. - * - * @type {Array} - */ - this.plugins = options.plugins || []; - /** - * Values passed along to the - * [`init`]{@link https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters} - * of all fetch() requests made by this strategy. - * - * @type {Object} - */ - this.fetchOptions = options.fetchOptions; - /** - * The - * [`CacheQueryOptions`]{@link https://w3c.github.io/ServiceWorker/#dictdef-cachequeryoptions} - * for any `cache.match()` or `cache.put()` calls made by this strategy. - * - * @type {Object} - */ - this.matchOptions = options.matchOptions; - } - /** - * Perform a request strategy and returns a `Promise` that will resolve with - * a `Response`, invoking all relevant plugin callbacks. - * - * When a strategy instance is registered with a Workbox - * {@link workbox-routing.Route}, this method is automatically - * called when the route matches. - * - * Alternatively, this method can be used in a standalone `FetchEvent` - * listener by passing it to `event.respondWith()`. - * - * @param {FetchEvent|Object} options A `FetchEvent` or an object with the - * properties listed below. - * @param {Request|string} options.request A request to run this strategy for. - * @param {ExtendableEvent} options.event The event associated with the - * request. - * @param {URL} [options.url] - * @param {*} [options.params] - */ - handle(options) { - const [responseDone] = this.handleAll(options); - return responseDone; - } - /** - * Similar to {@link workbox-strategies.Strategy~handle}, but - * instead of just returning a `Promise` that resolves to a `Response` it - * it will return an tuple of `[response, done]` promises, where the former - * (`response`) is equivalent to what `handle()` returns, and the latter is a - * Promise that will resolve once any promises that were added to - * `event.waitUntil()` as part of performing the strategy have completed. - * - * You can await the `done` promise to ensure any extra work performed by - * the strategy (usually caching responses) completes successfully. - * - * @param {FetchEvent|Object} options A `FetchEvent` or an object with the - * properties listed below. - * @param {Request|string} options.request A request to run this strategy for. - * @param {ExtendableEvent} options.event The event associated with the - * request. - * @param {URL} [options.url] - * @param {*} [options.params] - * @return {Array} A tuple of [response, done] - * promises that can be used to determine when the response resolves as - * well as when the handler has completed all its work. - */ - handleAll(options) { - // Allow for flexible options to be passed. - if (options instanceof FetchEvent) { - options = { - event: options, - request: options.request - }; - } - const event = options.event; - const request = typeof options.request === 'string' ? new Request(options.request) : options.request; - const params = 'params' in options ? options.params : undefined; - const handler = new StrategyHandler(this, { - event, - request, - params - }); - const responseDone = this._getResponse(handler, request, event); - const handlerDone = this._awaitComplete(responseDone, handler, request, event); - // Return an array of promises, suitable for use with Promise.all(). - return [responseDone, handlerDone]; - } - async _getResponse(handler, request, event) { - await handler.runCallbacks('handlerWillStart', { - event, - request - }); - let response = undefined; - try { - response = await this._handle(request, handler); - // The "official" Strategy subclasses all throw this error automatically, - // but in case a third-party Strategy doesn't, ensure that we have a - // consistent failure when there's no response or an error response. - if (!response || response.type === 'error') { - throw new WorkboxError('no-response', { - url: request.url - }); - } - } catch (error) { - if (error instanceof Error) { - for (const callback of handler.iterateCallbacks('handlerDidError')) { - response = await callback({ - error, - event, - request - }); - if (response) { - break; - } - } - } - if (!response) { - throw error; - } else { - logger.log(`While responding to '${getFriendlyURL(request.url)}', ` + `an ${error instanceof Error ? error.toString() : ''} error occurred. Using a fallback response provided by ` + `a handlerDidError plugin.`); - } - } - for (const callback of handler.iterateCallbacks('handlerWillRespond')) { - response = await callback({ - event, - request, - response - }); - } - return response; - } - async _awaitComplete(responseDone, handler, request, event) { - let response; - let error; - try { - response = await responseDone; - } catch (error) { - // Ignore errors, as response errors should be caught via the `response` - // promise above. The `done` promise will only throw for errors in - // promises passed to `handler.waitUntil()`. - } - try { - await handler.runCallbacks('handlerDidRespond', { - event, - request, - response - }); - await handler.doneWaiting(); - } catch (waitUntilError) { - if (waitUntilError instanceof Error) { - error = waitUntilError; - } - } - await handler.runCallbacks('handlerDidComplete', { - event, - request, - response, - error: error - }); - handler.destroy(); - if (error) { - throw error; - } - } - } - /** - * Classes extending the `Strategy` based class should implement this method, - * and leverage the {@link workbox-strategies.StrategyHandler} - * arg to perform all fetching and cache logic, which will ensure all relevant - * cache, cache options, fetch options and plugins are used (per the current - * strategy instance). - * - * @name _handle - * @instance - * @abstract - * @function - * @param {Request} request - * @param {workbox-strategies.StrategyHandler} handler - * @return {Promise} - * - * @memberof workbox-strategies.Strategy - */ - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - const messages = { - strategyStart: (strategyName, request) => `Using ${strategyName} to respond to '${getFriendlyURL(request.url)}'`, - printFinalResponse: response => { - if (response) { - logger.groupCollapsed(`View the final response here.`); - logger.log(response || '[No response returned]'); - logger.groupEnd(); - } - } - }; - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * An implementation of a - * [network first](https://developer.chrome.com/docs/workbox/caching-strategies-overview/#network-first-falling-back-to-cache) - * request strategy. - * - * By default, this strategy will cache responses with a 200 status code as - * well as [opaque responses](https://developer.chrome.com/docs/workbox/caching-resources-during-runtime/#opaque-responses). - * Opaque responses are are cross-origin requests where the response doesn't - * support [CORS](https://enable-cors.org/). - * - * If the network request fails, and there is no cache match, this will throw - * a `WorkboxError` exception. - * - * @extends workbox-strategies.Strategy - * @memberof workbox-strategies - */ - class NetworkFirst extends Strategy { - /** - * @param {Object} [options] - * @param {string} [options.cacheName] Cache name to store and retrieve - * requests. Defaults to cache names provided by - * {@link workbox-core.cacheNames}. - * @param {Array} [options.plugins] [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} - * to use in conjunction with this caching strategy. - * @param {Object} [options.fetchOptions] Values passed along to the - * [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters) - * of [non-navigation](https://github.com/GoogleChrome/workbox/issues/1796) - * `fetch()` requests made by this strategy. - * @param {Object} [options.matchOptions] [`CacheQueryOptions`](https://w3c.github.io/ServiceWorker/#dictdef-cachequeryoptions) - * @param {number} [options.networkTimeoutSeconds] If set, any network requests - * that fail to respond within the timeout will fallback to the cache. - * - * This option can be used to combat - * "[lie-fi]{@link https://developers.google.com/web/fundamentals/performance/poor-connectivity/#lie-fi}" - * scenarios. - */ - constructor(options = {}) { - super(options); - // If this instance contains no plugins with a 'cacheWillUpdate' callback, - // prepend the `cacheOkAndOpaquePlugin` plugin to the plugins list. - if (!this.plugins.some(p => 'cacheWillUpdate' in p)) { - this.plugins.unshift(cacheOkAndOpaquePlugin); - } - this._networkTimeoutSeconds = options.networkTimeoutSeconds || 0; - { - if (this._networkTimeoutSeconds) { - finalAssertExports.isType(this._networkTimeoutSeconds, 'number', { - moduleName: 'workbox-strategies', - className: this.constructor.name, - funcName: 'constructor', - paramName: 'networkTimeoutSeconds' - }); - } - } - } - /** - * @private - * @param {Request|string} request A request to run this strategy for. - * @param {workbox-strategies.StrategyHandler} handler The event that - * triggered the request. - * @return {Promise} - */ - async _handle(request, handler) { - const logs = []; - { - finalAssertExports.isInstance(request, Request, { - moduleName: 'workbox-strategies', - className: this.constructor.name, - funcName: 'handle', - paramName: 'makeRequest' - }); - } - const promises = []; - let timeoutId; - if (this._networkTimeoutSeconds) { - const { - id, - promise - } = this._getTimeoutPromise({ - request, - logs, - handler - }); - timeoutId = id; - promises.push(promise); - } - const networkPromise = this._getNetworkPromise({ - timeoutId, - request, - logs, - handler - }); - promises.push(networkPromise); - const response = await handler.waitUntil((async () => { - // Promise.race() will resolve as soon as the first promise resolves. - return (await handler.waitUntil(Promise.race(promises))) || ( - // If Promise.race() resolved with null, it might be due to a network - // timeout + a cache miss. If that were to happen, we'd rather wait until - // the networkPromise resolves instead of returning null. - // Note that it's fine to await an already-resolved promise, so we don't - // have to check to see if it's still "in flight". - await networkPromise); - })()); - { - logger.groupCollapsed(messages.strategyStart(this.constructor.name, request)); - for (const log of logs) { - logger.log(log); - } - messages.printFinalResponse(response); - logger.groupEnd(); - } - if (!response) { - throw new WorkboxError('no-response', { - url: request.url - }); - } - return response; - } - /** - * @param {Object} options - * @param {Request} options.request - * @param {Array} options.logs A reference to the logs array - * @param {Event} options.event - * @return {Promise} - * - * @private - */ - _getTimeoutPromise({ - request, - logs, - handler - }) { - let timeoutId; - const timeoutPromise = new Promise(resolve => { - const onNetworkTimeout = async () => { - { - logs.push(`Timing out the network response at ` + `${this._networkTimeoutSeconds} seconds.`); - } - resolve(await handler.cacheMatch(request)); - }; - timeoutId = setTimeout(onNetworkTimeout, this._networkTimeoutSeconds * 1000); - }); - return { - promise: timeoutPromise, - id: timeoutId - }; - } - /** - * @param {Object} options - * @param {number|undefined} options.timeoutId - * @param {Request} options.request - * @param {Array} options.logs A reference to the logs Array. - * @param {Event} options.event - * @return {Promise} - * - * @private - */ - async _getNetworkPromise({ - timeoutId, - request, - logs, - handler - }) { - let error; - let response; - try { - response = await handler.fetchAndCachePut(request); - } catch (fetchError) { - if (fetchError instanceof Error) { - error = fetchError; - } - } - if (timeoutId) { - clearTimeout(timeoutId); - } - { - if (response) { - logs.push(`Got response from network.`); - } else { - logs.push(`Unable to get a response from the network. Will respond ` + `with a cached response.`); - } - } - if (error || !response) { - response = await handler.cacheMatch(request); - { - if (response) { - logs.push(`Found a cached response in the '${this.cacheName}'` + ` cache.`); - } else { - logs.push(`No response found in the '${this.cacheName}' cache.`); - } - } - } - return response; - } - } - - /* - Copyright 2018 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * An implementation of a - * [network-only](https://developer.chrome.com/docs/workbox/caching-strategies-overview/#network-only) - * request strategy. - * - * This class is useful if you want to take advantage of any - * [Workbox plugins](https://developer.chrome.com/docs/workbox/using-plugins/). - * - * If the network request fails, this will throw a `WorkboxError` exception. - * - * @extends workbox-strategies.Strategy - * @memberof workbox-strategies - */ - class NetworkOnly extends Strategy { - /** - * @param {Object} [options] - * @param {Array} [options.plugins] [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} - * to use in conjunction with this caching strategy. - * @param {Object} [options.fetchOptions] Values passed along to the - * [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters) - * of [non-navigation](https://github.com/GoogleChrome/workbox/issues/1796) - * `fetch()` requests made by this strategy. - * @param {number} [options.networkTimeoutSeconds] If set, any network requests - * that fail to respond within the timeout will result in a network error. - */ - constructor(options = {}) { - super(options); - this._networkTimeoutSeconds = options.networkTimeoutSeconds || 0; - } - /** - * @private - * @param {Request|string} request A request to run this strategy for. - * @param {workbox-strategies.StrategyHandler} handler The event that - * triggered the request. - * @return {Promise} - */ - async _handle(request, handler) { - { - finalAssertExports.isInstance(request, Request, { - moduleName: 'workbox-strategies', - className: this.constructor.name, - funcName: '_handle', - paramName: 'request' - }); - } - let error = undefined; - let response; - try { - const promises = [handler.fetch(request)]; - if (this._networkTimeoutSeconds) { - const timeoutPromise = timeout(this._networkTimeoutSeconds * 1000); - promises.push(timeoutPromise); - } - response = await Promise.race(promises); - if (!response) { - throw new Error(`Timed out the network response after ` + `${this._networkTimeoutSeconds} seconds.`); - } - } catch (err) { - if (err instanceof Error) { - error = err; - } - } - { - logger.groupCollapsed(messages.strategyStart(this.constructor.name, request)); - if (response) { - logger.log(`Got response from network.`); - } else { - logger.log(`Unable to get a response from the network.`); - } - messages.printFinalResponse(response); - logger.groupEnd(); - } - if (!response) { - throw new WorkboxError('no-response', { - url: request.url, - error - }); - } - return response; - } - } - - /* - Copyright 2019 Google LLC - - Use of this source code is governed by an MIT-style - license that can be found in the LICENSE file or at - https://opensource.org/licenses/MIT. - */ - /** - * Claim any currently available clients once the service worker - * becomes active. This is normally used in conjunction with `skipWaiting()`. - * - * @memberof workbox-core - */ - function clientsClaim() { - self.addEventListener('activate', () => self.clients.claim()); - } - - exports.NetworkFirst = NetworkFirst; - exports.NetworkOnly = NetworkOnly; - exports.clientsClaim = clientsClaim; - exports.registerRoute = registerRoute; - -})); -//# sourceMappingURL=workbox-a20113bf.js.map diff --git a/public/workbox-a20113bf.js.map b/public/workbox-a20113bf.js.map deleted file mode 100644 index 1d99f0d0..00000000 --- a/public/workbox-a20113bf.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"workbox-a20113bf.js","sources":["node_modules/next-pwa/node_modules/workbox-core/_version.js","node_modules/next-pwa/node_modules/workbox-core/_private/logger.js","node_modules/next-pwa/node_modules/workbox-core/models/messages/messages.js","node_modules/next-pwa/node_modules/workbox-core/models/messages/messageGenerator.js","node_modules/next-pwa/node_modules/workbox-core/_private/WorkboxError.js","node_modules/next-pwa/node_modules/workbox-core/_private/assert.js","node_modules/next-pwa/node_modules/workbox-routing/_version.js","node_modules/next-pwa/node_modules/workbox-routing/utils/constants.js","node_modules/next-pwa/node_modules/workbox-routing/utils/normalizeHandler.js","node_modules/next-pwa/node_modules/workbox-routing/Route.js","node_modules/next-pwa/node_modules/workbox-routing/RegExpRoute.js","node_modules/next-pwa/node_modules/workbox-core/_private/getFriendlyURL.js","node_modules/next-pwa/node_modules/workbox-routing/Router.js","node_modules/next-pwa/node_modules/workbox-routing/utils/getOrCreateDefaultRouter.js","node_modules/next-pwa/node_modules/workbox-routing/registerRoute.js","node_modules/next-pwa/node_modules/workbox-strategies/_version.js","node_modules/next-pwa/node_modules/workbox-strategies/plugins/cacheOkAndOpaquePlugin.js","node_modules/next-pwa/node_modules/workbox-core/_private/cacheNames.js","node_modules/next-pwa/node_modules/workbox-core/_private/cacheMatchIgnoreParams.js","node_modules/next-pwa/node_modules/workbox-core/_private/Deferred.js","node_modules/next-pwa/node_modules/workbox-core/models/quotaErrorCallbacks.js","node_modules/next-pwa/node_modules/workbox-core/_private/executeQuotaErrorCallbacks.js","node_modules/next-pwa/node_modules/workbox-core/_private/timeout.js","node_modules/next-pwa/node_modules/workbox-strategies/StrategyHandler.js","node_modules/next-pwa/node_modules/workbox-strategies/Strategy.js","node_modules/next-pwa/node_modules/workbox-strategies/utils/messages.js","node_modules/next-pwa/node_modules/workbox-strategies/NetworkFirst.js","node_modules/next-pwa/node_modules/workbox-strategies/NetworkOnly.js","node_modules/next-pwa/node_modules/workbox-core/clientsClaim.js"],"sourcesContent":["\"use strict\";\n// @ts-ignore\ntry {\n self['workbox:core:6.6.0'] && _();\n}\ncatch (e) { }\n","/*\n Copyright 2019 Google LLC\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport '../_version.js';\nconst logger = (process.env.NODE_ENV === 'production'\n ? null\n : (() => {\n // Don't overwrite this value if it's already set.\n // See https://github.com/GoogleChrome/workbox/pull/2284#issuecomment-560470923\n if (!('__WB_DISABLE_DEV_LOGS' in globalThis)) {\n self.__WB_DISABLE_DEV_LOGS = false;\n }\n let inGroup = false;\n const methodToColorMap = {\n debug: `#7f8c8d`,\n log: `#2ecc71`,\n warn: `#f39c12`,\n error: `#c0392b`,\n groupCollapsed: `#3498db`,\n groupEnd: null, // No colored prefix on groupEnd\n };\n const print = function (method, args) {\n if (self.__WB_DISABLE_DEV_LOGS) {\n return;\n }\n if (method === 'groupCollapsed') {\n // Safari doesn't print all console.groupCollapsed() arguments:\n // https://bugs.webkit.org/show_bug.cgi?id=182754\n if (/^((?!chrome|android).)*safari/i.test(navigator.userAgent)) {\n console[method](...args);\n return;\n }\n }\n const styles = [\n `background: ${methodToColorMap[method]}`,\n `border-radius: 0.5em`,\n `color: white`,\n `font-weight: bold`,\n `padding: 2px 0.5em`,\n ];\n // When in a group, the workbox prefix is not displayed.\n const logPrefix = inGroup ? [] : ['%cworkbox', styles.join(';')];\n console[method](...logPrefix, ...args);\n if (method === 'groupCollapsed') {\n inGroup = true;\n }\n if (method === 'groupEnd') {\n inGroup = false;\n }\n };\n // eslint-disable-next-line @typescript-eslint/ban-types\n const api = {};\n const loggerMethods = Object.keys(methodToColorMap);\n for (const key of loggerMethods) {\n const method = key;\n api[method] = (...args) => {\n print(method, args);\n };\n }\n return api;\n })());\nexport { logger };\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport '../../_version.js';\nexport const messages = {\n 'invalid-value': ({ paramName, validValueDescription, value }) => {\n if (!paramName || !validValueDescription) {\n throw new Error(`Unexpected input to 'invalid-value' error.`);\n }\n return (`The '${paramName}' parameter was given a value with an ` +\n `unexpected value. ${validValueDescription} Received a value of ` +\n `${JSON.stringify(value)}.`);\n },\n 'not-an-array': ({ moduleName, className, funcName, paramName }) => {\n if (!moduleName || !className || !funcName || !paramName) {\n throw new Error(`Unexpected input to 'not-an-array' error.`);\n }\n return (`The parameter '${paramName}' passed into ` +\n `'${moduleName}.${className}.${funcName}()' must be an array.`);\n },\n 'incorrect-type': ({ expectedType, paramName, moduleName, className, funcName, }) => {\n if (!expectedType || !paramName || !moduleName || !funcName) {\n throw new Error(`Unexpected input to 'incorrect-type' error.`);\n }\n const classNameStr = className ? `${className}.` : '';\n return (`The parameter '${paramName}' passed into ` +\n `'${moduleName}.${classNameStr}` +\n `${funcName}()' must be of type ${expectedType}.`);\n },\n 'incorrect-class': ({ expectedClassName, paramName, moduleName, className, funcName, isReturnValueProblem, }) => {\n if (!expectedClassName || !moduleName || !funcName) {\n throw new Error(`Unexpected input to 'incorrect-class' error.`);\n }\n const classNameStr = className ? `${className}.` : '';\n if (isReturnValueProblem) {\n return (`The return value from ` +\n `'${moduleName}.${classNameStr}${funcName}()' ` +\n `must be an instance of class ${expectedClassName}.`);\n }\n return (`The parameter '${paramName}' passed into ` +\n `'${moduleName}.${classNameStr}${funcName}()' ` +\n `must be an instance of class ${expectedClassName}.`);\n },\n 'missing-a-method': ({ expectedMethod, paramName, moduleName, className, funcName, }) => {\n if (!expectedMethod ||\n !paramName ||\n !moduleName ||\n !className ||\n !funcName) {\n throw new Error(`Unexpected input to 'missing-a-method' error.`);\n }\n return (`${moduleName}.${className}.${funcName}() expected the ` +\n `'${paramName}' parameter to expose a '${expectedMethod}' method.`);\n },\n 'add-to-cache-list-unexpected-type': ({ entry }) => {\n return (`An unexpected entry was passed to ` +\n `'workbox-precaching.PrecacheController.addToCacheList()' The entry ` +\n `'${JSON.stringify(entry)}' isn't supported. You must supply an array of ` +\n `strings with one or more characters, objects with a url property or ` +\n `Request objects.`);\n },\n 'add-to-cache-list-conflicting-entries': ({ firstEntry, secondEntry }) => {\n if (!firstEntry || !secondEntry) {\n throw new Error(`Unexpected input to ` + `'add-to-cache-list-duplicate-entries' error.`);\n }\n return (`Two of the entries passed to ` +\n `'workbox-precaching.PrecacheController.addToCacheList()' had the URL ` +\n `${firstEntry} but different revision details. Workbox is ` +\n `unable to cache and version the asset correctly. Please remove one ` +\n `of the entries.`);\n },\n 'plugin-error-request-will-fetch': ({ thrownErrorMessage }) => {\n if (!thrownErrorMessage) {\n throw new Error(`Unexpected input to ` + `'plugin-error-request-will-fetch', error.`);\n }\n return (`An error was thrown by a plugins 'requestWillFetch()' method. ` +\n `The thrown error message was: '${thrownErrorMessage}'.`);\n },\n 'invalid-cache-name': ({ cacheNameId, value }) => {\n if (!cacheNameId) {\n throw new Error(`Expected a 'cacheNameId' for error 'invalid-cache-name'`);\n }\n return (`You must provide a name containing at least one character for ` +\n `setCacheDetails({${cacheNameId}: '...'}). Received a value of ` +\n `'${JSON.stringify(value)}'`);\n },\n 'unregister-route-but-not-found-with-method': ({ method }) => {\n if (!method) {\n throw new Error(`Unexpected input to ` +\n `'unregister-route-but-not-found-with-method' error.`);\n }\n return (`The route you're trying to unregister was not previously ` +\n `registered for the method type '${method}'.`);\n },\n 'unregister-route-route-not-registered': () => {\n return (`The route you're trying to unregister was not previously ` +\n `registered.`);\n },\n 'queue-replay-failed': ({ name }) => {\n return `Replaying the background sync queue '${name}' failed.`;\n },\n 'duplicate-queue-name': ({ name }) => {\n return (`The Queue name '${name}' is already being used. ` +\n `All instances of backgroundSync.Queue must be given unique names.`);\n },\n 'expired-test-without-max-age': ({ methodName, paramName }) => {\n return (`The '${methodName}()' method can only be used when the ` +\n `'${paramName}' is used in the constructor.`);\n },\n 'unsupported-route-type': ({ moduleName, className, funcName, paramName }) => {\n return (`The supplied '${paramName}' parameter was an unsupported type. ` +\n `Please check the docs for ${moduleName}.${className}.${funcName} for ` +\n `valid input types.`);\n },\n 'not-array-of-class': ({ value, expectedClass, moduleName, className, funcName, paramName, }) => {\n return (`The supplied '${paramName}' parameter must be an array of ` +\n `'${expectedClass}' objects. Received '${JSON.stringify(value)},'. ` +\n `Please check the call to ${moduleName}.${className}.${funcName}() ` +\n `to fix the issue.`);\n },\n 'max-entries-or-age-required': ({ moduleName, className, funcName }) => {\n return (`You must define either config.maxEntries or config.maxAgeSeconds` +\n `in ${moduleName}.${className}.${funcName}`);\n },\n 'statuses-or-headers-required': ({ moduleName, className, funcName }) => {\n return (`You must define either config.statuses or config.headers` +\n `in ${moduleName}.${className}.${funcName}`);\n },\n 'invalid-string': ({ moduleName, funcName, paramName }) => {\n if (!paramName || !moduleName || !funcName) {\n throw new Error(`Unexpected input to 'invalid-string' error.`);\n }\n return (`When using strings, the '${paramName}' parameter must start with ` +\n `'http' (for cross-origin matches) or '/' (for same-origin matches). ` +\n `Please see the docs for ${moduleName}.${funcName}() for ` +\n `more info.`);\n },\n 'channel-name-required': () => {\n return (`You must provide a channelName to construct a ` +\n `BroadcastCacheUpdate instance.`);\n },\n 'invalid-responses-are-same-args': () => {\n return (`The arguments passed into responsesAreSame() appear to be ` +\n `invalid. Please ensure valid Responses are used.`);\n },\n 'expire-custom-caches-only': () => {\n return (`You must provide a 'cacheName' property when using the ` +\n `expiration plugin with a runtime caching strategy.`);\n },\n 'unit-must-be-bytes': ({ normalizedRangeHeader }) => {\n if (!normalizedRangeHeader) {\n throw new Error(`Unexpected input to 'unit-must-be-bytes' error.`);\n }\n return (`The 'unit' portion of the Range header must be set to 'bytes'. ` +\n `The Range header provided was \"${normalizedRangeHeader}\"`);\n },\n 'single-range-only': ({ normalizedRangeHeader }) => {\n if (!normalizedRangeHeader) {\n throw new Error(`Unexpected input to 'single-range-only' error.`);\n }\n return (`Multiple ranges are not supported. Please use a single start ` +\n `value, and optional end value. The Range header provided was ` +\n `\"${normalizedRangeHeader}\"`);\n },\n 'invalid-range-values': ({ normalizedRangeHeader }) => {\n if (!normalizedRangeHeader) {\n throw new Error(`Unexpected input to 'invalid-range-values' error.`);\n }\n return (`The Range header is missing both start and end values. At least ` +\n `one of those values is needed. The Range header provided was ` +\n `\"${normalizedRangeHeader}\"`);\n },\n 'no-range-header': () => {\n return `No Range header was found in the Request provided.`;\n },\n 'range-not-satisfiable': ({ size, start, end }) => {\n return (`The start (${start}) and end (${end}) values in the Range are ` +\n `not satisfiable by the cached response, which is ${size} bytes.`);\n },\n 'attempt-to-cache-non-get-request': ({ url, method }) => {\n return (`Unable to cache '${url}' because it is a '${method}' request and ` +\n `only 'GET' requests can be cached.`);\n },\n 'cache-put-with-no-response': ({ url }) => {\n return (`There was an attempt to cache '${url}' but the response was not ` +\n `defined.`);\n },\n 'no-response': ({ url, error }) => {\n let message = `The strategy could not generate a response for '${url}'.`;\n if (error) {\n message += ` The underlying error is ${error}.`;\n }\n return message;\n },\n 'bad-precaching-response': ({ url, status }) => {\n return (`The precaching request for '${url}' failed` +\n (status ? ` with an HTTP status of ${status}.` : `.`));\n },\n 'non-precached-url': ({ url }) => {\n return (`createHandlerBoundToURL('${url}') was called, but that URL is ` +\n `not precached. Please pass in a URL that is precached instead.`);\n },\n 'add-to-cache-list-conflicting-integrities': ({ url }) => {\n return (`Two of the entries passed to ` +\n `'workbox-precaching.PrecacheController.addToCacheList()' had the URL ` +\n `${url} with different integrity values. Please remove one of them.`);\n },\n 'missing-precache-entry': ({ cacheName, url }) => {\n return `Unable to find a precached response in ${cacheName} for ${url}.`;\n },\n 'cross-origin-copy-response': ({ origin }) => {\n return (`workbox-core.copyResponse() can only be used with same-origin ` +\n `responses. It was passed a response with origin ${origin}.`);\n },\n 'opaque-streams-source': ({ type }) => {\n const message = `One of the workbox-streams sources resulted in an ` +\n `'${type}' response.`;\n if (type === 'opaqueredirect') {\n return (`${message} Please do not use a navigation request that results ` +\n `in a redirect as a source.`);\n }\n return `${message} Please ensure your sources are CORS-enabled.`;\n },\n};\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { messages } from './messages.js';\nimport '../../_version.js';\nconst fallback = (code, ...args) => {\n let msg = code;\n if (args.length > 0) {\n msg += ` :: ${JSON.stringify(args)}`;\n }\n return msg;\n};\nconst generatorFunction = (code, details = {}) => {\n const message = messages[code];\n if (!message) {\n throw new Error(`Unable to find message for code '${code}'.`);\n }\n return message(details);\n};\nexport const messageGenerator = process.env.NODE_ENV === 'production' ? fallback : generatorFunction;\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { messageGenerator } from '../models/messages/messageGenerator.js';\nimport '../_version.js';\n/**\n * Workbox errors should be thrown with this class.\n * This allows use to ensure the type easily in tests,\n * helps developers identify errors from workbox\n * easily and allows use to optimise error\n * messages correctly.\n *\n * @private\n */\nclass WorkboxError extends Error {\n /**\n *\n * @param {string} errorCode The error code that\n * identifies this particular error.\n * @param {Object=} details Any relevant arguments\n * that will help developers identify issues should\n * be added as a key on the context object.\n */\n constructor(errorCode, details) {\n const message = messageGenerator(errorCode, details);\n super(message);\n this.name = errorCode;\n this.details = details;\n }\n}\nexport { WorkboxError };\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { WorkboxError } from '../_private/WorkboxError.js';\nimport '../_version.js';\n/*\n * This method throws if the supplied value is not an array.\n * The destructed values are required to produce a meaningful error for users.\n * The destructed and restructured object is so it's clear what is\n * needed.\n */\nconst isArray = (value, details) => {\n if (!Array.isArray(value)) {\n throw new WorkboxError('not-an-array', details);\n }\n};\nconst hasMethod = (object, expectedMethod, details) => {\n const type = typeof object[expectedMethod];\n if (type !== 'function') {\n details['expectedMethod'] = expectedMethod;\n throw new WorkboxError('missing-a-method', details);\n }\n};\nconst isType = (object, expectedType, details) => {\n if (typeof object !== expectedType) {\n details['expectedType'] = expectedType;\n throw new WorkboxError('incorrect-type', details);\n }\n};\nconst isInstance = (object, \n// Need the general type to do the check later.\n// eslint-disable-next-line @typescript-eslint/ban-types\nexpectedClass, details) => {\n if (!(object instanceof expectedClass)) {\n details['expectedClassName'] = expectedClass.name;\n throw new WorkboxError('incorrect-class', details);\n }\n};\nconst isOneOf = (value, validValues, details) => {\n if (!validValues.includes(value)) {\n details['validValueDescription'] = `Valid values are ${JSON.stringify(validValues)}.`;\n throw new WorkboxError('invalid-value', details);\n }\n};\nconst isArrayOfClass = (value, \n// Need general type to do check later.\nexpectedClass, // eslint-disable-line\ndetails) => {\n const error = new WorkboxError('not-array-of-class', details);\n if (!Array.isArray(value)) {\n throw error;\n }\n for (const item of value) {\n if (!(item instanceof expectedClass)) {\n throw error;\n }\n }\n};\nconst finalAssertExports = process.env.NODE_ENV === 'production'\n ? null\n : {\n hasMethod,\n isArray,\n isInstance,\n isOneOf,\n isType,\n isArrayOfClass,\n };\nexport { finalAssertExports as assert };\n","\"use strict\";\n// @ts-ignore\ntry {\n self['workbox:routing:6.6.0'] && _();\n}\ncatch (e) { }\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport '../_version.js';\n/**\n * The default HTTP method, 'GET', used when there's no specific method\n * configured for a route.\n *\n * @type {string}\n *\n * @private\n */\nexport const defaultMethod = 'GET';\n/**\n * The list of valid HTTP methods associated with requests that could be routed.\n *\n * @type {Array}\n *\n * @private\n */\nexport const validMethods = [\n 'DELETE',\n 'GET',\n 'HEAD',\n 'PATCH',\n 'POST',\n 'PUT',\n];\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { assert } from 'workbox-core/_private/assert.js';\nimport '../_version.js';\n/**\n * @param {function()|Object} handler Either a function, or an object with a\n * 'handle' method.\n * @return {Object} An object with a handle method.\n *\n * @private\n */\nexport const normalizeHandler = (handler) => {\n if (handler && typeof handler === 'object') {\n if (process.env.NODE_ENV !== 'production') {\n assert.hasMethod(handler, 'handle', {\n moduleName: 'workbox-routing',\n className: 'Route',\n funcName: 'constructor',\n paramName: 'handler',\n });\n }\n return handler;\n }\n else {\n if (process.env.NODE_ENV !== 'production') {\n assert.isType(handler, 'function', {\n moduleName: 'workbox-routing',\n className: 'Route',\n funcName: 'constructor',\n paramName: 'handler',\n });\n }\n return { handle: handler };\n }\n};\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { assert } from 'workbox-core/_private/assert.js';\nimport { defaultMethod, validMethods } from './utils/constants.js';\nimport { normalizeHandler } from './utils/normalizeHandler.js';\nimport './_version.js';\n/**\n * A `Route` consists of a pair of callback functions, \"match\" and \"handler\".\n * The \"match\" callback determine if a route should be used to \"handle\" a\n * request by returning a non-falsy value if it can. The \"handler\" callback\n * is called when there is a match and should return a Promise that resolves\n * to a `Response`.\n *\n * @memberof workbox-routing\n */\nclass Route {\n /**\n * Constructor for Route class.\n *\n * @param {workbox-routing~matchCallback} match\n * A callback function that determines whether the route matches a given\n * `fetch` event by returning a non-falsy value.\n * @param {workbox-routing~handlerCallback} handler A callback\n * function that returns a Promise resolving to a Response.\n * @param {string} [method='GET'] The HTTP method to match the Route\n * against.\n */\n constructor(match, handler, method = defaultMethod) {\n if (process.env.NODE_ENV !== 'production') {\n assert.isType(match, 'function', {\n moduleName: 'workbox-routing',\n className: 'Route',\n funcName: 'constructor',\n paramName: 'match',\n });\n if (method) {\n assert.isOneOf(method, validMethods, { paramName: 'method' });\n }\n }\n // These values are referenced directly by Router so cannot be\n // altered by minificaton.\n this.handler = normalizeHandler(handler);\n this.match = match;\n this.method = method;\n }\n /**\n *\n * @param {workbox-routing-handlerCallback} handler A callback\n * function that returns a Promise resolving to a Response\n */\n setCatchHandler(handler) {\n this.catchHandler = normalizeHandler(handler);\n }\n}\nexport { Route };\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { assert } from 'workbox-core/_private/assert.js';\nimport { logger } from 'workbox-core/_private/logger.js';\nimport { Route } from './Route.js';\nimport './_version.js';\n/**\n * RegExpRoute makes it easy to create a regular expression based\n * {@link workbox-routing.Route}.\n *\n * For same-origin requests the RegExp only needs to match part of the URL. For\n * requests against third-party servers, you must define a RegExp that matches\n * the start of the URL.\n *\n * @memberof workbox-routing\n * @extends workbox-routing.Route\n */\nclass RegExpRoute extends Route {\n /**\n * If the regular expression contains\n * [capture groups]{@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp#grouping-back-references},\n * the captured values will be passed to the\n * {@link workbox-routing~handlerCallback} `params`\n * argument.\n *\n * @param {RegExp} regExp The regular expression to match against URLs.\n * @param {workbox-routing~handlerCallback} handler A callback\n * function that returns a Promise resulting in a Response.\n * @param {string} [method='GET'] The HTTP method to match the Route\n * against.\n */\n constructor(regExp, handler, method) {\n if (process.env.NODE_ENV !== 'production') {\n assert.isInstance(regExp, RegExp, {\n moduleName: 'workbox-routing',\n className: 'RegExpRoute',\n funcName: 'constructor',\n paramName: 'pattern',\n });\n }\n const match = ({ url }) => {\n const result = regExp.exec(url.href);\n // Return immediately if there's no match.\n if (!result) {\n return;\n }\n // Require that the match start at the first character in the URL string\n // if it's a cross-origin request.\n // See https://github.com/GoogleChrome/workbox/issues/281 for the context\n // behind this behavior.\n if (url.origin !== location.origin && result.index !== 0) {\n if (process.env.NODE_ENV !== 'production') {\n logger.debug(`The regular expression '${regExp.toString()}' only partially matched ` +\n `against the cross-origin URL '${url.toString()}'. RegExpRoute's will only ` +\n `handle cross-origin requests if they match the entire URL.`);\n }\n return;\n }\n // If the route matches, but there aren't any capture groups defined, then\n // this will return [], which is truthy and therefore sufficient to\n // indicate a match.\n // If there are capture groups, then it will return their values.\n return result.slice(1);\n };\n super(match, handler, method);\n }\n}\nexport { RegExpRoute };\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport '../_version.js';\nconst getFriendlyURL = (url) => {\n const urlObj = new URL(String(url), location.href);\n // See https://github.com/GoogleChrome/workbox/issues/2323\n // We want to include everything, except for the origin if it's same-origin.\n return urlObj.href.replace(new RegExp(`^${location.origin}`), '');\n};\nexport { getFriendlyURL };\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { assert } from 'workbox-core/_private/assert.js';\nimport { getFriendlyURL } from 'workbox-core/_private/getFriendlyURL.js';\nimport { defaultMethod } from './utils/constants.js';\nimport { logger } from 'workbox-core/_private/logger.js';\nimport { normalizeHandler } from './utils/normalizeHandler.js';\nimport { WorkboxError } from 'workbox-core/_private/WorkboxError.js';\nimport './_version.js';\n/**\n * The Router can be used to process a `FetchEvent` using one or more\n * {@link workbox-routing.Route}, responding with a `Response` if\n * a matching route exists.\n *\n * If no route matches a given a request, the Router will use a \"default\"\n * handler if one is defined.\n *\n * Should the matching Route throw an error, the Router will use a \"catch\"\n * handler if one is defined to gracefully deal with issues and respond with a\n * Request.\n *\n * If a request matches multiple routes, the **earliest** registered route will\n * be used to respond to the request.\n *\n * @memberof workbox-routing\n */\nclass Router {\n /**\n * Initializes a new Router.\n */\n constructor() {\n this._routes = new Map();\n this._defaultHandlerMap = new Map();\n }\n /**\n * @return {Map>} routes A `Map` of HTTP\n * method name ('GET', etc.) to an array of all the corresponding `Route`\n * instances that are registered.\n */\n get routes() {\n return this._routes;\n }\n /**\n * Adds a fetch event listener to respond to events when a route matches\n * the event's request.\n */\n addFetchListener() {\n // See https://github.com/Microsoft/TypeScript/issues/28357#issuecomment-436484705\n self.addEventListener('fetch', ((event) => {\n const { request } = event;\n const responsePromise = this.handleRequest({ request, event });\n if (responsePromise) {\n event.respondWith(responsePromise);\n }\n }));\n }\n /**\n * Adds a message event listener for URLs to cache from the window.\n * This is useful to cache resources loaded on the page prior to when the\n * service worker started controlling it.\n *\n * The format of the message data sent from the window should be as follows.\n * Where the `urlsToCache` array may consist of URL strings or an array of\n * URL string + `requestInit` object (the same as you'd pass to `fetch()`).\n *\n * ```\n * {\n * type: 'CACHE_URLS',\n * payload: {\n * urlsToCache: [\n * './script1.js',\n * './script2.js',\n * ['./script3.js', {mode: 'no-cors'}],\n * ],\n * },\n * }\n * ```\n */\n addCacheListener() {\n // See https://github.com/Microsoft/TypeScript/issues/28357#issuecomment-436484705\n self.addEventListener('message', ((event) => {\n // event.data is type 'any'\n // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n if (event.data && event.data.type === 'CACHE_URLS') {\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment\n const { payload } = event.data;\n if (process.env.NODE_ENV !== 'production') {\n logger.debug(`Caching URLs from the window`, payload.urlsToCache);\n }\n const requestPromises = Promise.all(payload.urlsToCache.map((entry) => {\n if (typeof entry === 'string') {\n entry = [entry];\n }\n const request = new Request(...entry);\n return this.handleRequest({ request, event });\n // TODO(philipwalton): TypeScript errors without this typecast for\n // some reason (probably a bug). The real type here should work but\n // doesn't: `Array | undefined>`.\n })); // TypeScript\n event.waitUntil(requestPromises);\n // If a MessageChannel was used, reply to the message on success.\n if (event.ports && event.ports[0]) {\n void requestPromises.then(() => event.ports[0].postMessage(true));\n }\n }\n }));\n }\n /**\n * Apply the routing rules to a FetchEvent object to get a Response from an\n * appropriate Route's handler.\n *\n * @param {Object} options\n * @param {Request} options.request The request to handle.\n * @param {ExtendableEvent} options.event The event that triggered the\n * request.\n * @return {Promise|undefined} A promise is returned if a\n * registered route can handle the request. If there is no matching\n * route and there's no `defaultHandler`, `undefined` is returned.\n */\n handleRequest({ request, event, }) {\n if (process.env.NODE_ENV !== 'production') {\n assert.isInstance(request, Request, {\n moduleName: 'workbox-routing',\n className: 'Router',\n funcName: 'handleRequest',\n paramName: 'options.request',\n });\n }\n const url = new URL(request.url, location.href);\n if (!url.protocol.startsWith('http')) {\n if (process.env.NODE_ENV !== 'production') {\n logger.debug(`Workbox Router only supports URLs that start with 'http'.`);\n }\n return;\n }\n const sameOrigin = url.origin === location.origin;\n const { params, route } = this.findMatchingRoute({\n event,\n request,\n sameOrigin,\n url,\n });\n let handler = route && route.handler;\n const debugMessages = [];\n if (process.env.NODE_ENV !== 'production') {\n if (handler) {\n debugMessages.push([`Found a route to handle this request:`, route]);\n if (params) {\n debugMessages.push([\n `Passing the following params to the route's handler:`,\n params,\n ]);\n }\n }\n }\n // If we don't have a handler because there was no matching route, then\n // fall back to defaultHandler if that's defined.\n const method = request.method;\n if (!handler && this._defaultHandlerMap.has(method)) {\n if (process.env.NODE_ENV !== 'production') {\n debugMessages.push(`Failed to find a matching route. Falling ` +\n `back to the default handler for ${method}.`);\n }\n handler = this._defaultHandlerMap.get(method);\n }\n if (!handler) {\n if (process.env.NODE_ENV !== 'production') {\n // No handler so Workbox will do nothing. If logs is set of debug\n // i.e. verbose, we should print out this information.\n logger.debug(`No route found for: ${getFriendlyURL(url)}`);\n }\n return;\n }\n if (process.env.NODE_ENV !== 'production') {\n // We have a handler, meaning Workbox is going to handle the route.\n // print the routing details to the console.\n logger.groupCollapsed(`Router is responding to: ${getFriendlyURL(url)}`);\n debugMessages.forEach((msg) => {\n if (Array.isArray(msg)) {\n logger.log(...msg);\n }\n else {\n logger.log(msg);\n }\n });\n logger.groupEnd();\n }\n // Wrap in try and catch in case the handle method throws a synchronous\n // error. It should still callback to the catch handler.\n let responsePromise;\n try {\n responsePromise = handler.handle({ url, request, event, params });\n }\n catch (err) {\n responsePromise = Promise.reject(err);\n }\n // Get route's catch handler, if it exists\n const catchHandler = route && route.catchHandler;\n if (responsePromise instanceof Promise &&\n (this._catchHandler || catchHandler)) {\n responsePromise = responsePromise.catch(async (err) => {\n // If there's a route catch handler, process that first\n if (catchHandler) {\n if (process.env.NODE_ENV !== 'production') {\n // Still include URL here as it will be async from the console group\n // and may not make sense without the URL\n logger.groupCollapsed(`Error thrown when responding to: ` +\n ` ${getFriendlyURL(url)}. Falling back to route's Catch Handler.`);\n logger.error(`Error thrown by:`, route);\n logger.error(err);\n logger.groupEnd();\n }\n try {\n return await catchHandler.handle({ url, request, event, params });\n }\n catch (catchErr) {\n if (catchErr instanceof Error) {\n err = catchErr;\n }\n }\n }\n if (this._catchHandler) {\n if (process.env.NODE_ENV !== 'production') {\n // Still include URL here as it will be async from the console group\n // and may not make sense without the URL\n logger.groupCollapsed(`Error thrown when responding to: ` +\n ` ${getFriendlyURL(url)}. Falling back to global Catch Handler.`);\n logger.error(`Error thrown by:`, route);\n logger.error(err);\n logger.groupEnd();\n }\n return this._catchHandler.handle({ url, request, event });\n }\n throw err;\n });\n }\n return responsePromise;\n }\n /**\n * Checks a request and URL (and optionally an event) against the list of\n * registered routes, and if there's a match, returns the corresponding\n * route along with any params generated by the match.\n *\n * @param {Object} options\n * @param {URL} options.url\n * @param {boolean} options.sameOrigin The result of comparing `url.origin`\n * against the current origin.\n * @param {Request} options.request The request to match.\n * @param {Event} options.event The corresponding event.\n * @return {Object} An object with `route` and `params` properties.\n * They are populated if a matching route was found or `undefined`\n * otherwise.\n */\n findMatchingRoute({ url, sameOrigin, request, event, }) {\n const routes = this._routes.get(request.method) || [];\n for (const route of routes) {\n let params;\n // route.match returns type any, not possible to change right now.\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment\n const matchResult = route.match({ url, sameOrigin, request, event });\n if (matchResult) {\n if (process.env.NODE_ENV !== 'production') {\n // Warn developers that using an async matchCallback is almost always\n // not the right thing to do.\n if (matchResult instanceof Promise) {\n logger.warn(`While routing ${getFriendlyURL(url)}, an async ` +\n `matchCallback function was used. Please convert the ` +\n `following route to use a synchronous matchCallback function:`, route);\n }\n }\n // See https://github.com/GoogleChrome/workbox/issues/2079\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment\n params = matchResult;\n if (Array.isArray(params) && params.length === 0) {\n // Instead of passing an empty array in as params, use undefined.\n params = undefined;\n }\n else if (matchResult.constructor === Object && // eslint-disable-line\n Object.keys(matchResult).length === 0) {\n // Instead of passing an empty object in as params, use undefined.\n params = undefined;\n }\n else if (typeof matchResult === 'boolean') {\n // For the boolean value true (rather than just something truth-y),\n // don't set params.\n // See https://github.com/GoogleChrome/workbox/pull/2134#issuecomment-513924353\n params = undefined;\n }\n // Return early if have a match.\n return { route, params };\n }\n }\n // If no match was found above, return and empty object.\n return {};\n }\n /**\n * Define a default `handler` that's called when no routes explicitly\n * match the incoming request.\n *\n * Each HTTP method ('GET', 'POST', etc.) gets its own default handler.\n *\n * Without a default handler, unmatched requests will go against the\n * network as if there were no service worker present.\n *\n * @param {workbox-routing~handlerCallback} handler A callback\n * function that returns a Promise resulting in a Response.\n * @param {string} [method='GET'] The HTTP method to associate with this\n * default handler. Each method has its own default.\n */\n setDefaultHandler(handler, method = defaultMethod) {\n this._defaultHandlerMap.set(method, normalizeHandler(handler));\n }\n /**\n * If a Route throws an error while handling a request, this `handler`\n * will be called and given a chance to provide a response.\n *\n * @param {workbox-routing~handlerCallback} handler A callback\n * function that returns a Promise resulting in a Response.\n */\n setCatchHandler(handler) {\n this._catchHandler = normalizeHandler(handler);\n }\n /**\n * Registers a route with the router.\n *\n * @param {workbox-routing.Route} route The route to register.\n */\n registerRoute(route) {\n if (process.env.NODE_ENV !== 'production') {\n assert.isType(route, 'object', {\n moduleName: 'workbox-routing',\n className: 'Router',\n funcName: 'registerRoute',\n paramName: 'route',\n });\n assert.hasMethod(route, 'match', {\n moduleName: 'workbox-routing',\n className: 'Router',\n funcName: 'registerRoute',\n paramName: 'route',\n });\n assert.isType(route.handler, 'object', {\n moduleName: 'workbox-routing',\n className: 'Router',\n funcName: 'registerRoute',\n paramName: 'route',\n });\n assert.hasMethod(route.handler, 'handle', {\n moduleName: 'workbox-routing',\n className: 'Router',\n funcName: 'registerRoute',\n paramName: 'route.handler',\n });\n assert.isType(route.method, 'string', {\n moduleName: 'workbox-routing',\n className: 'Router',\n funcName: 'registerRoute',\n paramName: 'route.method',\n });\n }\n if (!this._routes.has(route.method)) {\n this._routes.set(route.method, []);\n }\n // Give precedence to all of the earlier routes by adding this additional\n // route to the end of the array.\n this._routes.get(route.method).push(route);\n }\n /**\n * Unregisters a route with the router.\n *\n * @param {workbox-routing.Route} route The route to unregister.\n */\n unregisterRoute(route) {\n if (!this._routes.has(route.method)) {\n throw new WorkboxError('unregister-route-but-not-found-with-method', {\n method: route.method,\n });\n }\n const routeIndex = this._routes.get(route.method).indexOf(route);\n if (routeIndex > -1) {\n this._routes.get(route.method).splice(routeIndex, 1);\n }\n else {\n throw new WorkboxError('unregister-route-route-not-registered');\n }\n }\n}\nexport { Router };\n","/*\n Copyright 2019 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { Router } from '../Router.js';\nimport '../_version.js';\nlet defaultRouter;\n/**\n * Creates a new, singleton Router instance if one does not exist. If one\n * does already exist, that instance is returned.\n *\n * @private\n * @return {Router}\n */\nexport const getOrCreateDefaultRouter = () => {\n if (!defaultRouter) {\n defaultRouter = new Router();\n // The helpers that use the default Router assume these listeners exist.\n defaultRouter.addFetchListener();\n defaultRouter.addCacheListener();\n }\n return defaultRouter;\n};\n","/*\n Copyright 2019 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { logger } from 'workbox-core/_private/logger.js';\nimport { WorkboxError } from 'workbox-core/_private/WorkboxError.js';\nimport { Route } from './Route.js';\nimport { RegExpRoute } from './RegExpRoute.js';\nimport { getOrCreateDefaultRouter } from './utils/getOrCreateDefaultRouter.js';\nimport './_version.js';\n/**\n * Easily register a RegExp, string, or function with a caching\n * strategy to a singleton Router instance.\n *\n * This method will generate a Route for you if needed and\n * call {@link workbox-routing.Router#registerRoute}.\n *\n * @param {RegExp|string|workbox-routing.Route~matchCallback|workbox-routing.Route} capture\n * If the capture param is a `Route`, all other arguments will be ignored.\n * @param {workbox-routing~handlerCallback} [handler] A callback\n * function that returns a Promise resulting in a Response. This parameter\n * is required if `capture` is not a `Route` object.\n * @param {string} [method='GET'] The HTTP method to match the Route\n * against.\n * @return {workbox-routing.Route} The generated `Route`.\n *\n * @memberof workbox-routing\n */\nfunction registerRoute(capture, handler, method) {\n let route;\n if (typeof capture === 'string') {\n const captureUrl = new URL(capture, location.href);\n if (process.env.NODE_ENV !== 'production') {\n if (!(capture.startsWith('/') || capture.startsWith('http'))) {\n throw new WorkboxError('invalid-string', {\n moduleName: 'workbox-routing',\n funcName: 'registerRoute',\n paramName: 'capture',\n });\n }\n // We want to check if Express-style wildcards are in the pathname only.\n // TODO: Remove this log message in v4.\n const valueToCheck = capture.startsWith('http')\n ? captureUrl.pathname\n : capture;\n // See https://github.com/pillarjs/path-to-regexp#parameters\n const wildcards = '[*:?+]';\n if (new RegExp(`${wildcards}`).exec(valueToCheck)) {\n logger.debug(`The '$capture' parameter contains an Express-style wildcard ` +\n `character (${wildcards}). Strings are now always interpreted as ` +\n `exact matches; use a RegExp for partial or wildcard matches.`);\n }\n }\n const matchCallback = ({ url }) => {\n if (process.env.NODE_ENV !== 'production') {\n if (url.pathname === captureUrl.pathname &&\n url.origin !== captureUrl.origin) {\n logger.debug(`${capture} only partially matches the cross-origin URL ` +\n `${url.toString()}. This route will only handle cross-origin requests ` +\n `if they match the entire URL.`);\n }\n }\n return url.href === captureUrl.href;\n };\n // If `capture` is a string then `handler` and `method` must be present.\n route = new Route(matchCallback, handler, method);\n }\n else if (capture instanceof RegExp) {\n // If `capture` is a `RegExp` then `handler` and `method` must be present.\n route = new RegExpRoute(capture, handler, method);\n }\n else if (typeof capture === 'function') {\n // If `capture` is a function then `handler` and `method` must be present.\n route = new Route(capture, handler, method);\n }\n else if (capture instanceof Route) {\n route = capture;\n }\n else {\n throw new WorkboxError('unsupported-route-type', {\n moduleName: 'workbox-routing',\n funcName: 'registerRoute',\n paramName: 'capture',\n });\n }\n const defaultRouter = getOrCreateDefaultRouter();\n defaultRouter.registerRoute(route);\n return route;\n}\nexport { registerRoute };\n","\"use strict\";\n// @ts-ignore\ntry {\n self['workbox:strategies:6.6.0'] && _();\n}\ncatch (e) { }\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport '../_version.js';\nexport const cacheOkAndOpaquePlugin = {\n /**\n * Returns a valid response (to allow caching) if the status is 200 (OK) or\n * 0 (opaque).\n *\n * @param {Object} options\n * @param {Response} options.response\n * @return {Response|null}\n *\n * @private\n */\n cacheWillUpdate: async ({ response }) => {\n if (response.status === 200 || response.status === 0) {\n return response;\n }\n return null;\n },\n};\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport '../_version.js';\nconst _cacheNameDetails = {\n googleAnalytics: 'googleAnalytics',\n precache: 'precache-v2',\n prefix: 'workbox',\n runtime: 'runtime',\n suffix: typeof registration !== 'undefined' ? registration.scope : '',\n};\nconst _createCacheName = (cacheName) => {\n return [_cacheNameDetails.prefix, cacheName, _cacheNameDetails.suffix]\n .filter((value) => value && value.length > 0)\n .join('-');\n};\nconst eachCacheNameDetail = (fn) => {\n for (const key of Object.keys(_cacheNameDetails)) {\n fn(key);\n }\n};\nexport const cacheNames = {\n updateDetails: (details) => {\n eachCacheNameDetail((key) => {\n if (typeof details[key] === 'string') {\n _cacheNameDetails[key] = details[key];\n }\n });\n },\n getGoogleAnalyticsName: (userCacheName) => {\n return userCacheName || _createCacheName(_cacheNameDetails.googleAnalytics);\n },\n getPrecacheName: (userCacheName) => {\n return userCacheName || _createCacheName(_cacheNameDetails.precache);\n },\n getPrefix: () => {\n return _cacheNameDetails.prefix;\n },\n getRuntimeName: (userCacheName) => {\n return userCacheName || _createCacheName(_cacheNameDetails.runtime);\n },\n getSuffix: () => {\n return _cacheNameDetails.suffix;\n },\n};\n","/*\n Copyright 2020 Google LLC\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport '../_version.js';\nfunction stripParams(fullURL, ignoreParams) {\n const strippedURL = new URL(fullURL);\n for (const param of ignoreParams) {\n strippedURL.searchParams.delete(param);\n }\n return strippedURL.href;\n}\n/**\n * Matches an item in the cache, ignoring specific URL params. This is similar\n * to the `ignoreSearch` option, but it allows you to ignore just specific\n * params (while continuing to match on the others).\n *\n * @private\n * @param {Cache} cache\n * @param {Request} request\n * @param {Object} matchOptions\n * @param {Array} ignoreParams\n * @return {Promise}\n */\nasync function cacheMatchIgnoreParams(cache, request, ignoreParams, matchOptions) {\n const strippedRequestURL = stripParams(request.url, ignoreParams);\n // If the request doesn't include any ignored params, match as normal.\n if (request.url === strippedRequestURL) {\n return cache.match(request, matchOptions);\n }\n // Otherwise, match by comparing keys\n const keysOptions = Object.assign(Object.assign({}, matchOptions), { ignoreSearch: true });\n const cacheKeys = await cache.keys(request, keysOptions);\n for (const cacheKey of cacheKeys) {\n const strippedCacheKeyURL = stripParams(cacheKey.url, ignoreParams);\n if (strippedRequestURL === strippedCacheKeyURL) {\n return cache.match(cacheKey, matchOptions);\n }\n }\n return;\n}\nexport { cacheMatchIgnoreParams };\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport '../_version.js';\n/**\n * The Deferred class composes Promises in a way that allows for them to be\n * resolved or rejected from outside the constructor. In most cases promises\n * should be used directly, but Deferreds can be necessary when the logic to\n * resolve a promise must be separate.\n *\n * @private\n */\nclass Deferred {\n /**\n * Creates a promise and exposes its resolve and reject functions as methods.\n */\n constructor() {\n this.promise = new Promise((resolve, reject) => {\n this.resolve = resolve;\n this.reject = reject;\n });\n }\n}\nexport { Deferred };\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport '../_version.js';\n// Callbacks to be executed whenever there's a quota error.\n// Can't change Function type right now.\n// eslint-disable-next-line @typescript-eslint/ban-types\nconst quotaErrorCallbacks = new Set();\nexport { quotaErrorCallbacks };\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { logger } from '../_private/logger.js';\nimport { quotaErrorCallbacks } from '../models/quotaErrorCallbacks.js';\nimport '../_version.js';\n/**\n * Runs all of the callback functions, one at a time sequentially, in the order\n * in which they were registered.\n *\n * @memberof workbox-core\n * @private\n */\nasync function executeQuotaErrorCallbacks() {\n if (process.env.NODE_ENV !== 'production') {\n logger.log(`About to run ${quotaErrorCallbacks.size} ` +\n `callbacks to clean up caches.`);\n }\n for (const callback of quotaErrorCallbacks) {\n await callback();\n if (process.env.NODE_ENV !== 'production') {\n logger.log(callback, 'is complete.');\n }\n }\n if (process.env.NODE_ENV !== 'production') {\n logger.log('Finished running callbacks.');\n }\n}\nexport { executeQuotaErrorCallbacks };\n","/*\n Copyright 2019 Google LLC\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport '../_version.js';\n/**\n * Returns a promise that resolves and the passed number of milliseconds.\n * This utility is an async/await-friendly version of `setTimeout`.\n *\n * @param {number} ms\n * @return {Promise}\n * @private\n */\nexport function timeout(ms) {\n return new Promise((resolve) => setTimeout(resolve, ms));\n}\n","/*\n Copyright 2020 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { assert } from 'workbox-core/_private/assert.js';\nimport { cacheMatchIgnoreParams } from 'workbox-core/_private/cacheMatchIgnoreParams.js';\nimport { Deferred } from 'workbox-core/_private/Deferred.js';\nimport { executeQuotaErrorCallbacks } from 'workbox-core/_private/executeQuotaErrorCallbacks.js';\nimport { getFriendlyURL } from 'workbox-core/_private/getFriendlyURL.js';\nimport { logger } from 'workbox-core/_private/logger.js';\nimport { timeout } from 'workbox-core/_private/timeout.js';\nimport { WorkboxError } from 'workbox-core/_private/WorkboxError.js';\nimport './_version.js';\nfunction toRequest(input) {\n return typeof input === 'string' ? new Request(input) : input;\n}\n/**\n * A class created every time a Strategy instance instance calls\n * {@link workbox-strategies.Strategy~handle} or\n * {@link workbox-strategies.Strategy~handleAll} that wraps all fetch and\n * cache actions around plugin callbacks and keeps track of when the strategy\n * is \"done\" (i.e. all added `event.waitUntil()` promises have resolved).\n *\n * @memberof workbox-strategies\n */\nclass StrategyHandler {\n /**\n * Creates a new instance associated with the passed strategy and event\n * that's handling the request.\n *\n * The constructor also initializes the state that will be passed to each of\n * the plugins handling this request.\n *\n * @param {workbox-strategies.Strategy} strategy\n * @param {Object} options\n * @param {Request|string} options.request A request to run this strategy for.\n * @param {ExtendableEvent} options.event The event associated with the\n * request.\n * @param {URL} [options.url]\n * @param {*} [options.params] The return value from the\n * {@link workbox-routing~matchCallback} (if applicable).\n */\n constructor(strategy, options) {\n this._cacheKeys = {};\n /**\n * The request the strategy is performing (passed to the strategy's\n * `handle()` or `handleAll()` method).\n * @name request\n * @instance\n * @type {Request}\n * @memberof workbox-strategies.StrategyHandler\n */\n /**\n * The event associated with this request.\n * @name event\n * @instance\n * @type {ExtendableEvent}\n * @memberof workbox-strategies.StrategyHandler\n */\n /**\n * A `URL` instance of `request.url` (if passed to the strategy's\n * `handle()` or `handleAll()` method).\n * Note: the `url` param will be present if the strategy was invoked\n * from a workbox `Route` object.\n * @name url\n * @instance\n * @type {URL|undefined}\n * @memberof workbox-strategies.StrategyHandler\n */\n /**\n * A `param` value (if passed to the strategy's\n * `handle()` or `handleAll()` method).\n * Note: the `param` param will be present if the strategy was invoked\n * from a workbox `Route` object and the\n * {@link workbox-routing~matchCallback} returned\n * a truthy value (it will be that value).\n * @name params\n * @instance\n * @type {*|undefined}\n * @memberof workbox-strategies.StrategyHandler\n */\n if (process.env.NODE_ENV !== 'production') {\n assert.isInstance(options.event, ExtendableEvent, {\n moduleName: 'workbox-strategies',\n className: 'StrategyHandler',\n funcName: 'constructor',\n paramName: 'options.event',\n });\n }\n Object.assign(this, options);\n this.event = options.event;\n this._strategy = strategy;\n this._handlerDeferred = new Deferred();\n this._extendLifetimePromises = [];\n // Copy the plugins list (since it's mutable on the strategy),\n // so any mutations don't affect this handler instance.\n this._plugins = [...strategy.plugins];\n this._pluginStateMap = new Map();\n for (const plugin of this._plugins) {\n this._pluginStateMap.set(plugin, {});\n }\n this.event.waitUntil(this._handlerDeferred.promise);\n }\n /**\n * Fetches a given request (and invokes any applicable plugin callback\n * methods) using the `fetchOptions` (for non-navigation requests) and\n * `plugins` defined on the `Strategy` object.\n *\n * The following plugin lifecycle methods are invoked when using this method:\n * - `requestWillFetch()`\n * - `fetchDidSucceed()`\n * - `fetchDidFail()`\n *\n * @param {Request|string} input The URL or request to fetch.\n * @return {Promise}\n */\n async fetch(input) {\n const { event } = this;\n let request = toRequest(input);\n if (request.mode === 'navigate' &&\n event instanceof FetchEvent &&\n event.preloadResponse) {\n const possiblePreloadResponse = (await event.preloadResponse);\n if (possiblePreloadResponse) {\n if (process.env.NODE_ENV !== 'production') {\n logger.log(`Using a preloaded navigation response for ` +\n `'${getFriendlyURL(request.url)}'`);\n }\n return possiblePreloadResponse;\n }\n }\n // If there is a fetchDidFail plugin, we need to save a clone of the\n // original request before it's either modified by a requestWillFetch\n // plugin or before the original request's body is consumed via fetch().\n const originalRequest = this.hasCallback('fetchDidFail')\n ? request.clone()\n : null;\n try {\n for (const cb of this.iterateCallbacks('requestWillFetch')) {\n request = await cb({ request: request.clone(), event });\n }\n }\n catch (err) {\n if (err instanceof Error) {\n throw new WorkboxError('plugin-error-request-will-fetch', {\n thrownErrorMessage: err.message,\n });\n }\n }\n // The request can be altered by plugins with `requestWillFetch` making\n // the original request (most likely from a `fetch` event) different\n // from the Request we make. Pass both to `fetchDidFail` to aid debugging.\n const pluginFilteredRequest = request.clone();\n try {\n let fetchResponse;\n // See https://github.com/GoogleChrome/workbox/issues/1796\n fetchResponse = await fetch(request, request.mode === 'navigate' ? undefined : this._strategy.fetchOptions);\n if (process.env.NODE_ENV !== 'production') {\n logger.debug(`Network request for ` +\n `'${getFriendlyURL(request.url)}' returned a response with ` +\n `status '${fetchResponse.status}'.`);\n }\n for (const callback of this.iterateCallbacks('fetchDidSucceed')) {\n fetchResponse = await callback({\n event,\n request: pluginFilteredRequest,\n response: fetchResponse,\n });\n }\n return fetchResponse;\n }\n catch (error) {\n if (process.env.NODE_ENV !== 'production') {\n logger.log(`Network request for ` +\n `'${getFriendlyURL(request.url)}' threw an error.`, error);\n }\n // `originalRequest` will only exist if a `fetchDidFail` callback\n // is being used (see above).\n if (originalRequest) {\n await this.runCallbacks('fetchDidFail', {\n error: error,\n event,\n originalRequest: originalRequest.clone(),\n request: pluginFilteredRequest.clone(),\n });\n }\n throw error;\n }\n }\n /**\n * Calls `this.fetch()` and (in the background) runs `this.cachePut()` on\n * the response generated by `this.fetch()`.\n *\n * The call to `this.cachePut()` automatically invokes `this.waitUntil()`,\n * so you do not have to manually call `waitUntil()` on the event.\n *\n * @param {Request|string} input The request or URL to fetch and cache.\n * @return {Promise}\n */\n async fetchAndCachePut(input) {\n const response = await this.fetch(input);\n const responseClone = response.clone();\n void this.waitUntil(this.cachePut(input, responseClone));\n return response;\n }\n /**\n * Matches a request from the cache (and invokes any applicable plugin\n * callback methods) using the `cacheName`, `matchOptions`, and `plugins`\n * defined on the strategy object.\n *\n * The following plugin lifecycle methods are invoked when using this method:\n * - cacheKeyWillByUsed()\n * - cachedResponseWillByUsed()\n *\n * @param {Request|string} key The Request or URL to use as the cache key.\n * @return {Promise} A matching response, if found.\n */\n async cacheMatch(key) {\n const request = toRequest(key);\n let cachedResponse;\n const { cacheName, matchOptions } = this._strategy;\n const effectiveRequest = await this.getCacheKey(request, 'read');\n const multiMatchOptions = Object.assign(Object.assign({}, matchOptions), { cacheName });\n cachedResponse = await caches.match(effectiveRequest, multiMatchOptions);\n if (process.env.NODE_ENV !== 'production') {\n if (cachedResponse) {\n logger.debug(`Found a cached response in '${cacheName}'.`);\n }\n else {\n logger.debug(`No cached response found in '${cacheName}'.`);\n }\n }\n for (const callback of this.iterateCallbacks('cachedResponseWillBeUsed')) {\n cachedResponse =\n (await callback({\n cacheName,\n matchOptions,\n cachedResponse,\n request: effectiveRequest,\n event: this.event,\n })) || undefined;\n }\n return cachedResponse;\n }\n /**\n * Puts a request/response pair in the cache (and invokes any applicable\n * plugin callback methods) using the `cacheName` and `plugins` defined on\n * the strategy object.\n *\n * The following plugin lifecycle methods are invoked when using this method:\n * - cacheKeyWillByUsed()\n * - cacheWillUpdate()\n * - cacheDidUpdate()\n *\n * @param {Request|string} key The request or URL to use as the cache key.\n * @param {Response} response The response to cache.\n * @return {Promise} `false` if a cacheWillUpdate caused the response\n * not be cached, and `true` otherwise.\n */\n async cachePut(key, response) {\n const request = toRequest(key);\n // Run in the next task to avoid blocking other cache reads.\n // https://github.com/w3c/ServiceWorker/issues/1397\n await timeout(0);\n const effectiveRequest = await this.getCacheKey(request, 'write');\n if (process.env.NODE_ENV !== 'production') {\n if (effectiveRequest.method && effectiveRequest.method !== 'GET') {\n throw new WorkboxError('attempt-to-cache-non-get-request', {\n url: getFriendlyURL(effectiveRequest.url),\n method: effectiveRequest.method,\n });\n }\n // See https://github.com/GoogleChrome/workbox/issues/2818\n const vary = response.headers.get('Vary');\n if (vary) {\n logger.debug(`The response for ${getFriendlyURL(effectiveRequest.url)} ` +\n `has a 'Vary: ${vary}' header. ` +\n `Consider setting the {ignoreVary: true} option on your strategy ` +\n `to ensure cache matching and deletion works as expected.`);\n }\n }\n if (!response) {\n if (process.env.NODE_ENV !== 'production') {\n logger.error(`Cannot cache non-existent response for ` +\n `'${getFriendlyURL(effectiveRequest.url)}'.`);\n }\n throw new WorkboxError('cache-put-with-no-response', {\n url: getFriendlyURL(effectiveRequest.url),\n });\n }\n const responseToCache = await this._ensureResponseSafeToCache(response);\n if (!responseToCache) {\n if (process.env.NODE_ENV !== 'production') {\n logger.debug(`Response '${getFriendlyURL(effectiveRequest.url)}' ` +\n `will not be cached.`, responseToCache);\n }\n return false;\n }\n const { cacheName, matchOptions } = this._strategy;\n const cache = await self.caches.open(cacheName);\n const hasCacheUpdateCallback = this.hasCallback('cacheDidUpdate');\n const oldResponse = hasCacheUpdateCallback\n ? await cacheMatchIgnoreParams(\n // TODO(philipwalton): the `__WB_REVISION__` param is a precaching\n // feature. Consider into ways to only add this behavior if using\n // precaching.\n cache, effectiveRequest.clone(), ['__WB_REVISION__'], matchOptions)\n : null;\n if (process.env.NODE_ENV !== 'production') {\n logger.debug(`Updating the '${cacheName}' cache with a new Response ` +\n `for ${getFriendlyURL(effectiveRequest.url)}.`);\n }\n try {\n await cache.put(effectiveRequest, hasCacheUpdateCallback ? responseToCache.clone() : responseToCache);\n }\n catch (error) {\n if (error instanceof Error) {\n // See https://developer.mozilla.org/en-US/docs/Web/API/DOMException#exception-QuotaExceededError\n if (error.name === 'QuotaExceededError') {\n await executeQuotaErrorCallbacks();\n }\n throw error;\n }\n }\n for (const callback of this.iterateCallbacks('cacheDidUpdate')) {\n await callback({\n cacheName,\n oldResponse,\n newResponse: responseToCache.clone(),\n request: effectiveRequest,\n event: this.event,\n });\n }\n return true;\n }\n /**\n * Checks the list of plugins for the `cacheKeyWillBeUsed` callback, and\n * executes any of those callbacks found in sequence. The final `Request`\n * object returned by the last plugin is treated as the cache key for cache\n * reads and/or writes. If no `cacheKeyWillBeUsed` plugin callbacks have\n * been registered, the passed request is returned unmodified\n *\n * @param {Request} request\n * @param {string} mode\n * @return {Promise}\n */\n async getCacheKey(request, mode) {\n const key = `${request.url} | ${mode}`;\n if (!this._cacheKeys[key]) {\n let effectiveRequest = request;\n for (const callback of this.iterateCallbacks('cacheKeyWillBeUsed')) {\n effectiveRequest = toRequest(await callback({\n mode,\n request: effectiveRequest,\n event: this.event,\n // params has a type any can't change right now.\n params: this.params, // eslint-disable-line\n }));\n }\n this._cacheKeys[key] = effectiveRequest;\n }\n return this._cacheKeys[key];\n }\n /**\n * Returns true if the strategy has at least one plugin with the given\n * callback.\n *\n * @param {string} name The name of the callback to check for.\n * @return {boolean}\n */\n hasCallback(name) {\n for (const plugin of this._strategy.plugins) {\n if (name in plugin) {\n return true;\n }\n }\n return false;\n }\n /**\n * Runs all plugin callbacks matching the given name, in order, passing the\n * given param object (merged ith the current plugin state) as the only\n * argument.\n *\n * Note: since this method runs all plugins, it's not suitable for cases\n * where the return value of a callback needs to be applied prior to calling\n * the next callback. See\n * {@link workbox-strategies.StrategyHandler#iterateCallbacks}\n * below for how to handle that case.\n *\n * @param {string} name The name of the callback to run within each plugin.\n * @param {Object} param The object to pass as the first (and only) param\n * when executing each callback. This object will be merged with the\n * current plugin state prior to callback execution.\n */\n async runCallbacks(name, param) {\n for (const callback of this.iterateCallbacks(name)) {\n // TODO(philipwalton): not sure why `any` is needed. It seems like\n // this should work with `as WorkboxPluginCallbackParam[C]`.\n await callback(param);\n }\n }\n /**\n * Accepts a callback and returns an iterable of matching plugin callbacks,\n * where each callback is wrapped with the current handler state (i.e. when\n * you call each callback, whatever object parameter you pass it will\n * be merged with the plugin's current state).\n *\n * @param {string} name The name fo the callback to run\n * @return {Array}\n */\n *iterateCallbacks(name) {\n for (const plugin of this._strategy.plugins) {\n if (typeof plugin[name] === 'function') {\n const state = this._pluginStateMap.get(plugin);\n const statefulCallback = (param) => {\n const statefulParam = Object.assign(Object.assign({}, param), { state });\n // TODO(philipwalton): not sure why `any` is needed. It seems like\n // this should work with `as WorkboxPluginCallbackParam[C]`.\n return plugin[name](statefulParam);\n };\n yield statefulCallback;\n }\n }\n }\n /**\n * Adds a promise to the\n * [extend lifetime promises]{@link https://w3c.github.io/ServiceWorker/#extendableevent-extend-lifetime-promises}\n * of the event event associated with the request being handled (usually a\n * `FetchEvent`).\n *\n * Note: you can await\n * {@link workbox-strategies.StrategyHandler~doneWaiting}\n * to know when all added promises have settled.\n *\n * @param {Promise} promise A promise to add to the extend lifetime promises\n * of the event that triggered the request.\n */\n waitUntil(promise) {\n this._extendLifetimePromises.push(promise);\n return promise;\n }\n /**\n * Returns a promise that resolves once all promises passed to\n * {@link workbox-strategies.StrategyHandler~waitUntil}\n * have settled.\n *\n * Note: any work done after `doneWaiting()` settles should be manually\n * passed to an event's `waitUntil()` method (not this handler's\n * `waitUntil()` method), otherwise the service worker thread my be killed\n * prior to your work completing.\n */\n async doneWaiting() {\n let promise;\n while ((promise = this._extendLifetimePromises.shift())) {\n await promise;\n }\n }\n /**\n * Stops running the strategy and immediately resolves any pending\n * `waitUntil()` promises.\n */\n destroy() {\n this._handlerDeferred.resolve(null);\n }\n /**\n * This method will call cacheWillUpdate on the available plugins (or use\n * status === 200) to determine if the Response is safe and valid to cache.\n *\n * @param {Request} options.request\n * @param {Response} options.response\n * @return {Promise}\n *\n * @private\n */\n async _ensureResponseSafeToCache(response) {\n let responseToCache = response;\n let pluginsUsed = false;\n for (const callback of this.iterateCallbacks('cacheWillUpdate')) {\n responseToCache =\n (await callback({\n request: this.request,\n response: responseToCache,\n event: this.event,\n })) || undefined;\n pluginsUsed = true;\n if (!responseToCache) {\n break;\n }\n }\n if (!pluginsUsed) {\n if (responseToCache && responseToCache.status !== 200) {\n responseToCache = undefined;\n }\n if (process.env.NODE_ENV !== 'production') {\n if (responseToCache) {\n if (responseToCache.status !== 200) {\n if (responseToCache.status === 0) {\n logger.warn(`The response for '${this.request.url}' ` +\n `is an opaque response. The caching strategy that you're ` +\n `using will not cache opaque responses by default.`);\n }\n else {\n logger.debug(`The response for '${this.request.url}' ` +\n `returned a status code of '${response.status}' and won't ` +\n `be cached as a result.`);\n }\n }\n }\n }\n }\n return responseToCache;\n }\n}\nexport { StrategyHandler };\n","/*\n Copyright 2020 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { cacheNames } from 'workbox-core/_private/cacheNames.js';\nimport { WorkboxError } from 'workbox-core/_private/WorkboxError.js';\nimport { logger } from 'workbox-core/_private/logger.js';\nimport { getFriendlyURL } from 'workbox-core/_private/getFriendlyURL.js';\nimport { StrategyHandler } from './StrategyHandler.js';\nimport './_version.js';\n/**\n * An abstract base class that all other strategy classes must extend from:\n *\n * @memberof workbox-strategies\n */\nclass Strategy {\n /**\n * Creates a new instance of the strategy and sets all documented option\n * properties as public instance properties.\n *\n * Note: if a custom strategy class extends the base Strategy class and does\n * not need more than these properties, it does not need to define its own\n * constructor.\n *\n * @param {Object} [options]\n * @param {string} [options.cacheName] Cache name to store and retrieve\n * requests. Defaults to the cache names provided by\n * {@link workbox-core.cacheNames}.\n * @param {Array} [options.plugins] [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins}\n * to use in conjunction with this caching strategy.\n * @param {Object} [options.fetchOptions] Values passed along to the\n * [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters)\n * of [non-navigation](https://github.com/GoogleChrome/workbox/issues/1796)\n * `fetch()` requests made by this strategy.\n * @param {Object} [options.matchOptions] The\n * [`CacheQueryOptions`]{@link https://w3c.github.io/ServiceWorker/#dictdef-cachequeryoptions}\n * for any `cache.match()` or `cache.put()` calls made by this strategy.\n */\n constructor(options = {}) {\n /**\n * Cache name to store and retrieve\n * requests. Defaults to the cache names provided by\n * {@link workbox-core.cacheNames}.\n *\n * @type {string}\n */\n this.cacheName = cacheNames.getRuntimeName(options.cacheName);\n /**\n * The list\n * [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins}\n * used by this strategy.\n *\n * @type {Array}\n */\n this.plugins = options.plugins || [];\n /**\n * Values passed along to the\n * [`init`]{@link https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters}\n * of all fetch() requests made by this strategy.\n *\n * @type {Object}\n */\n this.fetchOptions = options.fetchOptions;\n /**\n * The\n * [`CacheQueryOptions`]{@link https://w3c.github.io/ServiceWorker/#dictdef-cachequeryoptions}\n * for any `cache.match()` or `cache.put()` calls made by this strategy.\n *\n * @type {Object}\n */\n this.matchOptions = options.matchOptions;\n }\n /**\n * Perform a request strategy and returns a `Promise` that will resolve with\n * a `Response`, invoking all relevant plugin callbacks.\n *\n * When a strategy instance is registered with a Workbox\n * {@link workbox-routing.Route}, this method is automatically\n * called when the route matches.\n *\n * Alternatively, this method can be used in a standalone `FetchEvent`\n * listener by passing it to `event.respondWith()`.\n *\n * @param {FetchEvent|Object} options A `FetchEvent` or an object with the\n * properties listed below.\n * @param {Request|string} options.request A request to run this strategy for.\n * @param {ExtendableEvent} options.event The event associated with the\n * request.\n * @param {URL} [options.url]\n * @param {*} [options.params]\n */\n handle(options) {\n const [responseDone] = this.handleAll(options);\n return responseDone;\n }\n /**\n * Similar to {@link workbox-strategies.Strategy~handle}, but\n * instead of just returning a `Promise` that resolves to a `Response` it\n * it will return an tuple of `[response, done]` promises, where the former\n * (`response`) is equivalent to what `handle()` returns, and the latter is a\n * Promise that will resolve once any promises that were added to\n * `event.waitUntil()` as part of performing the strategy have completed.\n *\n * You can await the `done` promise to ensure any extra work performed by\n * the strategy (usually caching responses) completes successfully.\n *\n * @param {FetchEvent|Object} options A `FetchEvent` or an object with the\n * properties listed below.\n * @param {Request|string} options.request A request to run this strategy for.\n * @param {ExtendableEvent} options.event The event associated with the\n * request.\n * @param {URL} [options.url]\n * @param {*} [options.params]\n * @return {Array} A tuple of [response, done]\n * promises that can be used to determine when the response resolves as\n * well as when the handler has completed all its work.\n */\n handleAll(options) {\n // Allow for flexible options to be passed.\n if (options instanceof FetchEvent) {\n options = {\n event: options,\n request: options.request,\n };\n }\n const event = options.event;\n const request = typeof options.request === 'string'\n ? new Request(options.request)\n : options.request;\n const params = 'params' in options ? options.params : undefined;\n const handler = new StrategyHandler(this, { event, request, params });\n const responseDone = this._getResponse(handler, request, event);\n const handlerDone = this._awaitComplete(responseDone, handler, request, event);\n // Return an array of promises, suitable for use with Promise.all().\n return [responseDone, handlerDone];\n }\n async _getResponse(handler, request, event) {\n await handler.runCallbacks('handlerWillStart', { event, request });\n let response = undefined;\n try {\n response = await this._handle(request, handler);\n // The \"official\" Strategy subclasses all throw this error automatically,\n // but in case a third-party Strategy doesn't, ensure that we have a\n // consistent failure when there's no response or an error response.\n if (!response || response.type === 'error') {\n throw new WorkboxError('no-response', { url: request.url });\n }\n }\n catch (error) {\n if (error instanceof Error) {\n for (const callback of handler.iterateCallbacks('handlerDidError')) {\n response = await callback({ error, event, request });\n if (response) {\n break;\n }\n }\n }\n if (!response) {\n throw error;\n }\n else if (process.env.NODE_ENV !== 'production') {\n logger.log(`While responding to '${getFriendlyURL(request.url)}', ` +\n `an ${error instanceof Error ? error.toString() : ''} error occurred. Using a fallback response provided by ` +\n `a handlerDidError plugin.`);\n }\n }\n for (const callback of handler.iterateCallbacks('handlerWillRespond')) {\n response = await callback({ event, request, response });\n }\n return response;\n }\n async _awaitComplete(responseDone, handler, request, event) {\n let response;\n let error;\n try {\n response = await responseDone;\n }\n catch (error) {\n // Ignore errors, as response errors should be caught via the `response`\n // promise above. The `done` promise will only throw for errors in\n // promises passed to `handler.waitUntil()`.\n }\n try {\n await handler.runCallbacks('handlerDidRespond', {\n event,\n request,\n response,\n });\n await handler.doneWaiting();\n }\n catch (waitUntilError) {\n if (waitUntilError instanceof Error) {\n error = waitUntilError;\n }\n }\n await handler.runCallbacks('handlerDidComplete', {\n event,\n request,\n response,\n error: error,\n });\n handler.destroy();\n if (error) {\n throw error;\n }\n }\n}\nexport { Strategy };\n/**\n * Classes extending the `Strategy` based class should implement this method,\n * and leverage the {@link workbox-strategies.StrategyHandler}\n * arg to perform all fetching and cache logic, which will ensure all relevant\n * cache, cache options, fetch options and plugins are used (per the current\n * strategy instance).\n *\n * @name _handle\n * @instance\n * @abstract\n * @function\n * @param {Request} request\n * @param {workbox-strategies.StrategyHandler} handler\n * @return {Promise}\n *\n * @memberof workbox-strategies.Strategy\n */\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { logger } from 'workbox-core/_private/logger.js';\nimport { getFriendlyURL } from 'workbox-core/_private/getFriendlyURL.js';\nimport '../_version.js';\nexport const messages = {\n strategyStart: (strategyName, request) => `Using ${strategyName} to respond to '${getFriendlyURL(request.url)}'`,\n printFinalResponse: (response) => {\n if (response) {\n logger.groupCollapsed(`View the final response here.`);\n logger.log(response || '[No response returned]');\n logger.groupEnd();\n }\n },\n};\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { assert } from 'workbox-core/_private/assert.js';\nimport { logger } from 'workbox-core/_private/logger.js';\nimport { WorkboxError } from 'workbox-core/_private/WorkboxError.js';\nimport { cacheOkAndOpaquePlugin } from './plugins/cacheOkAndOpaquePlugin.js';\nimport { Strategy } from './Strategy.js';\nimport { messages } from './utils/messages.js';\nimport './_version.js';\n/**\n * An implementation of a\n * [network first](https://developer.chrome.com/docs/workbox/caching-strategies-overview/#network-first-falling-back-to-cache)\n * request strategy.\n *\n * By default, this strategy will cache responses with a 200 status code as\n * well as [opaque responses](https://developer.chrome.com/docs/workbox/caching-resources-during-runtime/#opaque-responses).\n * Opaque responses are are cross-origin requests where the response doesn't\n * support [CORS](https://enable-cors.org/).\n *\n * If the network request fails, and there is no cache match, this will throw\n * a `WorkboxError` exception.\n *\n * @extends workbox-strategies.Strategy\n * @memberof workbox-strategies\n */\nclass NetworkFirst extends Strategy {\n /**\n * @param {Object} [options]\n * @param {string} [options.cacheName] Cache name to store and retrieve\n * requests. Defaults to cache names provided by\n * {@link workbox-core.cacheNames}.\n * @param {Array} [options.plugins] [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins}\n * to use in conjunction with this caching strategy.\n * @param {Object} [options.fetchOptions] Values passed along to the\n * [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters)\n * of [non-navigation](https://github.com/GoogleChrome/workbox/issues/1796)\n * `fetch()` requests made by this strategy.\n * @param {Object} [options.matchOptions] [`CacheQueryOptions`](https://w3c.github.io/ServiceWorker/#dictdef-cachequeryoptions)\n * @param {number} [options.networkTimeoutSeconds] If set, any network requests\n * that fail to respond within the timeout will fallback to the cache.\n *\n * This option can be used to combat\n * \"[lie-fi]{@link https://developers.google.com/web/fundamentals/performance/poor-connectivity/#lie-fi}\"\n * scenarios.\n */\n constructor(options = {}) {\n super(options);\n // If this instance contains no plugins with a 'cacheWillUpdate' callback,\n // prepend the `cacheOkAndOpaquePlugin` plugin to the plugins list.\n if (!this.plugins.some((p) => 'cacheWillUpdate' in p)) {\n this.plugins.unshift(cacheOkAndOpaquePlugin);\n }\n this._networkTimeoutSeconds = options.networkTimeoutSeconds || 0;\n if (process.env.NODE_ENV !== 'production') {\n if (this._networkTimeoutSeconds) {\n assert.isType(this._networkTimeoutSeconds, 'number', {\n moduleName: 'workbox-strategies',\n className: this.constructor.name,\n funcName: 'constructor',\n paramName: 'networkTimeoutSeconds',\n });\n }\n }\n }\n /**\n * @private\n * @param {Request|string} request A request to run this strategy for.\n * @param {workbox-strategies.StrategyHandler} handler The event that\n * triggered the request.\n * @return {Promise}\n */\n async _handle(request, handler) {\n const logs = [];\n if (process.env.NODE_ENV !== 'production') {\n assert.isInstance(request, Request, {\n moduleName: 'workbox-strategies',\n className: this.constructor.name,\n funcName: 'handle',\n paramName: 'makeRequest',\n });\n }\n const promises = [];\n let timeoutId;\n if (this._networkTimeoutSeconds) {\n const { id, promise } = this._getTimeoutPromise({ request, logs, handler });\n timeoutId = id;\n promises.push(promise);\n }\n const networkPromise = this._getNetworkPromise({\n timeoutId,\n request,\n logs,\n handler,\n });\n promises.push(networkPromise);\n const response = await handler.waitUntil((async () => {\n // Promise.race() will resolve as soon as the first promise resolves.\n return ((await handler.waitUntil(Promise.race(promises))) ||\n // If Promise.race() resolved with null, it might be due to a network\n // timeout + a cache miss. If that were to happen, we'd rather wait until\n // the networkPromise resolves instead of returning null.\n // Note that it's fine to await an already-resolved promise, so we don't\n // have to check to see if it's still \"in flight\".\n (await networkPromise));\n })());\n if (process.env.NODE_ENV !== 'production') {\n logger.groupCollapsed(messages.strategyStart(this.constructor.name, request));\n for (const log of logs) {\n logger.log(log);\n }\n messages.printFinalResponse(response);\n logger.groupEnd();\n }\n if (!response) {\n throw new WorkboxError('no-response', { url: request.url });\n }\n return response;\n }\n /**\n * @param {Object} options\n * @param {Request} options.request\n * @param {Array} options.logs A reference to the logs array\n * @param {Event} options.event\n * @return {Promise}\n *\n * @private\n */\n _getTimeoutPromise({ request, logs, handler, }) {\n let timeoutId;\n const timeoutPromise = new Promise((resolve) => {\n const onNetworkTimeout = async () => {\n if (process.env.NODE_ENV !== 'production') {\n logs.push(`Timing out the network response at ` +\n `${this._networkTimeoutSeconds} seconds.`);\n }\n resolve(await handler.cacheMatch(request));\n };\n timeoutId = setTimeout(onNetworkTimeout, this._networkTimeoutSeconds * 1000);\n });\n return {\n promise: timeoutPromise,\n id: timeoutId,\n };\n }\n /**\n * @param {Object} options\n * @param {number|undefined} options.timeoutId\n * @param {Request} options.request\n * @param {Array} options.logs A reference to the logs Array.\n * @param {Event} options.event\n * @return {Promise}\n *\n * @private\n */\n async _getNetworkPromise({ timeoutId, request, logs, handler, }) {\n let error;\n let response;\n try {\n response = await handler.fetchAndCachePut(request);\n }\n catch (fetchError) {\n if (fetchError instanceof Error) {\n error = fetchError;\n }\n }\n if (timeoutId) {\n clearTimeout(timeoutId);\n }\n if (process.env.NODE_ENV !== 'production') {\n if (response) {\n logs.push(`Got response from network.`);\n }\n else {\n logs.push(`Unable to get a response from the network. Will respond ` +\n `with a cached response.`);\n }\n }\n if (error || !response) {\n response = await handler.cacheMatch(request);\n if (process.env.NODE_ENV !== 'production') {\n if (response) {\n logs.push(`Found a cached response in the '${this.cacheName}'` + ` cache.`);\n }\n else {\n logs.push(`No response found in the '${this.cacheName}' cache.`);\n }\n }\n }\n return response;\n }\n}\nexport { NetworkFirst };\n","/*\n Copyright 2018 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport { assert } from 'workbox-core/_private/assert.js';\nimport { logger } from 'workbox-core/_private/logger.js';\nimport { timeout } from 'workbox-core/_private/timeout.js';\nimport { WorkboxError } from 'workbox-core/_private/WorkboxError.js';\nimport { Strategy } from './Strategy.js';\nimport { messages } from './utils/messages.js';\nimport './_version.js';\n/**\n * An implementation of a\n * [network-only](https://developer.chrome.com/docs/workbox/caching-strategies-overview/#network-only)\n * request strategy.\n *\n * This class is useful if you want to take advantage of any\n * [Workbox plugins](https://developer.chrome.com/docs/workbox/using-plugins/).\n *\n * If the network request fails, this will throw a `WorkboxError` exception.\n *\n * @extends workbox-strategies.Strategy\n * @memberof workbox-strategies\n */\nclass NetworkOnly extends Strategy {\n /**\n * @param {Object} [options]\n * @param {Array} [options.plugins] [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins}\n * to use in conjunction with this caching strategy.\n * @param {Object} [options.fetchOptions] Values passed along to the\n * [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters)\n * of [non-navigation](https://github.com/GoogleChrome/workbox/issues/1796)\n * `fetch()` requests made by this strategy.\n * @param {number} [options.networkTimeoutSeconds] If set, any network requests\n * that fail to respond within the timeout will result in a network error.\n */\n constructor(options = {}) {\n super(options);\n this._networkTimeoutSeconds = options.networkTimeoutSeconds || 0;\n }\n /**\n * @private\n * @param {Request|string} request A request to run this strategy for.\n * @param {workbox-strategies.StrategyHandler} handler The event that\n * triggered the request.\n * @return {Promise}\n */\n async _handle(request, handler) {\n if (process.env.NODE_ENV !== 'production') {\n assert.isInstance(request, Request, {\n moduleName: 'workbox-strategies',\n className: this.constructor.name,\n funcName: '_handle',\n paramName: 'request',\n });\n }\n let error = undefined;\n let response;\n try {\n const promises = [\n handler.fetch(request),\n ];\n if (this._networkTimeoutSeconds) {\n const timeoutPromise = timeout(this._networkTimeoutSeconds * 1000);\n promises.push(timeoutPromise);\n }\n response = await Promise.race(promises);\n if (!response) {\n throw new Error(`Timed out the network response after ` +\n `${this._networkTimeoutSeconds} seconds.`);\n }\n }\n catch (err) {\n if (err instanceof Error) {\n error = err;\n }\n }\n if (process.env.NODE_ENV !== 'production') {\n logger.groupCollapsed(messages.strategyStart(this.constructor.name, request));\n if (response) {\n logger.log(`Got response from network.`);\n }\n else {\n logger.log(`Unable to get a response from the network.`);\n }\n messages.printFinalResponse(response);\n logger.groupEnd();\n }\n if (!response) {\n throw new WorkboxError('no-response', { url: request.url, error });\n }\n return response;\n }\n}\nexport { NetworkOnly };\n","/*\n Copyright 2019 Google LLC\n\n Use of this source code is governed by an MIT-style\n license that can be found in the LICENSE file or at\n https://opensource.org/licenses/MIT.\n*/\nimport './_version.js';\n/**\n * Claim any currently available clients once the service worker\n * becomes active. This is normally used in conjunction with `skipWaiting()`.\n *\n * @memberof workbox-core\n */\nfunction clientsClaim() {\n self.addEventListener('activate', () => self.clients.claim());\n}\nexport { clientsClaim };\n"],"names":["self","_","e","logger","globalThis","__WB_DISABLE_DEV_LOGS","inGroup","methodToColorMap","debug","log","warn","error","groupCollapsed","groupEnd","print","method","args","test","navigator","userAgent","console","styles","logPrefix","join","api","loggerMethods","Object","keys","key","messages","invalid-value","paramName","validValueDescription","value","Error","JSON","stringify","not-an-array","moduleName","className","funcName","incorrect-type","expectedType","classNameStr","incorrect-class","expectedClassName","isReturnValueProblem","missing-a-method","expectedMethod","add-to-cache-list-unexpected-type","entry","add-to-cache-list-conflicting-entries","firstEntry","secondEntry","plugin-error-request-will-fetch","thrownErrorMessage","invalid-cache-name","cacheNameId","unregister-route-but-not-found-with-method","unregister-route-route-not-registered","queue-replay-failed","name","duplicate-queue-name","expired-test-without-max-age","methodName","unsupported-route-type","not-array-of-class","expectedClass","max-entries-or-age-required","statuses-or-headers-required","invalid-string","channel-name-required","invalid-responses-are-same-args","expire-custom-caches-only","unit-must-be-bytes","normalizedRangeHeader","single-range-only","invalid-range-values","no-range-header","range-not-satisfiable","size","start","end","attempt-to-cache-non-get-request","url","cache-put-with-no-response","no-response","message","bad-precaching-response","status","non-precached-url","add-to-cache-list-conflicting-integrities","missing-precache-entry","cacheName","cross-origin-copy-response","origin","opaque-streams-source","type","generatorFunction","code","details","messageGenerator","WorkboxError","constructor","errorCode","isArray","Array","hasMethod","object","isType","isInstance","isOneOf","validValues","includes","isArrayOfClass","item","finalAssertExports","defaultMethod","validMethods","normalizeHandler","handler","assert","handle","Route","match","setCatchHandler","catchHandler","RegExpRoute","regExp","RegExp","result","exec","href","location","index","toString","slice","getFriendlyURL","urlObj","URL","String","replace","Router","_routes","Map","_defaultHandlerMap","routes","addFetchListener","addEventListener","event","request","responsePromise","handleRequest","respondWith","addCacheListener","data","payload","urlsToCache","requestPromises","Promise","all","map","Request","waitUntil","ports","then","postMessage","protocol","startsWith","sameOrigin","params","route","findMatchingRoute","debugMessages","push","has","get","forEach","msg","err","reject","_catchHandler","catch","catchErr","matchResult","length","undefined","setDefaultHandler","set","registerRoute","unregisterRoute","routeIndex","indexOf","splice","defaultRouter","getOrCreateDefaultRouter","capture","captureUrl","valueToCheck","pathname","wildcards","matchCallback","cacheOkAndOpaquePlugin","cacheWillUpdate","response","_cacheNameDetails","googleAnalytics","precache","prefix","runtime","suffix","registration","scope","_createCacheName","filter","eachCacheNameDetail","fn","cacheNames","updateDetails","getGoogleAnalyticsName","userCacheName","getPrecacheName","getPrefix","getRuntimeName","getSuffix","stripParams","fullURL","ignoreParams","strippedURL","param","searchParams","delete","cacheMatchIgnoreParams","cache","matchOptions","strippedRequestURL","keysOptions","assign","ignoreSearch","cacheKeys","cacheKey","strippedCacheKeyURL","Deferred","promise","resolve","quotaErrorCallbacks","Set","executeQuotaErrorCallbacks","callback","timeout","ms","setTimeout","toRequest","input","StrategyHandler","strategy","options","_cacheKeys","ExtendableEvent","_strategy","_handlerDeferred","_extendLifetimePromises","_plugins","plugins","_pluginStateMap","plugin","fetch","mode","FetchEvent","preloadResponse","possiblePreloadResponse","originalRequest","hasCallback","clone","cb","iterateCallbacks","pluginFilteredRequest","fetchResponse","fetchOptions","runCallbacks","fetchAndCachePut","responseClone","cachePut","cacheMatch","cachedResponse","effectiveRequest","getCacheKey","multiMatchOptions","caches","vary","headers","responseToCache","_ensureResponseSafeToCache","open","hasCacheUpdateCallback","oldResponse","put","newResponse","state","statefulCallback","statefulParam","doneWaiting","shift","destroy","pluginsUsed","Strategy","responseDone","handleAll","_getResponse","handlerDone","_awaitComplete","_handle","waitUntilError","strategyStart","strategyName","printFinalResponse","NetworkFirst","some","p","unshift","_networkTimeoutSeconds","networkTimeoutSeconds","logs","promises","timeoutId","id","_getTimeoutPromise","networkPromise","_getNetworkPromise","race","timeoutPromise","onNetworkTimeout","fetchError","clearTimeout","NetworkOnly","clientsClaim","clients","claim"],"mappings":"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"} \ No newline at end of file diff --git a/public/workbox-c95f9b89.js b/public/workbox-c95f9b89.js new file mode 100644 index 00000000..c3ff036d --- /dev/null +++ b/public/workbox-c95f9b89.js @@ -0,0 +1,1065 @@ +define(['exports'], function (t) { + 'use strict'; + try { + self['workbox:core:6.6.0'] && _(); + } catch (t) {} + const e = (t, ...e) => { + let s = t; + return e.length > 0 && (s += ` :: ${JSON.stringify(e)}`), s; + }; + class s extends Error { + constructor(t, s) { + super(e(t, s)), (this.name = t), (this.details = s); + } + } + try { + self['workbox:routing:6.6.0'] && _(); + } catch (t) {} + const n = (t) => (t && 'object' == typeof t ? t : { handle: t }); + class r { + constructor(t, e, s = 'GET') { + (this.handler = n(e)), (this.match = t), (this.method = s); + } + setCatchHandler(t) { + this.catchHandler = n(t); + } + } + class i extends r { + constructor(t, e, s) { + super( + ({ url: e }) => { + const s = t.exec(e.href); + if (s && (e.origin === location.origin || 0 === s.index)) return s.slice(1); + }, + e, + s + ); + } + } + class a { + constructor() { + (this.t = new Map()), (this.i = new Map()); + } + get routes() { + return this.t; + } + addFetchListener() { + self.addEventListener('fetch', (t) => { + const { request: e } = t, + s = this.handleRequest({ request: e, event: t }); + s && t.respondWith(s); + }); + } + addCacheListener() { + self.addEventListener('message', (t) => { + if (t.data && 'CACHE_URLS' === t.data.type) { + const { payload: e } = t.data, + s = Promise.all( + e.urlsToCache.map((e) => { + 'string' == typeof e && (e = [e]); + const s = new Request(...e); + return this.handleRequest({ request: s, event: t }); + }) + ); + t.waitUntil(s), t.ports && t.ports[0] && s.then(() => t.ports[0].postMessage(!0)); + } + }); + } + handleRequest({ request: t, event: e }) { + const s = new URL(t.url, location.href); + if (!s.protocol.startsWith('http')) return; + const n = s.origin === location.origin, + { params: r, route: i } = this.findMatchingRoute({ event: e, request: t, sameOrigin: n, url: s }); + let a = i && i.handler; + const o = t.method; + if ((!a && this.i.has(o) && (a = this.i.get(o)), !a)) return; + let c; + try { + c = a.handle({ url: s, request: t, event: e, params: r }); + } catch (t) { + c = Promise.reject(t); + } + const h = i && i.catchHandler; + return ( + c instanceof Promise && + (this.o || h) && + (c = c.catch(async (n) => { + if (h) + try { + return await h.handle({ url: s, request: t, event: e, params: r }); + } catch (t) { + t instanceof Error && (n = t); + } + if (this.o) return this.o.handle({ url: s, request: t, event: e }); + throw n; + })), + c + ); + } + findMatchingRoute({ url: t, sameOrigin: e, request: s, event: n }) { + const r = this.t.get(s.method) || []; + for (const i of r) { + let r; + const a = i.match({ url: t, sameOrigin: e, request: s, event: n }); + if (a) + return ( + (r = a), + ((Array.isArray(r) && 0 === r.length) || + (a.constructor === Object && 0 === Object.keys(a).length) || + 'boolean' == typeof a) && + (r = void 0), + { route: i, params: r } + ); + } + return {}; + } + setDefaultHandler(t, e = 'GET') { + this.i.set(e, n(t)); + } + setCatchHandler(t) { + this.o = n(t); + } + registerRoute(t) { + this.t.has(t.method) || this.t.set(t.method, []), this.t.get(t.method).push(t); + } + unregisterRoute(t) { + if (!this.t.has(t.method)) throw new s('unregister-route-but-not-found-with-method', { method: t.method }); + const e = this.t.get(t.method).indexOf(t); + if (!(e > -1)) throw new s('unregister-route-route-not-registered'); + this.t.get(t.method).splice(e, 1); + } + } + let o; + const c = () => (o || ((o = new a()), o.addFetchListener(), o.addCacheListener()), o); + function h(t, e, n) { + let a; + if ('string' == typeof t) { + const s = new URL(t, location.href); + a = new r(({ url: t }) => t.href === s.href, e, n); + } else if (t instanceof RegExp) a = new i(t, e, n); + else if ('function' == typeof t) a = new r(t, e, n); + else { + if (!(t instanceof r)) + throw new s('unsupported-route-type', { + moduleName: 'workbox-routing', + funcName: 'registerRoute', + paramName: 'capture', + }); + a = t; + } + return c().registerRoute(a), a; + } + try { + self['workbox:strategies:6.6.0'] && _(); + } catch (t) {} + const u = { cacheWillUpdate: async ({ response: t }) => (200 === t.status || 0 === t.status ? t : null) }, + l = { + googleAnalytics: 'googleAnalytics', + precache: 'precache-v2', + prefix: 'workbox', + runtime: 'runtime', + suffix: 'undefined' != typeof registration ? registration.scope : '', + }, + f = (t) => [l.prefix, t, l.suffix].filter((t) => t && t.length > 0).join('-'), + w = (t) => t || f(l.precache), + d = (t) => t || f(l.runtime); + function p(t, e) { + const s = new URL(t); + for (const t of e) s.searchParams.delete(t); + return s.href; + } + class y { + constructor() { + this.promise = new Promise((t, e) => { + (this.resolve = t), (this.reject = e); + }); + } + } + const g = new Set(); + function m(t) { + return 'string' == typeof t ? new Request(t) : t; + } + class R { + constructor(t, e) { + (this.h = {}), + Object.assign(this, e), + (this.event = e.event), + (this.u = t), + (this.l = new y()), + (this.p = []), + (this.m = [...t.plugins]), + (this.R = new Map()); + for (const t of this.m) this.R.set(t, {}); + this.event.waitUntil(this.l.promise); + } + async fetch(t) { + const { event: e } = this; + let n = m(t); + if ('navigate' === n.mode && e instanceof FetchEvent && e.preloadResponse) { + const t = await e.preloadResponse; + if (t) return t; + } + const r = this.hasCallback('fetchDidFail') ? n.clone() : null; + try { + for (const t of this.iterateCallbacks('requestWillFetch')) n = await t({ request: n.clone(), event: e }); + } catch (t) { + if (t instanceof Error) throw new s('plugin-error-request-will-fetch', { thrownErrorMessage: t.message }); + } + const i = n.clone(); + try { + let t; + t = await fetch(n, 'navigate' === n.mode ? void 0 : this.u.fetchOptions); + for (const s of this.iterateCallbacks('fetchDidSucceed')) t = await s({ event: e, request: i, response: t }); + return t; + } catch (t) { + throw ( + (r && + (await this.runCallbacks('fetchDidFail', { + error: t, + event: e, + originalRequest: r.clone(), + request: i.clone(), + })), + t) + ); + } + } + async fetchAndCachePut(t) { + const e = await this.fetch(t), + s = e.clone(); + return this.waitUntil(this.cachePut(t, s)), e; + } + async cacheMatch(t) { + const e = m(t); + let s; + const { cacheName: n, matchOptions: r } = this.u, + i = await this.getCacheKey(e, 'read'), + a = Object.assign(Object.assign({}, r), { cacheName: n }); + s = await caches.match(i, a); + for (const t of this.iterateCallbacks('cachedResponseWillBeUsed')) + s = (await t({ cacheName: n, matchOptions: r, cachedResponse: s, request: i, event: this.event })) || void 0; + return s; + } + async cachePut(t, e) { + const n = m(t); + var r; + await ((r = 0), new Promise((t) => setTimeout(t, r))); + const i = await this.getCacheKey(n, 'write'); + if (!e) + throw new s('cache-put-with-no-response', { + url: ((a = i.url), new URL(String(a), location.href).href.replace(new RegExp(`^${location.origin}`), '')), + }); + var a; + const o = await this.v(e); + if (!o) return !1; + const { cacheName: c, matchOptions: h } = this.u, + u = await self.caches.open(c), + l = this.hasCallback('cacheDidUpdate'), + f = l + ? await (async function (t, e, s, n) { + const r = p(e.url, s); + if (e.url === r) return t.match(e, n); + const i = Object.assign(Object.assign({}, n), { ignoreSearch: !0 }), + a = await t.keys(e, i); + for (const e of a) if (r === p(e.url, s)) return t.match(e, n); + })(u, i.clone(), ['__WB_REVISION__'], h) + : null; + try { + await u.put(i, l ? o.clone() : o); + } catch (t) { + if (t instanceof Error) + throw ( + ('QuotaExceededError' === t.name && + (await (async function () { + for (const t of g) await t(); + })()), + t) + ); + } + for (const t of this.iterateCallbacks('cacheDidUpdate')) + await t({ cacheName: c, oldResponse: f, newResponse: o.clone(), request: i, event: this.event }); + return !0; + } + async getCacheKey(t, e) { + const s = `${t.url} | ${e}`; + if (!this.h[s]) { + let n = t; + for (const t of this.iterateCallbacks('cacheKeyWillBeUsed')) + n = m(await t({ mode: e, request: n, event: this.event, params: this.params })); + this.h[s] = n; + } + return this.h[s]; + } + hasCallback(t) { + for (const e of this.u.plugins) if (t in e) return !0; + return !1; + } + async runCallbacks(t, e) { + for (const s of this.iterateCallbacks(t)) await s(e); + } + *iterateCallbacks(t) { + for (const e of this.u.plugins) + if ('function' == typeof e[t]) { + const s = this.R.get(e), + n = (n) => { + const r = Object.assign(Object.assign({}, n), { state: s }); + return e[t](r); + }; + yield n; + } + } + waitUntil(t) { + return this.p.push(t), t; + } + async doneWaiting() { + let t; + for (; (t = this.p.shift()); ) await t; + } + destroy() { + this.l.resolve(null); + } + async v(t) { + let e = t, + s = !1; + for (const t of this.iterateCallbacks('cacheWillUpdate')) + if (((e = (await t({ request: this.request, response: e, event: this.event })) || void 0), (s = !0), !e)) break; + return s || (e && 200 !== e.status && (e = void 0)), e; + } + } + class v { + constructor(t = {}) { + (this.cacheName = d(t.cacheName)), + (this.plugins = t.plugins || []), + (this.fetchOptions = t.fetchOptions), + (this.matchOptions = t.matchOptions); + } + handle(t) { + const [e] = this.handleAll(t); + return e; + } + handleAll(t) { + t instanceof FetchEvent && (t = { event: t, request: t.request }); + const e = t.event, + s = 'string' == typeof t.request ? new Request(t.request) : t.request, + n = 'params' in t ? t.params : void 0, + r = new R(this, { event: e, request: s, params: n }), + i = this.q(r, s, e); + return [i, this.D(i, r, s, e)]; + } + async q(t, e, n) { + let r; + await t.runCallbacks('handlerWillStart', { event: n, request: e }); + try { + if (((r = await this.U(e, t)), !r || 'error' === r.type)) throw new s('no-response', { url: e.url }); + } catch (s) { + if (s instanceof Error) + for (const i of t.iterateCallbacks('handlerDidError')) + if (((r = await i({ error: s, event: n, request: e })), r)) break; + if (!r) throw s; + } + for (const s of t.iterateCallbacks('handlerWillRespond')) r = await s({ event: n, request: e, response: r }); + return r; + } + async D(t, e, s, n) { + let r, i; + try { + r = await t; + } catch (i) {} + try { + await e.runCallbacks('handlerDidRespond', { event: n, request: s, response: r }), await e.doneWaiting(); + } catch (t) { + t instanceof Error && (i = t); + } + if ((await e.runCallbacks('handlerDidComplete', { event: n, request: s, response: r, error: i }), e.destroy(), i)) + throw i; + } + } + function b(t) { + t.then(() => {}); + } + function q() { + return ( + (q = Object.assign + ? Object.assign.bind() + : function (t) { + for (var e = 1; e < arguments.length; e++) { + var s = arguments[e]; + for (var n in s) Object.prototype.hasOwnProperty.call(s, n) && (t[n] = s[n]); + } + return t; + }), + q.apply(this, arguments) + ); + } + const D = (t, e) => e.some((e) => t instanceof e); + let U, x; + const L = new WeakMap(), + I = new WeakMap(), + C = new WeakMap(), + E = new WeakMap(), + N = new WeakMap(); + let O = { + get(t, e, s) { + if (t instanceof IDBTransaction) { + if ('done' === e) return I.get(t); + if ('objectStoreNames' === e) return t.objectStoreNames || C.get(t); + if ('store' === e) return s.objectStoreNames[1] ? void 0 : s.objectStore(s.objectStoreNames[0]); + } + return B(t[e]); + }, + set: (t, e, s) => ((t[e] = s), !0), + has: (t, e) => (t instanceof IDBTransaction && ('done' === e || 'store' === e)) || e in t, + }; + function T(t) { + return t !== IDBDatabase.prototype.transaction || 'objectStoreNames' in IDBTransaction.prototype + ? ( + x || (x = [IDBCursor.prototype.advance, IDBCursor.prototype.continue, IDBCursor.prototype.continuePrimaryKey]) + ).includes(t) + ? function (...e) { + return t.apply(P(this), e), B(L.get(this)); + } + : function (...e) { + return B(t.apply(P(this), e)); + } + : function (e, ...s) { + const n = t.call(P(this), e, ...s); + return C.set(n, e.sort ? e.sort() : [e]), B(n); + }; + } + function k(t) { + return 'function' == typeof t + ? T(t) + : (t instanceof IDBTransaction && + (function (t) { + if (I.has(t)) return; + const e = new Promise((e, s) => { + const n = () => { + t.removeEventListener('complete', r), + t.removeEventListener('error', i), + t.removeEventListener('abort', i); + }, + r = () => { + e(), n(); + }, + i = () => { + s(t.error || new DOMException('AbortError', 'AbortError')), n(); + }; + t.addEventListener('complete', r), t.addEventListener('error', i), t.addEventListener('abort', i); + }); + I.set(t, e); + })(t), + D(t, U || (U = [IDBDatabase, IDBObjectStore, IDBIndex, IDBCursor, IDBTransaction])) ? new Proxy(t, O) : t); + } + function B(t) { + if (t instanceof IDBRequest) + return (function (t) { + const e = new Promise((e, s) => { + const n = () => { + t.removeEventListener('success', r), t.removeEventListener('error', i); + }, + r = () => { + e(B(t.result)), n(); + }, + i = () => { + s(t.error), n(); + }; + t.addEventListener('success', r), t.addEventListener('error', i); + }); + return ( + e + .then((e) => { + e instanceof IDBCursor && L.set(e, t); + }) + .catch(() => {}), + N.set(e, t), + e + ); + })(t); + if (E.has(t)) return E.get(t); + const e = k(t); + return e !== t && (E.set(t, e), N.set(e, t)), e; + } + const P = (t) => N.get(t); + const M = ['get', 'getKey', 'getAll', 'getAllKeys', 'count'], + W = ['put', 'add', 'delete', 'clear'], + j = new Map(); + function S(t, e) { + if (!(t instanceof IDBDatabase) || e in t || 'string' != typeof e) return; + if (j.get(e)) return j.get(e); + const s = e.replace(/FromIndex$/, ''), + n = e !== s, + r = W.includes(s); + if (!(s in (n ? IDBIndex : IDBObjectStore).prototype) || (!r && !M.includes(s))) return; + const i = async function (t, ...e) { + const i = this.transaction(t, r ? 'readwrite' : 'readonly'); + let a = i.store; + return n && (a = a.index(e.shift())), (await Promise.all([a[s](...e), r && i.done]))[0]; + }; + return j.set(e, i), i; + } + O = ((t) => q({}, t, { get: (e, s, n) => S(e, s) || t.get(e, s, n), has: (e, s) => !!S(e, s) || t.has(e, s) }))(O); + try { + self['workbox:expiration:6.6.0'] && _(); + } catch (t) {} + const K = 'cache-entries', + A = (t) => { + const e = new URL(t, location.href); + return (e.hash = ''), e.href; + }; + class F { + constructor(t) { + (this._ = null), (this.L = t); + } + I(t) { + const e = t.createObjectStore(K, { keyPath: 'id' }); + e.createIndex('cacheName', 'cacheName', { unique: !1 }), e.createIndex('timestamp', 'timestamp', { unique: !1 }); + } + C(t) { + this.I(t), + this.L && + (function (t, { blocked: e } = {}) { + const s = indexedDB.deleteDatabase(t); + e && s.addEventListener('blocked', (t) => e(t.oldVersion, t)), B(s).then(() => {}); + })(this.L); + } + async setTimestamp(t, e) { + const s = { url: (t = A(t)), timestamp: e, cacheName: this.L, id: this.N(t) }, + n = (await this.getDb()).transaction(K, 'readwrite', { durability: 'relaxed' }); + await n.store.put(s), await n.done; + } + async getTimestamp(t) { + const e = await this.getDb(), + s = await e.get(K, this.N(t)); + return null == s ? void 0 : s.timestamp; + } + async expireEntries(t, e) { + const s = await this.getDb(); + let n = await s.transaction(K).store.index('timestamp').openCursor(null, 'prev'); + const r = []; + let i = 0; + for (; n; ) { + const s = n.value; + s.cacheName === this.L && ((t && s.timestamp < t) || (e && i >= e) ? r.push(n.value) : i++), + (n = await n.continue()); + } + const a = []; + for (const t of r) await s.delete(K, t.id), a.push(t.url); + return a; + } + N(t) { + return this.L + '|' + A(t); + } + async getDb() { + return ( + this._ || + (this._ = await (function (t, e, { blocked: s, upgrade: n, blocking: r, terminated: i } = {}) { + const a = indexedDB.open(t, e), + o = B(a); + return ( + n && + a.addEventListener('upgradeneeded', (t) => { + n(B(a.result), t.oldVersion, t.newVersion, B(a.transaction), t); + }), + s && a.addEventListener('blocked', (t) => s(t.oldVersion, t.newVersion, t)), + o + .then((t) => { + i && t.addEventListener('close', () => i()), + r && t.addEventListener('versionchange', (t) => r(t.oldVersion, t.newVersion, t)); + }) + .catch(() => {}), + o + ); + })('workbox-expiration', 1, { upgrade: this.C.bind(this) })), + this._ + ); + } + } + class H { + constructor(t, e = {}) { + (this.O = !1), + (this.T = !1), + (this.k = e.maxEntries), + (this.B = e.maxAgeSeconds), + (this.P = e.matchOptions), + (this.L = t), + (this.M = new F(t)); + } + async expireEntries() { + if (this.O) return void (this.T = !0); + this.O = !0; + const t = this.B ? Date.now() - 1e3 * this.B : 0, + e = await this.M.expireEntries(t, this.k), + s = await self.caches.open(this.L); + for (const t of e) await s.delete(t, this.P); + (this.O = !1), this.T && ((this.T = !1), b(this.expireEntries())); + } + async updateTimestamp(t) { + await this.M.setTimestamp(t, Date.now()); + } + async isURLExpired(t) { + if (this.B) { + const e = await this.M.getTimestamp(t), + s = Date.now() - 1e3 * this.B; + return void 0 === e || e < s; + } + return !1; + } + async delete() { + (this.T = !1), await this.M.expireEntries(1 / 0); + } + } + try { + self['workbox:range-requests:6.6.0'] && _(); + } catch (t) {} + async function $(t, e) { + try { + if (206 === e.status) return e; + const n = t.headers.get('range'); + if (!n) throw new s('no-range-header'); + const r = (function (t) { + const e = t.trim().toLowerCase(); + if (!e.startsWith('bytes=')) throw new s('unit-must-be-bytes', { normalizedRangeHeader: e }); + if (e.includes(',')) throw new s('single-range-only', { normalizedRangeHeader: e }); + const n = /(\d*)-(\d*)/.exec(e); + if (!n || (!n[1] && !n[2])) throw new s('invalid-range-values', { normalizedRangeHeader: e }); + return { start: '' === n[1] ? void 0 : Number(n[1]), end: '' === n[2] ? void 0 : Number(n[2]) }; + })(n), + i = await e.blob(), + a = (function (t, e, n) { + const r = t.size; + if ((n && n > r) || (e && e < 0)) throw new s('range-not-satisfiable', { size: r, end: n, start: e }); + let i, a; + return ( + void 0 !== e && void 0 !== n + ? ((i = e), (a = n + 1)) + : void 0 !== e && void 0 === n + ? ((i = e), (a = r)) + : void 0 !== n && void 0 === e && ((i = r - n), (a = r)), + { start: i, end: a } + ); + })(i, r.start, r.end), + o = i.slice(a.start, a.end), + c = o.size, + h = new Response(o, { status: 206, statusText: 'Partial Content', headers: e.headers }); + return ( + h.headers.set('Content-Length', String(c)), + h.headers.set('Content-Range', `bytes ${a.start}-${a.end - 1}/${i.size}`), + h + ); + } catch (t) { + return new Response('', { status: 416, statusText: 'Range Not Satisfiable' }); + } + } + function z(t, e) { + const s = e(); + return t.waitUntil(s), s; + } + try { + self['workbox:precaching:6.6.0'] && _(); + } catch (t) {} + function G(t) { + if (!t) throw new s('add-to-cache-list-unexpected-type', { entry: t }); + if ('string' == typeof t) { + const e = new URL(t, location.href); + return { cacheKey: e.href, url: e.href }; + } + const { revision: e, url: n } = t; + if (!n) throw new s('add-to-cache-list-unexpected-type', { entry: t }); + if (!e) { + const t = new URL(n, location.href); + return { cacheKey: t.href, url: t.href }; + } + const r = new URL(n, location.href), + i = new URL(n, location.href); + return r.searchParams.set('__WB_REVISION__', e), { cacheKey: r.href, url: i.href }; + } + class V { + constructor() { + (this.updatedURLs = []), + (this.notUpdatedURLs = []), + (this.handlerWillStart = async ({ request: t, state: e }) => { + e && (e.originalRequest = t); + }), + (this.cachedResponseWillBeUsed = async ({ event: t, state: e, cachedResponse: s }) => { + if ('install' === t.type && e && e.originalRequest && e.originalRequest instanceof Request) { + const t = e.originalRequest.url; + s ? this.notUpdatedURLs.push(t) : this.updatedURLs.push(t); + } + return s; + }); + } + } + class J { + constructor({ precacheController: t }) { + (this.cacheKeyWillBeUsed = async ({ request: t, params: e }) => { + const s = (null == e ? void 0 : e.cacheKey) || this.W.getCacheKeyForURL(t.url); + return s ? new Request(s, { headers: t.headers }) : t; + }), + (this.W = t); + } + } + let Q, X; + async function Y(t, e) { + let n = null; + if (t.url) { + n = new URL(t.url).origin; + } + if (n !== self.location.origin) throw new s('cross-origin-copy-response', { origin: n }); + const r = t.clone(), + i = { headers: new Headers(r.headers), status: r.status, statusText: r.statusText }, + a = e ? e(i) : i, + o = (function () { + if (void 0 === Q) { + const t = new Response(''); + if ('body' in t) + try { + new Response(t.body), (Q = !0); + } catch (t) { + Q = !1; + } + Q = !1; + } + return Q; + })() + ? r.body + : await r.blob(); + return new Response(o, a); + } + class Z extends v { + constructor(t = {}) { + (t.cacheName = w(t.cacheName)), + super(t), + (this.j = !1 !== t.fallbackToNetwork), + this.plugins.push(Z.copyRedirectedCacheableResponsesPlugin); + } + async U(t, e) { + const s = await e.cacheMatch(t); + return s || (e.event && 'install' === e.event.type ? await this.S(t, e) : await this.K(t, e)); + } + async K(t, e) { + let n; + const r = e.params || {}; + if (!this.j) throw new s('missing-precache-entry', { cacheName: this.cacheName, url: t.url }); + { + const s = r.integrity, + i = t.integrity, + a = !i || i === s; + (n = await e.fetch(new Request(t, { integrity: 'no-cors' !== t.mode ? i || s : void 0 }))), + s && a && 'no-cors' !== t.mode && (this.A(), await e.cachePut(t, n.clone())); + } + return n; + } + async S(t, e) { + this.A(); + const n = await e.fetch(t); + if (!(await e.cachePut(t, n.clone()))) throw new s('bad-precaching-response', { url: t.url, status: n.status }); + return n; + } + A() { + let t = null, + e = 0; + for (const [s, n] of this.plugins.entries()) + n !== Z.copyRedirectedCacheableResponsesPlugin && + (n === Z.defaultPrecacheCacheabilityPlugin && (t = s), n.cacheWillUpdate && e++); + 0 === e + ? this.plugins.push(Z.defaultPrecacheCacheabilityPlugin) + : e > 1 && null !== t && this.plugins.splice(t, 1); + } + } + (Z.defaultPrecacheCacheabilityPlugin = { + cacheWillUpdate: async ({ response: t }) => (!t || t.status >= 400 ? null : t), + }), + (Z.copyRedirectedCacheableResponsesPlugin = { + cacheWillUpdate: async ({ response: t }) => (t.redirected ? await Y(t) : t), + }); + class tt { + constructor({ cacheName: t, plugins: e = [], fallbackToNetwork: s = !0 } = {}) { + (this.F = new Map()), + (this.H = new Map()), + (this.$ = new Map()), + (this.u = new Z({ + cacheName: w(t), + plugins: [...e, new J({ precacheController: this })], + fallbackToNetwork: s, + })), + (this.install = this.install.bind(this)), + (this.activate = this.activate.bind(this)); + } + get strategy() { + return this.u; + } + precache(t) { + this.addToCacheList(t), + this.G || + (self.addEventListener('install', this.install), + self.addEventListener('activate', this.activate), + (this.G = !0)); + } + addToCacheList(t) { + const e = []; + for (const n of t) { + 'string' == typeof n ? e.push(n) : n && void 0 === n.revision && e.push(n.url); + const { cacheKey: t, url: r } = G(n), + i = 'string' != typeof n && n.revision ? 'reload' : 'default'; + if (this.F.has(r) && this.F.get(r) !== t) + throw new s('add-to-cache-list-conflicting-entries', { firstEntry: this.F.get(r), secondEntry: t }); + if ('string' != typeof n && n.integrity) { + if (this.$.has(t) && this.$.get(t) !== n.integrity) + throw new s('add-to-cache-list-conflicting-integrities', { url: r }); + this.$.set(t, n.integrity); + } + if ((this.F.set(r, t), this.H.set(r, i), e.length > 0)) { + const t = `Workbox is precaching URLs without revision info: ${e.join(', ')}\nThis is generally NOT safe. Learn more at https://bit.ly/wb-precache`; + console.warn(t); + } + } + } + install(t) { + return z(t, async () => { + const e = new V(); + this.strategy.plugins.push(e); + for (const [e, s] of this.F) { + const n = this.$.get(s), + r = this.H.get(e), + i = new Request(e, { integrity: n, cache: r, credentials: 'same-origin' }); + await Promise.all(this.strategy.handleAll({ params: { cacheKey: s }, request: i, event: t })); + } + const { updatedURLs: s, notUpdatedURLs: n } = e; + return { updatedURLs: s, notUpdatedURLs: n }; + }); + } + activate(t) { + return z(t, async () => { + const t = await self.caches.open(this.strategy.cacheName), + e = await t.keys(), + s = new Set(this.F.values()), + n = []; + for (const r of e) s.has(r.url) || (await t.delete(r), n.push(r.url)); + return { deletedURLs: n }; + }); + } + getURLsToCacheKeys() { + return this.F; + } + getCachedURLs() { + return [...this.F.keys()]; + } + getCacheKeyForURL(t) { + const e = new URL(t, location.href); + return this.F.get(e.href); + } + getIntegrityForCacheKey(t) { + return this.$.get(t); + } + async matchPrecache(t) { + const e = t instanceof Request ? t.url : t, + s = this.getCacheKeyForURL(e); + if (s) { + return (await self.caches.open(this.strategy.cacheName)).match(s); + } + } + createHandlerBoundToURL(t) { + const e = this.getCacheKeyForURL(t); + if (!e) throw new s('non-precached-url', { url: t }); + return (s) => ( + (s.request = new Request(t)), (s.params = Object.assign({ cacheKey: e }, s.params)), this.strategy.handle(s) + ); + } + } + const et = () => (X || (X = new tt()), X); + class st extends r { + constructor(t, e) { + super(({ request: s }) => { + const n = t.getURLsToCacheKeys(); + for (const r of (function* ( + t, + { + ignoreURLParametersMatching: e = [/^utm_/, /^fbclid$/], + directoryIndex: s = 'index.html', + cleanURLs: n = !0, + urlManipulation: r, + } = {} + ) { + const i = new URL(t, location.href); + (i.hash = ''), yield i.href; + const a = (function (t, e = []) { + for (const s of [...t.searchParams.keys()]) e.some((t) => t.test(s)) && t.searchParams.delete(s); + return t; + })(i, e); + if ((yield a.href, s && a.pathname.endsWith('/'))) { + const t = new URL(a.href); + (t.pathname += s), yield t.href; + } + if (n) { + const t = new URL(a.href); + (t.pathname += '.html'), yield t.href; + } + if (r) { + const t = r({ url: i }); + for (const e of t) yield e.href; + } + })(s.url, e)) { + const e = n.get(r); + if (e) { + return { cacheKey: e, integrity: t.getIntegrityForCacheKey(e) }; + } + } + }, t.strategy); + } + } + (t.CacheFirst = class extends v { + async U(t, e) { + let n, + r = await e.cacheMatch(t); + if (!r) + try { + r = await e.fetchAndCachePut(t); + } catch (t) { + t instanceof Error && (n = t); + } + if (!r) throw new s('no-response', { url: t.url, error: n }); + return r; + } + }), + (t.ExpirationPlugin = class { + constructor(t = {}) { + (this.cachedResponseWillBeUsed = async ({ event: t, request: e, cacheName: s, cachedResponse: n }) => { + if (!n) return null; + const r = this.V(n), + i = this.J(s); + b(i.expireEntries()); + const a = i.updateTimestamp(e.url); + if (t) + try { + t.waitUntil(a); + } catch (t) {} + return r ? n : null; + }), + (this.cacheDidUpdate = async ({ cacheName: t, request: e }) => { + const s = this.J(t); + await s.updateTimestamp(e.url), await s.expireEntries(); + }), + (this.X = t), + (this.B = t.maxAgeSeconds), + (this.Y = new Map()), + t.purgeOnQuotaError && + (function (t) { + g.add(t); + })(() => this.deleteCacheAndMetadata()); + } + J(t) { + if (t === d()) throw new s('expire-custom-caches-only'); + let e = this.Y.get(t); + return e || ((e = new H(t, this.X)), this.Y.set(t, e)), e; + } + V(t) { + if (!this.B) return !0; + const e = this.Z(t); + if (null === e) return !0; + return e >= Date.now() - 1e3 * this.B; + } + Z(t) { + if (!t.headers.has('date')) return null; + const e = t.headers.get('date'), + s = new Date(e).getTime(); + return isNaN(s) ? null : s; + } + async deleteCacheAndMetadata() { + for (const [t, e] of this.Y) await self.caches.delete(t), await e.delete(); + this.Y = new Map(); + } + }), + (t.NetworkFirst = class extends v { + constructor(t = {}) { + super(t), + this.plugins.some((t) => 'cacheWillUpdate' in t) || this.plugins.unshift(u), + (this.tt = t.networkTimeoutSeconds || 0); + } + async U(t, e) { + const n = [], + r = []; + let i; + if (this.tt) { + const { id: s, promise: a } = this.et({ request: t, logs: n, handler: e }); + (i = s), r.push(a); + } + const a = this.st({ timeoutId: i, request: t, logs: n, handler: e }); + r.push(a); + const o = await e.waitUntil((async () => (await e.waitUntil(Promise.race(r))) || (await a))()); + if (!o) throw new s('no-response', { url: t.url }); + return o; + } + et({ request: t, logs: e, handler: s }) { + let n; + return { + promise: new Promise((e) => { + n = setTimeout(async () => { + e(await s.cacheMatch(t)); + }, 1e3 * this.tt); + }), + id: n, + }; + } + async st({ timeoutId: t, request: e, logs: s, handler: n }) { + let r, i; + try { + i = await n.fetchAndCachePut(e); + } catch (t) { + t instanceof Error && (r = t); + } + return t && clearTimeout(t), (!r && i) || (i = await n.cacheMatch(e)), i; + } + }), + (t.RangeRequestsPlugin = class { + constructor() { + this.cachedResponseWillBeUsed = async ({ request: t, cachedResponse: e }) => + e && t.headers.has('range') ? await $(t, e) : e; + } + }), + (t.StaleWhileRevalidate = class extends v { + constructor(t = {}) { + super(t), this.plugins.some((t) => 'cacheWillUpdate' in t) || this.plugins.unshift(u); + } + async U(t, e) { + const n = e.fetchAndCachePut(t).catch(() => {}); + e.waitUntil(n); + let r, + i = await e.cacheMatch(t); + if (i); + else + try { + i = await n; + } catch (t) { + t instanceof Error && (r = t); + } + if (!i) throw new s('no-response', { url: t.url, error: r }); + return i; + } + }), + (t.cleanupOutdatedCaches = function () { + self.addEventListener('activate', (t) => { + const e = w(); + t.waitUntil( + (async (t, e = '-precache-') => { + const s = (await self.caches.keys()).filter( + (s) => s.includes(e) && s.includes(self.registration.scope) && s !== t + ); + return await Promise.all(s.map((t) => self.caches.delete(t))), s; + })(e).then((t) => {}) + ); + }); + }), + (t.clientsClaim = function () { + self.addEventListener('activate', () => self.clients.claim()); + }), + (t.precacheAndRoute = function (t, e) { + !(function (t) { + et().precache(t); + })(t), + (function (t) { + const e = et(); + h(new st(e, t)); + })(e); + }), + (t.registerRoute = h); +}); diff --git a/src/app/(home)/_components/Categories.css.ts b/src/app/(home)/_components/Categories.css.ts new file mode 100644 index 00000000..a94880a3 --- /dev/null +++ b/src/app/(home)/_components/Categories.css.ts @@ -0,0 +1,53 @@ +import { style } from '@vanilla-extract/css'; + +export const gridContainer = style({ + padding: '0 16px', + + width: '100%', + position: 'relative', +}); + +export const list = style({ + display: 'inline-flex', + gap: '8px', + flexWrap: 'wrap', + listStyle: 'none', + padding: 0, + margin: 0, +}); + +export const item = style({ + padding: '6px 12px', + flexShrink: 0, + + borderRadius: '20px', + backgroundColor: '#fff', + fontWeight: '500', + fontSize: '1.4rem', + color: '#8599AD', +}); + +export const selectedItem = style([ + item, + { + backgroundColor: '#E3EEFF', + color: '#3D95FF', + }, +]); + +export const alignText = style({ + flexGrow: 1, +}); + +export const orderDropdown = style({ + display: 'flex', + alignItems: 'center', + gap: '8px', + float: 'right', +}); + +export const order = style({ + fontWeight: '400', + fontSize: '1.6rem', + color: '#3C4F76', +}); diff --git a/src/app/(home)/_components/Categories.tsx b/src/app/(home)/_components/Categories.tsx new file mode 100644 index 00000000..7f133f29 --- /dev/null +++ b/src/app/(home)/_components/Categories.tsx @@ -0,0 +1,54 @@ +'use client'; + +import { useState } from 'react'; +import { useQuery } from '@tanstack/react-query'; + +import { CategoryType } from '@/lib/types/categoriesType'; +import { QUERY_KEYS } from '@/lib/constants/queryKeys'; +import getCategories from '@/app/_api/category/getCategories'; + +import * as styles from './Categories.css'; +import ChevronDown from '/public/icons/ver3/chevron_down.svg'; + +interface CategoriesType { + onClick: (name: string) => void; +} + +function Categories({ onClick }: CategoriesType) { + const [selectedCategoryCode, setSelectedCategoryCode] = useState('0'); + + const { data, isFetching } = useQuery({ + queryKey: [QUERY_KEYS.getCategories], + queryFn: getCategories, + }); + + const handleClickCategory = (codeNum: string, name: string) => { + setSelectedCategoryCode(codeNum); + onClick(name); + }; + + return ( +
+
    + {data?.map((el) => { + return ( +
  • + +
  • + ); + })} +
+ {/*
+ 정렬 + +
*/} +
+ ); +} + +export default Categories; diff --git a/src/app/(home)/_components/Feed.tsx b/src/app/(home)/_components/Feed.tsx new file mode 100644 index 00000000..0f9b7448 --- /dev/null +++ b/src/app/(home)/_components/Feed.tsx @@ -0,0 +1,23 @@ +'use client'; + +import { useTab } from '@/store/useTab'; + +import HomeTab from '@/app/(home)/_components/HomeTab'; +import RecommendationFeed from '@/app/(home)/_components/RecommendationFeed'; +import FollowingFeed from '@/app/(home)/_components/FollowingFeed'; +import RecentFeed from '@/app/(home)/_components/RecentFeed'; + +function Feed() { + const { currentTab } = useTab(); + + return ( +
+ + {currentTab === 'recommendation' && } + {currentTab === 'recent' && } + {currentTab === 'following' && } +
+ ); +} + +export default Feed; diff --git a/src/app/(home)/_components/FeedLists.css.ts b/src/app/(home)/_components/FeedLists.css.ts new file mode 100644 index 00000000..70e54f0e --- /dev/null +++ b/src/app/(home)/_components/FeedLists.css.ts @@ -0,0 +1,136 @@ +import { style, createVar, keyframes } from '@vanilla-extract/css'; +import { vars } from '@/styles/__theme.css'; +import { headlineSmall } from '@/styles/__font.css'; + +export const listBackground = createVar(); + +export const wrapperOuter = style({ + padding: '0 16px 30px', + marginTop: '12px', + + display: 'flex', + flexDirection: 'column', +}); + +export const titleWrapper = style({ + marginBottom: '26px', + + display: 'flex', + alignItems: 'baseline', + gap: '5px', +}); + +export const sectionTitle = style([ + headlineSmall, + { + fontWeight: 600, + }, +]); + +const listWrapperHoverAnimation = keyframes({ + '0%': { + transform: 'scale(1)', + }, + '100%': { + transform: 'scale(1.01)', + }, +}); + +export const listWrapper = style({ + width: '100%', + marginBottom: '35px', + padding: '30px 24px 14px', + + position: 'relative', + + display: 'flex', + flexDirection: 'column', + borderRadius: '24px', + backgroundColor: '#fff', + + ':hover': { + animation: `${listWrapperHoverAnimation} 0.1s forwards`, + boxShadow: 'rgba(0, 0, 0, 0.04) 0px 3px 5px', + }, +}); + +export const listTopWrapper = style({ + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', + + marginBottom: '8px', +}); + +export const version = style({ + padding: '6px 12px', + + fontWeight: '400', + letterSpacing: '-3%', + fontSize: '1.4rem', + color: '#3D95FF', + backgroundColor: '#EEF6FF', + borderRadius: '20px', +}); + +export const listInformationWrapper = style({ + marginBottom: '20px', + + display: 'flex', + flexDirection: 'column', +}); + +export const listTitle = style({ + color: '#3E4455', + wordBreak: 'break-word', + fontWeight: '700', + fontSize: '2rem', + letterSpacing: '-3%', +}); + +export const listDescription = style({ + marginTop: '13px', + + fontWeight: '400', + fontSize: '1.6rem', + color: '#3E4455', + wordBreak: 'break-word', +}); + +export const ownerInformationWrapper = style({ + display: 'flex', + justifyContent: 'flex-start', + alignItems: 'center', + gap: '8px', +}); + +export const ownerNicknameText = style({ + color: '#676B75', + fontSize: '1.6rem', + fontWeight: '500', + letterSpacing: '-3%', +}); + +export const profileImageWrapper = style({ + width: '30px', + height: '30px', + + position: 'relative', +}); + +export const ownerProfileImage = style({ + borderRadius: '50%', +}); + +export const simpleListWrapper = style({ + height: 'auto', + padding: '20px 16px', + marginBottom: '16px', + + display: 'flex', + flexDirection: 'column', + gap: '10px', + + borderTop: `1px solid ${vars.color.gray5}`, + backgroundColor: vars.color.white, +}); diff --git a/src/app/(home)/_components/FeedLists.tsx b/src/app/(home)/_components/FeedLists.tsx new file mode 100644 index 00000000..e9730d65 --- /dev/null +++ b/src/app/(home)/_components/FeedLists.tsx @@ -0,0 +1,171 @@ +'use client'; + +import Image from 'next/image'; +import Link from 'next/link'; +import { useInfiniteQuery } from '@tanstack/react-query'; +import { useMemo } from 'react'; +import { assignInlineVars } from '@vanilla-extract/dynamic'; + +import SimpleList from '@/components/SimpleList/SimpleList'; +import getRecentLists from '@/app/_api/home/getRecentLists'; +import getFollowingLists from '@/app/_api/home/getFollowingLists'; +import { QUERY_KEYS } from '@/lib/constants/queryKeys'; +import useIntersectionObserver from '@/hooks/useIntersectionObserver'; +import * as styles from './FeedLists.css'; +import { exploreBackgroundColors } from '@/lib/constants/exploreListBackgroundColor'; +import fallbackProfile from '/public/images/fallback_profileImage.webp'; +import { LIST_DATA as feedLists } from '@/app/(home)/mock/mockdata'; +import NoDataComponent from '@/components/NoData/NoDataComponent'; +import NoDataButton from '@/components/NoData/NoDataButton'; + +import { commonLocale } from '@/components/locale'; +import { useLanguage } from '@/store/useLanguage'; +import { useTab } from '@/store/useTab'; + +interface FeedListsType { + category?: string; + tab?: 'recent' | 'following'; +} + +function FeedLists({ category, tab = 'recent' }: FeedListsType) { + const current_QueryKey = tab === 'recent' ? [QUERY_KEYS.getRecentLists, category] : [QUERY_KEYS.getFollowingLists]; + const { setCurrentTab } = useTab(); + + //리스트 무한스크롤 리액트 쿼리 함수 + const { + data: result, + hasNextPage, + fetchNextPage, + isFetching, + } = useInfiniteQuery({ + queryKey: current_QueryKey, + queryFn: ({ pageParam: cursorUpdatedDate }) => { + if (tab === 'recent') { + return getRecentLists({ cursorUpdatedDate, category }); + } else { + return getFollowingLists({ cursorUpdatedDate }); + } + }, + initialPageParam: null, + getNextPageParam: (lastPage) => (lastPage.hasNext ? lastPage.cursorUpdatedDate : null), + }); + + const ref = useIntersectionObserver(() => { + if (hasNextPage) { + fetchNextPage(); + } + }); + + //리스트 변수화 + const feedLists = useMemo(() => { + const list = result ? result.pages.flatMap(({ lists }) => lists) : []; + return list; + }, [result]); + + const handleClickNoDataButton = () => { + setCurrentTab('recommendation'); + }; + + // if (!result) { + // return ( + //
+ // + //
+ // ); + // } + console.log(category); + + console.log(feedLists); + + return ( +
+ {isFetching ? ( +
불러오는 중입니다..
+ ) : ( +
    + {feedLists && feedLists?.length !== 0 ? ( + feedLists?.map((item, index) => { + return ( + +
  • + +
  • + + ); + }) + ) : ( +
    + {tab === 'following' && ( + 추천 리스터 보러가기} + /> + )} +
    + )} +
    +
+ )} +
+ ); +} + +export default FeedLists; + +/**@Todo 아이템 타입 정리 */ +interface FeedListItemType { + index: number; + item: any; +} + +function FeedListItem({ item, index }: FeedListItemType) { + const { language } = useLanguage(); + + const COLOR_INDEX = (num: number) => num % 5; + + return ( +
+
+
+ + {item?.ownerProfileImage ? ( + {commonLocale[language].listOwnerImage} + ) : ( + {commonLocale[language].listOwnerImage} + )} + +
{item.ownerNickname}
+
+
{`업데이트 ${item.updateCount}회째`}
+
+
+
{item.title}
+
{item.description}
+
+
+ +
+
+ ); +} diff --git a/src/app/(home)/_components/FollowingFeed.tsx b/src/app/(home)/_components/FollowingFeed.tsx new file mode 100644 index 00000000..fbabad23 --- /dev/null +++ b/src/app/(home)/_components/FollowingFeed.tsx @@ -0,0 +1,46 @@ +'use client'; + +import { useState, useEffect } from 'react'; + +import FeedLists from '@/app/(home)/_components/FeedLists'; +import NoDataComponent from '@/components/NoData/NoDataComponent'; +import NoDataButton from '@/components/NoData/NoDataButton'; +import Modal from '@/components/Modal/Modal'; +import LoginModal from '@/components/login/LoginModal'; + +import useBooleanOutput from '@/hooks/useBooleanOutput'; +import { getCookie } from '@/lib/utils/cookie'; + +function FollowingFeed() { + const [isLoggedIn, setIsLoggedIn] = useState(false); + const { isOn, handleSetOn, handleSetOff } = useBooleanOutput(); + + const handleClickNoDataButton = () => { + handleSetOn(); + }; + + useEffect(() => { + const accessToken = getCookie('accessToken'); + setIsLoggedIn(accessToken !== null && accessToken !== undefined); + }, []); + + return ( + <> + {!isLoggedIn ? ( + 로그인 하러가기} + /> + ) : ( + + )} + {isOn && ( + + + + )} + + ); +} + +export default FollowingFeed; diff --git a/src/app/(home)/_components/Header.css.ts b/src/app/(home)/_components/Header.css.ts new file mode 100644 index 00000000..9dc1a701 --- /dev/null +++ b/src/app/(home)/_components/Header.css.ts @@ -0,0 +1,65 @@ +import { style } from '@vanilla-extract/css'; +import { vars } from '@/styles/theme.css'; + +export const headerWrapper = style({ + width: '100%', + height: '40px', + padding: '10px 16px', + margin: '0 0 12px', +}); + +export const entireWrapper = style({ + display: 'flex', + alignItems: 'centre', + justifyContent: 'space-between', +}); + +export const homeTitleContainer = style({ + display: 'flex', + alignItems: 'center', + gap: '10px', +}); + +export const homeTitle = style({ + fontWeight: '700', + fontSize: '2rem', + color: '#323A43', +}); + +export const authButton = style({ + padding: '4px 6px', + + borderRadius: '20px', + backgroundColor: vars.color.white, + color: '#637587', + fontWeight: '600', + letterSpacing: '-3%', +}); + +export const iconWrapper = style({ + display: 'flex', + alignItems: 'center', + gap: '9px', +}); + +export const iconWrapperForMember = style({ + display: 'flex', + alignItems: 'center', + gap: '9px', +}); + +export const profileImageWrapper = style({ + width: '20px', + height: '20px', + + position: 'relative', +}); + +export const profileImage = style({ + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + + backgroundColor: vars.color.white, + borderRadius: '9999px', +}); diff --git a/src/app/(home)/_components/Header.tsx b/src/app/(home)/_components/Header.tsx new file mode 100644 index 00000000..80fda046 --- /dev/null +++ b/src/app/(home)/_components/Header.tsx @@ -0,0 +1,110 @@ +/** + * 홈, 검색 아이콘, 검색창, 로그인/로그아웃 버튼(비회원), 벨/유저 아이콘(회원) + */ + +import { useState, useEffect } from 'react'; +import Link from 'next/link'; +import Image from 'next/image'; +import { useQuery } from '@tanstack/react-query'; + +import SearchBarComponent from '@/components/SearchBar'; +import Modal from '@/components/Modal/Modal'; +import LoginModal from '@/components/login/LoginModal'; + +import useBooleanOutput from '@/hooks/useBooleanOutput'; +import { getCookie } from '@/lib/utils/cookie'; +import { UserType } from '@/lib/types/userProfileType'; +import getUserOne from '@/app/_api/user/getUserOne'; +import { useUser } from '@/store/useUser'; +import { QUERY_KEYS } from '@/lib/constants/queryKeys'; + +import * as styles from './Header.css'; +import SearchIcon from '/public/icons/ver3/search.svg'; +import BellIcon from '/public/icons/ver3/bell.svg'; +import Avatar from '/public/icons/ver3/Avatar.svg'; + +function Header() { + const [isSearchBarOpened, setIsSearchBarOpened] = useState(false); + const { isOn, handleSetOn, handleSetOff } = useBooleanOutput(); + const [isLoggedIn, setIsLoggedIn] = useState(false); + + const { user } = useUser(); + + const { data: userData } = useQuery({ + queryKey: [QUERY_KEYS.userOne, user.id], + queryFn: () => getUserOne(user.id as number), + enabled: !!user.id, + }); + + const handleAuthButtonClick = () => { + handleSetOn(); + }; + + const handleInactivateSearchBar = () => { + setIsSearchBarOpened(false); + }; + + const handleSearchIconClick = () => { + setIsSearchBarOpened(true); + }; + + useEffect(() => { + const accessToken = getCookie('accessToken'); + setIsLoggedIn(accessToken !== null && accessToken !== undefined); + }, []); + + return ( +
+ {isSearchBarOpened && } + {!isSearchBarOpened && ( +
+
+

+ {!isLoggedIn && ( + + )} +
+
+ + {isLoggedIn && ( +
+ + + + + {userData && userData.profileImageUrl ? ( +
+ 프로필 이미지 +
+ ) : ( + + )} + +
+ )} +
+
+ )} + {isOn && ( + + + + )} +
+ ); +} + +export default Header; diff --git a/src/app/(home)/_components/HomeTab.css.ts b/src/app/(home)/_components/HomeTab.css.ts new file mode 100644 index 00000000..9733e233 --- /dev/null +++ b/src/app/(home)/_components/HomeTab.css.ts @@ -0,0 +1,33 @@ +import { style } from '@vanilla-extract/css'; +import { vars } from '@/styles/theme.css'; + +export const wrapper = style({ + padding: '0 16px', + marginBottom: '16px', + + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', +}); + +export const buttonsWrapper = style({ + display: 'flex', + alignItems: 'center', + gap: '18px', +}); + +export const tabButton = style({ + fontWeight: '400', + fontSize: '1.6rem', + color: '#8599AD', +}); + +export const activeTab = style([ + tabButton, + { + padding: '6px 12px', + color: '#ffffff', + backgroundColor: '#3D95FF', + borderRadius: '20px', + }, +]); diff --git a/src/app/(home)/_components/HomeTab.tsx b/src/app/(home)/_components/HomeTab.tsx new file mode 100644 index 00000000..7978dbcf --- /dev/null +++ b/src/app/(home)/_components/HomeTab.tsx @@ -0,0 +1,36 @@ +'use client'; + +import { useTab } from '@/store/useTab'; + +import * as styles from './HomeTab.css'; + +function HomeTab() { + const { currentTab, setCurrentTab } = useTab(); + + return ( + + ); +} + +export default HomeTab; diff --git a/src/app/(home)/_components/RecentFeed.css.ts b/src/app/(home)/_components/RecentFeed.css.ts new file mode 100644 index 00000000..6c8ed0f3 --- /dev/null +++ b/src/app/(home)/_components/RecentFeed.css.ts @@ -0,0 +1,29 @@ +import { style } from '@vanilla-extract/css'; + +export const wrapper = style({ + display: 'flex', + flexDirection: 'column', +}); + +export const listEndWrapper = style({ + display: 'flex', + flexDirection: 'column', + gap: '8px', + + marginBottom: '90px', + + alignItems: 'center', + justifyContent: 'center', +}); + +export const listEndMessage = style({ + fontWeight: '600', + fontSize: '19px', + color: '##323A43', +}); + +export const listPolicy = style({ + fontWeight: '600', + fontSize: '1.5rem', + color: '#8599AD', +}); diff --git a/src/app/(home)/_components/RecentFeed.tsx b/src/app/(home)/_components/RecentFeed.tsx new file mode 100644 index 00000000..a2331d49 --- /dev/null +++ b/src/app/(home)/_components/RecentFeed.tsx @@ -0,0 +1,29 @@ +'use client'; + +import { useState } from 'react'; + +import FeedLists from '@/app/(home)/_components/FeedLists'; + +import * as styles from './RecentFeed.css'; +import Categories from './Categories'; + +function RecentFeed() { + const [selectedCategory, setSelectedCategory] = useState('entire'); + + const handleClickCategory = (name: string) => { + setSelectedCategory(name); + }; + + return ( +
+ + +
+
최근 리스트를 모두 확인했어요!
+
30일 이내 수정 및 생성된 리스트
+
+
+ ); +} + +export default RecentFeed; diff --git a/src/app/(home)/_components/RecommendationFeed.tsx b/src/app/(home)/_components/RecommendationFeed.tsx new file mode 100644 index 00000000..65b6cb72 --- /dev/null +++ b/src/app/(home)/_components/RecommendationFeed.tsx @@ -0,0 +1,15 @@ +import UsersRecommendation from '@/components/exploreComponents/RecommendedUsers'; +import TopicsRecommendation from '@/app/(home)/_components/TopicsRecommendation'; +import TrendingList from '@/app/(home)/_components/TrendingLists'; + +function RecommendationFeed() { + return ( + <> + + + + + ); +} + +export default RecommendationFeed; diff --git a/src/app/(home)/_components/TopicsRecommendation.css.ts b/src/app/(home)/_components/TopicsRecommendation.css.ts new file mode 100644 index 00000000..dcd22e27 --- /dev/null +++ b/src/app/(home)/_components/TopicsRecommendation.css.ts @@ -0,0 +1,67 @@ +import { style } from '@vanilla-extract/css'; +import { vars } from '@/styles/theme.css'; + +export const wrapper = style({ + marginBottom: '24px', + + display: 'flex', + flexDirection: 'column', + gap: '15px', +}); + +export const sectionTitleWrapper = style({ + padding: '0 16px', + + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', +}); + +export const sectionTitle = style({ + color: '#323A43', + fontSize: '1.8rem', + fontWeight: 700, + letterSpacing: '-0.54px', +}); + +export const itemsWrapper = style({ + padding: '0 0 0 16px', + + display: 'flex', + alignItems: 'center', + gap: '12px', + + overflowX: 'scroll', + '::-webkit-scrollbar': { + display: 'none', + }, +}); + +export const topic = style({ + padding: '14px', + + flexShrink: 0, + textWrap: 'nowrap', + + backgroundColor: vars.color.white, + borderRadius: '20px', + fontWeight: '400', + fontSize: '1.5rem', + letterSpacing: '-3%', + color: '#292929', +}); + +export const topicButton = style([ + topic, + { + backgroundColor: '#3D95FF', + color: vars.color.white, + }, +]); + +export const showMoreButton = style({ + color: '#637587', + fontWeight: '400', + fontSize: '1.4rem', + letterSpacing: '-3%', +}); diff --git a/src/app/(home)/_components/TopicsRecommendation.tsx b/src/app/(home)/_components/TopicsRecommendation.tsx new file mode 100644 index 00000000..21a94d6d --- /dev/null +++ b/src/app/(home)/_components/TopicsRecommendation.tsx @@ -0,0 +1,38 @@ +import Link from 'next/link'; + +import * as styles from './TopicsRecommendation.css'; +/**목데이터 지우기 */ +import { TopicsData } from '../mock/mockdata'; + +function TopicsRecommendation() { + return ( +
+
+
이 주제로 만들어 보세요
+ + 더보기 + +
+
    + {TopicsData.map((el, idx) => { + return ( +
  • + +
  • + ); + })} + +
+
+ ); +} + +export default TopicsRecommendation; + +interface TopicItemProps { + title: string; +} + +function TopicItem({ title }: TopicItemProps) { + return
{title}
; +} diff --git a/src/components/exploreComponents/TrendingLists.css.ts b/src/app/(home)/_components/TrendingLists.css.ts similarity index 71% rename from src/components/exploreComponents/TrendingLists.css.ts rename to src/app/(home)/_components/TrendingLists.css.ts index 94301342..a7e21e67 100644 --- a/src/components/exploreComponents/TrendingLists.css.ts +++ b/src/app/(home)/_components/TrendingLists.css.ts @@ -2,13 +2,9 @@ import { style, createVar } from '@vanilla-extract/css'; import { vars } from '@/styles/__theme.css'; import { headlineSmall, titleMedium, caption } from '@/styles/__font.css'; -/**@todo 트렌딩 리스트 바뀐 디자인에 맞게 새로 갈아엎을 예정 */ - export const blackLayer = createVar(); export const itemFontColor = createVar(); -export const customWidth = createVar(); -export const customPadding = createVar(); export const customBorderRadius = createVar(); export const customBackgroundColor = createVar(); export const customFontColor = createVar(); @@ -33,6 +29,7 @@ export const titleWrapper = style({ export const wrapper = style({ marginTop: '50px', + marginBottom: '50px', }); export const listWrapper = style({ @@ -63,9 +60,9 @@ export const testItem = style({ export const slide = style({}); export const itemWrapper = style({ - height: '200px', + width: '100%', + height: '100%', padding: '0 40px', - width: customWidth, borderRadius: customBorderRadius, position: 'relative', @@ -114,6 +111,7 @@ export const itemInformationWrapper = style({ display: 'flex', flexDirection: 'column', alignItems: 'center', + zIndex: 4, }); export const ownerProfileWrapper = style({ @@ -123,58 +121,66 @@ export const ownerProfileWrapper = style({ gap: '8px', }); -export const itemTitle = style([ - titleMedium, - { - marginBottom: '16px', - color: customFontColor, - textAlign: 'center', - zIndex: 1, - overflow: 'hidden', - whiteSpace: 'normal', - textOverflow: 'ellipsis', - display: '-webkit-box', - WebkitLineClamp: 3, - WebkitBoxOrient: 'vertical', - wordBreak: 'keep-all', - }, -]); +export const itemTitle = style({ + display: 'flex', + flexDirection: 'column', + gap: '8px', + + marginBottom: '16px', + color: customFontColor, + textAlign: 'center', + zIndex: 1, + overflow: 'hidden', + whiteSpace: 'normal', + textOverflow: 'ellipsis', + WebkitLineClamp: 3, + WebkitBoxOrient: 'vertical', + wordBreak: 'keep-all', +}); export const itemTitleContent = style({ display: 'inline', + fontWeight: '600', + fontSize: '1.8rem', }); -export const profileImageWrapper = style({ - width: '32px', - height: '32px', +export const category = style({ + padding: '6px 12px', + marginBottom: '16px', - position: 'relative', + backgroundColor: '#3D95FF', + color: '#fff', + fontSize: '1.4rem', + borderRadius: '20px', +}); - display: 'flex', - alignItems: 'center', - justifyContent: 'center', +export const listOwner = style({ + fontSize: '1.6rem', + fontWeight: '400', + letterSpacing: '-3%', }); -export const profileImage = style({ - background: vars.color.gray5, - borderRadius: '50px', - border: `2px solid ${vars.color.white}`, +export const top3ItemNoImage = style({ + padding: '5px 7px', + + backgroundColor: '#F5FAFF', + color: '#3D95FF', + borderRadius: '20px', }); -export const profileTransparentBlack = style({ - width: '100%', - height: '100%', +export const top3ItemWithImage = style({ + padding: '5px 7px', - border: `2px solid ${vars.color.white}`, - borderRadius: '50px', - backgroundColor: 'rgba(0, 0, 0, 0.1)', - zIndex: 1, + color: '#ffffff', + borderRadius: '20px', + backgroundColor: '#F5FAFF4D', }); -export const ownerNickname = style([ - caption, - { - color: customFontColor, - zIndex: 1, - }, -]); +export const top3Wrapper = style({ + display: 'flex', + flexDirection: 'column', + alignItems: 'center', + gap: '7px', + + fontSize: '1rem', +}); diff --git a/src/app/(home)/_components/TrendingLists.tsx b/src/app/(home)/_components/TrendingLists.tsx new file mode 100644 index 00000000..91f58d90 --- /dev/null +++ b/src/app/(home)/_components/TrendingLists.tsx @@ -0,0 +1,144 @@ +'use client'; +import Link from 'next/link'; +import { useMemo } from 'react'; + +import { useQuery } from '@tanstack/react-query'; +import { assignInlineVars } from '@vanilla-extract/dynamic'; +import { Swiper, SwiperSlide } from 'swiper/react'; +import 'swiper/css'; +import { Autoplay, EffectCoverflow } from 'swiper/modules'; + +import getTrendingLists from '@/app/_api/home/getTrendingLists'; +import { QUERY_KEYS } from '@/lib/constants/queryKeys'; +import { TrendingListType } from '@/lib/types/exploreType'; +import { TRENDINGLISTS_DATA } from '../mock/mockdata'; + +import * as styles from './TrendingLists.css'; +import { vars } from '@/styles/theme.css'; +import { TrendingListsSkeleton } from '../../../components/exploreComponents/Skeleton'; + +function TrendingList() { + const { data: trendingLists, isFetching } = useQuery({ + queryKey: [QUERY_KEYS.getTrendingLists], + queryFn: () => getTrendingLists(), + }); + + const SWIPER_STYLE = useMemo( + () => ({ + width: '100vw', + height: '280px', + padding: '10px 0', + }), + [] + ); + + const SWIPER_SLIDER_STYLE = useMemo( + () => ({ + width: '260px', + borderRadius: '260px', + }), + [] + ); + + if (isFetching) { + return ; + } + + return ( +
+
+
+ {TRENDINGLISTS_DATA && TRENDINGLISTS_DATA.length > 0 && ( + + {TRENDINGLISTS_DATA.map((item, index) => ( + + + + ))} + + )} +
+
+
+ ); +} + +interface TrendingListItemProps { + item: any; + index: number; +} + +function TrendingListItem({ item }: TrendingListItemProps) { + if (!item) return null; + + return ( + +
+ {item.itemImageUrl ? ( +
+ +
+ ) : ( +
+ +
+ )} +
+ + ); +} + +export default TrendingList; + +interface TrendingListInformationType { + item?: TrendingListType; +} + +function TrendingListInformation({ item }: TrendingListInformationType) { + if (!item) return null; // item이 없으면 null을 반환하여 렌더링을 중지합니다. + + return ( +
+
{item.category}
+
+
{item.title}
+

{item.ownerNickname}

+
+
    + {item.top3.map((el, idx) => ( +
  • + {`${idx + 1}. ${el.title}`} +
  • + ))} +
+
+ ); +} diff --git a/src/app/(home)/layout.tsx b/src/app/(home)/layout.tsx new file mode 100644 index 00000000..bc37590f --- /dev/null +++ b/src/app/(home)/layout.tsx @@ -0,0 +1,27 @@ +'use client'; + +import { ReactNode } from 'react'; + +import Header from '@/app/(home)/_components/Header'; +import FloatingContainer from '@/components/floatingButton/FloatingContainer'; +import PlusOptionFloatingButton from '@/components/floatingButton/PlusOptionFloatingButton'; +import ArrowUpFloatingButton from '@/components/floatingButton/ArrowUpFloatingButton'; + +interface HomeLayoutProps { + children: ReactNode; +} + +function HomeLayout({ children }: HomeLayoutProps) { + return ( + <> +
+ {children} + + + + + + ); +} + +export default HomeLayout; diff --git a/src/app/(home)/mock/mockdata.ts b/src/app/(home)/mock/mockdata.ts new file mode 100644 index 00000000..14335193 --- /dev/null +++ b/src/app/(home)/mock/mockdata.ts @@ -0,0 +1,410 @@ +import { TrendingListType } from '@/lib/types/exploreType'; + +export const TopicsData = [ + '최근 자주 듣는 팝송', + '카공하기 좋은 서울 카페', + '카공하기 좋은 서울 카페', + '카공하기 좋은 서울 카페', + '카공하기 좋은 서울 카페', +]; + +export const TRENDINGLISTS_DATA = [ + { + id: 1, + ownerId: 101, + ownerNickname: '나현', + title: 'Best Coffee Shops in Seoul', + itemImageUrl: + 'https://lh3.googleusercontent.com/proxy/REI0aZFETu1l9pQ3PMVuQ-_oqZ-RGZUUeyj0pEI0GLPOoF5geJziMwe3daKzncbZhlyMegTC8rJs5-CjfWp88tpF1ybQW8ZbIudDFBn5ge0o0CyNH3KKdpDwNugBFpk6ApTC7qV8GM1UXmbxLlmNy0rBSRfb_QS0xVerx1Bi-huVWxPDio6N2_vYyXyQZKVqc61VtZ9n2H1CuneIHv5r7RV5oTLPhJS9aghPcxbGmcpRaouN0rcKuSvFhGV7gTRzMiKgcF1vaR9nfXcqRL8', + category: 'Food & Drink', + backgroundColor: '#FFD700', + top3: [ + { + id: 201, + rank: 1, + title: 'Cafe Bene', + }, + { + id: 202, + rank: 2, + title: 'Tom N Toms', + }, + { + id: 203, + rank: 3, + title: 'Hollys Coffee', + }, + ], + }, + { + id: 2, + ownerId: 102, + ownerNickname: '지민', + title: 'Top 3 Beaches in Jeju', + itemImageUrl: null, + category: 'Travel', + backgroundColor: '#87CEEB', + top3: [ + { + id: 204, + rank: 1, + title: 'Hyeopjae Beach', + }, + { + id: 205, + rank: 2, + title: 'Gwakji Beach', + }, + { + id: 206, + rank: 3, + title: 'Woljeongri Beach', + }, + ], + }, + { + id: 3, + ownerId: 103, + ownerNickname: '민준', + title: 'Best Hiking Trails in Korea', + itemImageUrl: + 'https://lh3.googleusercontent.com/proxy/REI0aZFETu1l9pQ3PMVuQ-_oqZ-RGZUUeyj0pEI0GLPOoF5geJziMwe3daKzncbZhlyMegTC8rJs5-CjfWp88tpF1ybQW8ZbIudDFBn5ge0o0CyNH3KKdpDwNugBFpk6ApTC7qV8GM1UXmbxLlmNy0rBSRfb_QS0xVerx1Bi-huVWxPDio6N2_vYyXyQZKVqc61VtZ9n2H1CuneIHv5r7RV5oTLPhJS9aghPcxbGmcpRaouN0rcKuSvFhGV7gTRzMiKgcF1vaR9nfXcqRL8', + category: 'Outdoor', + backgroundColor: '#228B22', + top3: [ + { + id: 207, + rank: 1, + title: 'Seoraksan National Park', + }, + { + id: 208, + rank: 2, + title: 'Bukhansan National Park', + }, + { + id: 209, + rank: 3, + title: 'Jirisan National Park', + }, + ], + }, + { + id: 4, + ownerId: 104, + ownerNickname: '수빈', + title: 'Top 3 Korean Dramas of 2024', + itemImageUrl: null, + category: 'Entertainment', + backgroundColor: '#FF6347', + top3: [ + { + id: 210, + rank: 1, + title: 'Crash Landing on You Season 2', + }, + { + id: 211, + rank: 2, + title: 'Hospital Playlist Season 3', + }, + { + id: 212, + rank: 3, + title: 'Vincenzo: The Return', + }, + ], + }, + { + id: 5, + ownerId: 105, + ownerNickname: '지우', + title: 'Best Korean Street Foods', + itemImageUrl: + 'https://lh3.googleusercontent.com/proxy/REI0aZFETu1l9pQ3PMVuQ-_oqZ-RGZUUeyj0pEI0GLPOoF5geJziMwe3daKzncbZhlyMegTC8rJs5-CjfWp88tpF1ybQW8ZbIudDFBn5ge0o0CyNH3KKdpDwNugBFpk6ApTC7qV8GM1UXmbxLlmNy0rBSRfb_QS0xVerx1Bi-huVWxPDio6N2_vYyXyQZKVqc61VtZ9n2H1CuneIHv5r7RV5oTLPhJS9aghPcxbGmcpRaouN0rcKuSvFhGV7gTRzMiKgcF1vaR9nfXcqRL8', + category: 'Food & Drink', + backgroundColor: '#FFA07A', + top3: [ + { + id: 213, + rank: 1, + title: 'Tteokbokki', + }, + { + id: 214, + rank: 2, + title: 'Hotteok', + }, + { + id: 215, + rank: 3, + title: 'Kimbap', + }, + ], + }, + { + id: 6, + ownerId: 106, + ownerNickname: '현우', + title: 'Top 3 Korean Pop Bands', + itemImageUrl: null, + category: 'Music', + backgroundColor: '#8A2BE2', + top3: [ + { + id: 216, + rank: 1, + title: 'BTS', + }, + { + id: 217, + rank: 2, + title: 'BLACKPINK', + }, + { + id: 218, + rank: 3, + title: 'EXO', + }, + ], + }, + { + id: 7, + ownerId: 107, + ownerNickname: '서윤', + title: 'Top 3 Tech Gadgets of 2024', + itemImageUrl: + 'https://lh3.googleusercontent.com/proxy/REI0aZFETu1l9pQ3PMVuQ-_oqZ-RGZUUeyj0pEI0GLPOoF5geJziMwe3daKzncbZhlyMegTC8rJs5-CjfWp88tpF1ybQW8ZbIudDFBn5ge0o0CyNH3KKdpDwNugBFpk6ApTC7qV8GM1UXmbxLlmNy0rBSRfb_QS0xVerx1Bi-huVWxPDio6N2_vYyXyQZKVqc61VtZ9n2H1CuneIHv5r7RV5oTLPhJS9aghPcxbGmcpRaouN0rcKuSvFhGV7gTRzMiKgcF1vaR9nfXcqRL8', + category: 'Technology', + backgroundColor: '#4682B4', + top3: [ + { + id: 219, + rank: 1, + title: 'Samsung Galaxy Z Flip 4', + }, + { + id: 220, + rank: 2, + title: 'Apple Watch Series 10', + }, + { + id: 221, + rank: 3, + title: 'Sony WH-1000XM5', + }, + ], + }, + { + id: 8, + ownerId: 108, + ownerNickname: '도윤', + title: 'Best Bookstores in Seoul', + itemImageUrl: null, + category: 'Lifestyle', + backgroundColor: '#DAA520', + top3: [ + { + id: 222, + rank: 1, + title: 'Kyobo Book Centre', + }, + { + id: 223, + rank: 2, + title: 'Aladin Used Books', + }, + { + id: 224, + rank: 3, + title: 'Youngpoong Bookstore', + }, + ], + }, + { + id: 9, + ownerId: 109, + ownerNickname: '가영', + title: 'Top 3 Korean Webtoons', + itemImageUrl: + 'https://lh3.googleusercontent.com/proxy/REI0aZFETu1l9pQ3PMVuQ-_oqZ-RGZUUeyj0pEI0GLPOoF5geJziMwe3daKzncbZhlyMegTC8rJs5-CjfWp88tpF1ybQW8ZbIudDFBn5ge0o0CyNH3KKdpDwNugBFpk6ApTC7qV8GM1UXmbxLlmNy0rBSRfb_QS0xVerx1Bi-huVWxPDio6N2_vYyXyQZKVqc61VtZ9n2H1CuneIHv5r7RV5oTLPhJS9aghPcxbGmcpRaouN0rcKuSvFhGV7gTRzMiKgcF1vaR9nfXcqRL8', + category: 'Entertainment', + backgroundColor: '#FF4500', + top3: [ + { + id: 225, + rank: 1, + title: 'Tower of God', + }, + { + id: 226, + rank: 2, + title: 'The God of High School', + }, + { + id: 227, + rank: 3, + title: 'Lore Olympus', + }, + ], + }, + { + id: 10, + ownerId: 110, + ownerNickname: '하준', + title: 'Top 3 Scenic Spots in Busan', + itemImageUrl: 'null', + category: 'Travel', + backgroundColor: '#20B2AA', + top3: [ + { + id: 228, + rank: 1, + title: 'Haeundae Beach', + }, + { + id: 229, + rank: 2, + title: 'Gamcheon Culture Village', + }, + { + id: 230, + rank: 3, + title: 'Taejongdae Resort Park', + }, + ], + }, +]; + +export const LIST_DATA = [ + { + id: 1, + ownerId: 101, + ownerNickname: '나현', + ownerProfileImage: 'https://example.com/images/nahyun_profile.jpg', + title: 'Top 3 Restaurants in Gangnam', + description: 'Discover the best places to eat in Gangnam, Seoul.', + items: [ + { + id: 201, + rank: 1, + title: 'Gangnam Grill', + }, + { + id: 202, + rank: 2, + title: 'Samgyeopsal Heaven', + }, + { + id: 203, + rank: 3, + title: 'Bibimbap Palace', + }, + ], + version: 1, + }, + { + id: 2, + ownerId: 102, + ownerNickname: '지민', + ownerProfileImage: 'https://example.com/images/jimin_profile.jpg', + title: 'Top 3 Shopping Malls in Seoul', + description: 'A guide to the best shopping experiences in Seoul.', + items: [ + { + id: 204, + rank: 1, + title: 'COEX Mall', + }, + { + id: 205, + rank: 2, + title: 'Dongdaemun Design Plaza', + }, + { + id: 206, + rank: 3, + title: 'Lotte World Mall', + }, + ], + version: 1, + }, + { + id: 3, + ownerId: 103, + ownerNickname: '민준', + ownerProfileImage: 'https://example.com/images/minjun_profile.jpg', + title: 'Top 3 Cultural Experiences in Korea', + description: 'Explore the rich cultural heritage of Korea.', + items: [ + { + id: 207, + rank: 1, + title: 'Bukchon Hanok Village', + }, + { + id: 208, + rank: 2, + title: 'Gyeongbokgung Palace', + }, + { + id: 209, + rank: 3, + title: 'Insadong', + }, + ], + version: 1, + }, + { + id: 4, + ownerId: 104, + ownerNickname: '수빈', + ownerProfileImage: 'https://example.com/images/subin_profile.jpg', + title: 'Top 3 Scenic Spots in Jeju', + description: 'Must-visit scenic locations on Jeju Island.', + items: [ + { + id: 210, + rank: 1, + title: 'Seongsan Ilchulbong', + }, + { + id: 211, + rank: 2, + title: 'Hallasan Mountain', + }, + { + id: 212, + rank: 3, + title: 'Manjanggul Cave', + }, + ], + version: 1, + }, + { + id: 5, + ownerId: 105, + ownerNickname: '지우', + ownerProfileImage: 'https://example.com/images/jiwoo_profile.jpg', + title: 'Top 3 K-Pop Albums of 2024', + description: 'The hottest K-Pop albums you need to listen to this year.', + items: [ + { + id: 213, + rank: 1, + title: 'BTS - New Era', + }, + { + id: 214, + rank: 2, + title: 'BLACKPINK - Revolution', + }, + { + id: 215, + rank: 3, + title: 'TWICE - Infinity', + }, + ], + version: 1, + }, +]; diff --git a/src/app/(home)/page.css.ts b/src/app/(home)/page.css.ts new file mode 100644 index 00000000..da9c3bcb --- /dev/null +++ b/src/app/(home)/page.css.ts @@ -0,0 +1,7 @@ +import { style } from '@vanilla-extract/css'; + +export const wrapper = style({ + paddingBottom: 40, + + position: 'relative', +}); diff --git a/src/app/(home)/page.tsx b/src/app/(home)/page.tsx new file mode 100644 index 00000000..aa36942a --- /dev/null +++ b/src/app/(home)/page.tsx @@ -0,0 +1,66 @@ +'use client'; + +import React from 'react'; +import { useRouter, useSearchParams } from 'next/navigation'; +import { useEffect, Suspense } from 'react'; +import dynamic from 'next/dynamic'; + +import Modal from '@/components/Modal/Modal'; +import LoginModal from '@/components/login/LoginModal'; +import Loading from '@/components/loading/Loading'; +import Feed from '@/app/(home)/_components/Feed'; + +import * as styles from './page.css'; + +import useBooleanOutput from '@/hooks/useBooleanOutput'; +import toasting from '@/lib/utils/toasting'; +import toastMessage from '@/lib/constants/toastMessage'; +import { useLanguage } from '@/store/useLanguage'; + +const PWAPrompt = dynamic(() => import('react-ios-pwa-prompt'), { + ssr: false, +}); + +function LandingPage() { + const { language } = useLanguage(); + // TODO 소현 - 나중에 getStaticPaths, getStaticProps로 쿼리 가져오기 (리팩토링) + const router = useRouter(); + const searchParams = useSearchParams(); + const isLoginRequired = searchParams ? searchParams.get('loginRequired') : ''; + const { isOn, handleSetOn, handleSetOff } = useBooleanOutput(); + + // TODO 소현 - hoc or hof로 분리하기 + useEffect(() => { + if (!!isLoginRequired) { + toasting({ type: 'error', txt: toastMessage[language].requiredLogin }); + handleSetOn(); + router.replace('/', { scroll: false }); // 쿼리스트링 초가화 + } + }, [isLoginRequired, handleSetOn, router, language]); + + return ( + <> +
+ }> + + + +
+ {isOn && ( + + + + )} + + ); +} + +export default LandingPage; diff --git a/src/app/page.tsx b/src/app/__page.tsx similarity index 93% rename from src/app/page.tsx rename to src/app/__page.tsx index 36f58b34..f80f6f10 100644 --- a/src/app/page.tsx +++ b/src/app/__page.tsx @@ -5,9 +5,9 @@ import { useRouter, useSearchParams } from 'next/navigation'; import { useEffect, Suspense } from 'react'; import dynamic from 'next/dynamic'; -import ListRecommendation from '@/components/exploreComponents/ListsRecommendation'; -import TrendingList from '@/components/exploreComponents/TrendingLists'; -import UsersRecommendation from '@/components/exploreComponents/UsersRecommendation'; +import FeedLists from '@/components/exploreComponents/FeedLists'; +import TrendingList from '@/app/(home)/_components/TrendingLists'; +import UsersRecommendation from '@/components/exploreComponents/RecommendedUsers'; import Header from '@/components/exploreComponents/Header'; import FloatingContainer from '@/components/floatingButton/FloatingContainer'; import PlusOptionFloatingButton from '@/components/floatingButton/PlusOptionFloatingButton'; @@ -62,7 +62,7 @@ function LandingPage() { - + diff --git a/src/app/_api/home/getFollowingLists.ts b/src/app/_api/home/getFollowingLists.ts new file mode 100644 index 00000000..6f4a99c5 --- /dev/null +++ b/src/app/_api/home/getFollowingLists.ts @@ -0,0 +1,22 @@ +// 리스트 조회 api +import axiosInstance from '@/lib/axios/axiosInstance'; +//리스트 추천 상위 10개 +interface GetFollowingListType { + cursorUpdatedDate?: string | null; +} + +const getFollowingLists = async ({ cursorUpdatedDate }: GetFollowingListType) => { + const params = new URLSearchParams({ + size: '10', + }); + + if (cursorUpdatedDate) { + params.append('cursorUpdatedDate', cursorUpdatedDate); + } + + const response = await axiosInstance.get(`/lists/following?${params.toString()}`); + + return response.data; +}; + +export default getFollowingLists; diff --git a/src/app/_api/home/getRecentLists.ts b/src/app/_api/home/getRecentLists.ts new file mode 100644 index 00000000..372d1d85 --- /dev/null +++ b/src/app/_api/home/getRecentLists.ts @@ -0,0 +1,27 @@ +// 리스트 조회 api +import axiosInstance from '@/lib/axios/axiosInstance'; +//리스트 추천 상위 10개 +interface GetRecentListsType { + cursorUpdatedDate?: string | null; + category?: string; +} + +const getRecentLists = async ({ cursorUpdatedDate, category = 'entire' }: GetRecentListsType) => { + const params = new URLSearchParams({ + size: '10', + }); + + if (cursorUpdatedDate) { + params.append('cursorUpdatedDate', cursorUpdatedDate); + } + + if (category) { + params.append('category', category); + } + + const response = await axiosInstance.get(`/lists?${params.toString()}`); + + return response.data; +}; + +export default getRecentLists; diff --git a/src/app/_api/explore/getRecommendedLists.ts b/src/app/_api/home/getRecommendedLists.ts similarity index 100% rename from src/app/_api/explore/getRecommendedLists.ts rename to src/app/_api/home/getRecommendedLists.ts diff --git a/src/app/_api/explore/getRecommendedUsers.ts b/src/app/_api/home/getRecommendedUsers.ts similarity index 100% rename from src/app/_api/explore/getRecommendedUsers.ts rename to src/app/_api/home/getRecommendedUsers.ts diff --git a/src/app/_api/explore/getTrendingLists.ts b/src/app/_api/home/getTrendingLists.ts similarity index 100% rename from src/app/_api/explore/getTrendingLists.ts rename to src/app/_api/home/getTrendingLists.ts diff --git a/src/app/notices/NoticeList.css.ts b/src/app/notices/NoticeList.css.ts new file mode 100644 index 00000000..6460e6ae --- /dev/null +++ b/src/app/notices/NoticeList.css.ts @@ -0,0 +1,76 @@ +import { style } from '@vanilla-extract/css'; +import { vars } from '@/styles/__theme.css'; + +export const noticeListWrapper = style({ + marginTop: '14px', + padding: '0 16px', + + display: 'flex', + flexDirection: 'column', + gap: '12px', +}); + +export const listItemWrapper = style({ + padding: '18px 14px', + + display: 'flex', + justifyContent: 'space-between', + + backgroundColor: vars.color.white, + borderRadius: '16px', +}); + +export const noticeTitle = style({ + marginBottom: '12px', + + color: '#323A43', + fontSize: '1.6rem', + fontWeight: '600', + letterSpacing: '-3%', +}); + +export const noticeDescription = style({ + marginBottom: '10px', + + color: '#323A43', + fontWeight: '400', + fontSize: '1.4rem', + letterSpacing: '-3%', +}); + +export const noticeInformationContainer = style({ + display: 'flex', + alignItems: 'center', + gap: '8px', +}); + +export const timeStamp = style({ + color: '#495866', + fontWeight: '400', + fontSize: '1.3rem', + letterSpacing: '-3%', +}); + +export const category = style({ + padding: '2px 6px', + + color: '#3D95FF', + fontSize: '1.3rem', + fontWeight: '500', + // border: '0.5px solid #8599AD99', + borderRadius: '9999px', + backgroundColor: '#E3EEFF', +}); + +export const imageWrapper = style({ + position: 'relative', + + width: '90px', + height: 'auto', + + flexShrink: 0, +}); + +export const image = style({ + borderRadius: '16px', +}); diff --git a/src/app/notices/NoticeList.tsx b/src/app/notices/NoticeList.tsx new file mode 100644 index 00000000..f1c8ad0e --- /dev/null +++ b/src/app/notices/NoticeList.tsx @@ -0,0 +1,54 @@ +import Image from 'next/image'; + +import { NoticeListItemType } from '@/lib/types/noticeType'; +import { NOTICE_LIST_MOCKDATA } from './mockdata'; + +import * as styles from './NoticeList.css'; +import Link from 'next/link'; + +function NoticeList() { + return ( +
    + {NOTICE_LIST_MOCKDATA?.map((item: NoticeListItemType) => ( +
  • + +
  • + ))} +
+ ); +} + +export default NoticeList; + +interface NoticeListItemProps { + item: NoticeListItemType; +} + +function NoticeListItem({ item }: NoticeListItemProps) { + return ( + +
+

{item.title}

+

{item.description}

+
+

{item.createdDate}

+

{item.category}

+
+
+ {item && item.itemImageUrl && ( +
+ {item.title} +
+ )} + + ); +} diff --git a/src/app/notices/[noticeId]/NoticeDetail.css.ts b/src/app/notices/[noticeId]/NoticeDetail.css.ts new file mode 100644 index 00000000..07f80652 --- /dev/null +++ b/src/app/notices/[noticeId]/NoticeDetail.css.ts @@ -0,0 +1,150 @@ +import { style } from '@vanilla-extract/css'; +import { vars } from '@/styles/theme.css'; + +export const titleSection = style({ + padding: '25px 16px 40px', + + display: 'flex', + flexDirection: 'column', + + backgroundColor: '#3D95FF', +}); + +export const category = style({ + padding: '6px 12px', + + backgroundColor: vars.color.white, + fontSize: '1.4rem', + color: vars.color.bluegray8, + borderRadius: '16px', +}); + +export const title = style({ + marginTop: '14px', + marginBottom: '11px', + + color: vars.color.white, + fontSize: '2rem', + fontWeight: '600', +}); + +export const titleSectionDescription = style({ + marginBottom: '4px', + + color: vars.color.white, + fontSize: '1.4rem', +}); + +export const titleSectionCreatedDate = style({ + color: vars.color.bggray, + fontSize: '1rem', +}); + +export const articleWrapper = style({ + padding: '20px 16px', +}); + +export const articleSubtitle = style({ + marginBottom: '12px', + + fontSize: '1.8rem', + color: '#3E4455', +}); + +export const articleDescription = style({ + marginBottom: '12px', + + fontSize: '1.4rem', + color: '#3E4455', +}); + +export const articleImageWrapper = style({ + marginBottom: '20px', + + position: 'relative', + + width: '100%', + height: '400px', +}); + +export const articleImage = style({ + objectFit: 'cover', +}); + +export const articleButton = style({ + marginBottom: '24px', + padding: '16px 14px', + + width: '100%', + + fontSize: '1.6rem', + fontWeight: '700', + backgroundColor: vars.color.white, + color: vars.color.blue, + border: `1px solid #3D95FF80`, + borderRadius: '18px', +}); + +export const articleLine = style({ + margin: '0px 0 20px', + + display: 'flex', + alignItems: 'center', + width: '100%', + borderTop: `1px solid ${vars.color.lightblue}`, +}); + +export const articleNotice = style({ + marginBottom: '12px', + + fontSize: '1.3rem', + color: vars.color.bluegray8, +}); + +export const signPostWrapper = style({ + padding: '12px 16px 32px', + + display: 'flex', + flexDirection: 'column', + gap: '8px', +}); + +export const link = style({ + marginTop: '10px', + + fontSize: '1.4rem', + color: vars.color.deepblue10, +}); + +export const listItemWrapper = style({ + padding: '18px 14px', + + display: 'flex', + flexDirection: 'column', + + backgroundColor: vars.color.white, + borderRadius: '16px', +}); + +export const noticeTitle = style({ + marginTop: '4px', + + color: '#323A43', + fontSize: '1.6rem', + fontWeight: '600', + letterSpacing: '-3%', +}); + +export const noticeDescription = style({ + marginTop: '6px', + + color: '#323A43', + fontWeight: '400', + fontSize: '1.2rem', + letterSpacing: '-3%', +}); + +export const sign = style({ + fontSize: '1.2rem', + color: vars.color.deepblue10, +}); diff --git a/src/app/notices/[noticeId]/NoticeDetail.tsx b/src/app/notices/[noticeId]/NoticeDetail.tsx new file mode 100644 index 00000000..1898331c --- /dev/null +++ b/src/app/notices/[noticeId]/NoticeDetail.tsx @@ -0,0 +1,75 @@ +import Image from 'next/image'; +import Link from 'next/link'; + +import { NOTICE_DETAIL_MOCKDATA } from '../mockdata'; +import { NoticeContentType } from '@/lib/types/noticeType'; + +import * as styles from './NoticeDetail.css'; + +function NoticeDetailComponent() { + const data = NOTICE_DETAIL_MOCKDATA; + + return ( + <> +
+
+ {data.category} +
+

{data.title}

+
{data.description}
+

{data.createdDate}

+
+
+
    + {data.content?.map((item: NoticeContentType, idx) => ( +
  • + +
  • + ))} +
+
+
+
+
다음글
+
{data.prevNotice.title}
+

{data.prevNotice.description}

+
+
+
이전글
+
{data.nextNotice.title}
+

{data.nextNotice.description}

+
+ + + +
+ + ); +} + +export default NoticeDetailComponent; + +interface NoticeContentProps { + item: NoticeContentType; +} + +function NoticeContent({ item }: NoticeContentProps) { + return ( + <> + {item.type === 'subtitle' &&

{item.description}

} + {item.type === 'body' &&

{item.description}

} + {item.type === 'image' && ( +
+ {item.type} +
+ )} + {item.type === 'button' && ( + + + + )} + {item.type === 'line' &&
} + {item.type === 'notice' &&

{item.description}

} + + ); +} diff --git a/src/app/notices/[noticeId]/page.tsx b/src/app/notices/[noticeId]/page.tsx new file mode 100644 index 00000000..700beaea --- /dev/null +++ b/src/app/notices/[noticeId]/page.tsx @@ -0,0 +1,11 @@ +import NoticeDetailComponent from './NoticeDetail'; + +function NoticeDetailPage() { + return ( +
+ +
+ ); +} + +export default NoticeDetailPage; diff --git a/src/app/notices/layout.tsx b/src/app/notices/layout.tsx new file mode 100644 index 00000000..0868e493 --- /dev/null +++ b/src/app/notices/layout.tsx @@ -0,0 +1,29 @@ +'use client'; + +import { ReactNode } from 'react'; +import { useRouter } from 'next/navigation'; + +import Header from '@/components/Header/Header'; + +interface NoticeLayoutType { + children: ReactNode; +} + +function NoticeLayout({ children }: NoticeLayoutType) { + const router = useRouter(); + + return ( +
+
{ + router.back(); + }} + /> + {children} +
+ ); +} + +export default NoticeLayout; diff --git a/src/app/notices/mockdata.ts b/src/app/notices/mockdata.ts new file mode 100644 index 00000000..29ed443a --- /dev/null +++ b/src/app/notices/mockdata.ts @@ -0,0 +1,122 @@ +import { NoticeListItemType, NoticeDetailType } from '@/lib/types/noticeType'; + +export const NOTICE_LIST_MOCKDATA: NoticeListItemType[] = [ + { + id: 1, + createdDate: '2024-10-01', + title: 'New Feature Release', + itemImageUrl: null, + category: '소식', + description: 'We have released a new feature that will enhance your experience.', + }, + { + id: 2, + createdDate: '2024-09-28', + title: 'Scheduled Maintenance', + itemImageUrl: 'https://singlesumer.com/files/attach/images/138/863/046/f787f76706d1b00f77ea67d4d2b833f4.jpg', + category: '이벤트', + description: 'The system will undergo maintenance on October 5th. Please be aware of potential downtime.', + }, + { + id: 3, + createdDate: '2024-09-25', + title: 'Holiday Event', + itemImageUrl: 'https://singlesumer.com/files/attach/images/138/863/046/f787f76706d1b00f77ea67d4d2b833f4.jpg', + category: '팁', + description: 'Join our special holiday event starting October 10th with exciting offers!', + }, + { + id: 4, + createdDate: '2024-09-22', + title: 'Security Update', + itemImageUrl: 'https://singlesumer.com/files/attach/images/138/863/046/f787f76706d1b00f77ea67d4d2b833f4.jpg', + category: '소식', + description: 'We have implemented new security protocols to better protect user data.', + }, + { + id: 5, + createdDate: '2024-09-18', + title: '5 Tips to Maximize Productivity', + itemImageUrl: 'https://singlesumer.com/files/attach/images/138/863/046/f787f76706d1b00f77ea67d4d2b833f4.jpg', + category: '팁', + description: 'Learn how to improve your productivity with these simple tips.', + }, + { + id: 6, + createdDate: '2024-09-15', + title: 'Server Downtime Resolved', + itemImageUrl: null, + category: '이벤트', + description: 'The recent server issue has been resolved. All systems are back online.', + }, + { + id: 7, + createdDate: '2024-09-10', + title: 'New Blog Post Available', + itemImageUrl: 'https://singlesumer.com/files/attach/images/138/863/046/f787f76706d1b00f77ea67d4d2b833f4.jpg', + category: '소식', + description: 'Check out our latest blog post on the importance of cybersecurity.', + }, +]; + +export const NOTICE_DETAIL_MOCKDATA: NoticeDetailType = { + id: 1, + category: '소식', + title: '서비스 점검 안내', + description: '서비스 점검이 10월 20일에 진행될 예정입니다.', + content: [ + { + type: 'subtitle', + description: '점검 일정', + imageUrl: 'https://example.com/notice-image1.jpg', + buttonName: '자세히 보기', + buttonLink: 'https://example.com/detail1', + }, + { + type: 'body', + description: '10월 20일 오전 2시부터 5시까지 서비스가 일시적으로 중단됩니다.', + imageUrl: 'https://example.com/notice-image2.jpg', + buttonName: '점검 내용 확인', + buttonLink: 'https://example.com/detail2', + }, + { + type: 'image', + description: '', + imageUrl: 'https://i.pinimg.com/236x/6d/01/c6/6d01c6944a011e871bf23333bfb01562.jpg', + buttonName: '', + buttonLink: '', + }, + { + type: 'line', + description: '', + imageUrl: '', + buttonName: '', + buttonLink: '', + }, + { + type: 'button', + description: '', + imageUrl: '', + buttonName: '리스티웨이브 바로가기', + buttonLink: 'www.listywave.com', + }, + { + type: 'notice', + description: '업데이트 안됨!', + imageUrl: '', + buttonName: '', + buttonLink: '', + }, + ], + createdDate: '2024-10-10', + prevNotice: { + id: 0, + title: '이전 공지가 없습니다.', + description: '', + }, + nextNotice: { + id: 2, + title: '새로운 기능 출시 안내', + description: '곧 출시될 새로운 기능에 대해 안내드립니다.', + }, +}; diff --git a/src/app/notices/noticePage.css.ts b/src/app/notices/noticePage.css.ts new file mode 100644 index 00000000..e8191258 --- /dev/null +++ b/src/app/notices/noticePage.css.ts @@ -0,0 +1 @@ +import { style } from '@vanilla-extract/css'; diff --git a/src/app/notices/page.tsx b/src/app/notices/page.tsx new file mode 100644 index 00000000..bc25ea81 --- /dev/null +++ b/src/app/notices/page.tsx @@ -0,0 +1,11 @@ +import NoticeList from './NoticeList'; + +function NoticePage() { + return ( +
+ +
+ ); +} + +export default NoticePage; diff --git a/src/components/BottomNav/BottomNav.css.ts b/src/components/BottomNav/BottomNav.css.ts index 17d96eca..15ddda1d 100644 --- a/src/components/BottomNav/BottomNav.css.ts +++ b/src/components/BottomNav/BottomNav.css.ts @@ -11,6 +11,7 @@ export const bottomTapContainer = style({ display: 'flex', backgroundColor: vars.color.bggray, + zIndex: 30, }); const bottomTap = style({ diff --git a/src/components/NoData/NoData.css.ts b/src/components/NoData/NoData.css.ts index 0a11ea8b..80589289 100644 --- a/src/components/NoData/NoData.css.ts +++ b/src/components/NoData/NoData.css.ts @@ -8,16 +8,30 @@ export const wrapper = style({ width: '100%', height: '100%', + padding: '55px 0', + display: 'flex', flexDirection: 'column', justifyContent: 'center', alignItems: 'center', + + backgroundColor: '#fff', + borderRadius: '20px', }); export const message = style({ + marginBottom: '8px', + fontSize: '1.8rem', fontWeight: 600, - lineHeight: '24px', - letterSpacing: '0.14px', - color: vars.color.black, + lineHeight: '1.6', + letterSpacing: '-3%', + color: '#3C4F76', +}); + +export const button = style({ + padding: '7px 14px', + borderRadius: '20px', + border: '1px solid #3D95FF4D', + color: '#3D95FF', }); diff --git a/src/components/NoData/NoDataButton.css.ts b/src/components/NoData/NoDataButton.css.ts new file mode 100644 index 00000000..ec97ec79 --- /dev/null +++ b/src/components/NoData/NoDataButton.css.ts @@ -0,0 +1,13 @@ +import { style } from '@vanilla-extract/css'; +import { vars } from '@/styles/__theme.css'; + +export const buttonWrapper = style({ + padding: '7px 14px', + + backgroundColor: vars.color.white, + border: '1px solid #3D95FF4D', + borderRadius: '9999px', + + color: '#3D95FF', + fontSize: '1.4rem', +}); diff --git a/src/components/NoData/NoDataButton.tsx b/src/components/NoData/NoDataButton.tsx new file mode 100644 index 00000000..c0c35481 --- /dev/null +++ b/src/components/NoData/NoDataButton.tsx @@ -0,0 +1,16 @@ +import { ReactNode } from 'react'; + +import * as styles from './NoDataButton.css'; + +interface NoDataButtonType { + children: ReactNode; + onClick: () => void; +} + +export default function NoDataButton({ children, onClick }: NoDataButtonType) { + return ( + + ); +} diff --git a/src/components/NoData/NoDataComponent.tsx b/src/components/NoData/NoDataComponent.tsx index 74233116..e1582c9a 100644 --- a/src/components/NoData/NoDataComponent.tsx +++ b/src/components/NoData/NoDataComponent.tsx @@ -2,14 +2,20 @@ import * as styles from './NoData.css'; import NoDataImg from '/public/images/no_data_image.svg'; import { ReactNode } from 'react'; import { commonLocale } from '@/components/locale'; -import { useLanguage } from '@/store/useLanguage'; +// import { useLanguage } from '@/store/useLanguage'; -function NoDataComponent({ message, button }: { message: string; button?: ReactNode }) { - const { language } = useLanguage(); +interface NoDataProps { + message: string; + button?: ReactNode; + buttonMessage?: string; +} + +function NoDataComponent({ message, button, buttonMessage }: NoDataProps) { + // const { language } = useLanguage(); return (
-
{message}
+ {buttonMessage && } {button}
); diff --git a/src/components/SearchBar/SearchBar.css.ts b/src/components/SearchBar/SearchBar.css.ts new file mode 100644 index 00000000..c1edaa4d --- /dev/null +++ b/src/components/SearchBar/SearchBar.css.ts @@ -0,0 +1,42 @@ +import { style } from '@vanilla-extract/css'; +import { vars } from '@/styles/theme.css'; + +export const wrapper = style({ + width: '100%', + + display: 'flex', + alignItems: 'center', + gap: '17px', +}); + +export const inputWrapper = style({ + width: '100%', + padding: '8px 16px', + + display: 'flex', + alignItems: 'center', + gap: '8px', + + backgroundColor: vars.color.white, + borderRadius: '12px', +}); + +export const input = style({ + width: '100%', + + fontSize: '1.6rem', + overflow: 'hidden', + '::placeholder': { + color: '#637587', + fontWeight: '400', + fontSize: '1.6rem', + }, +}); + +export const cancelButton = style({ + flexShrink: 0, + fontWeight: '400', + fontSize: '1.6rem', + letterSpacing: '-3%', + color: '#213752', +}); diff --git a/src/components/SearchBar/index.tsx b/src/components/SearchBar/index.tsx new file mode 100644 index 00000000..a402172e --- /dev/null +++ b/src/components/SearchBar/index.tsx @@ -0,0 +1,22 @@ +import * as styles from './SearchBar.css'; +import SearchIcon from '/public/icons/ver3/search.svg'; + +interface SearchBarProps { + handleCancel?: () => void; +} + +function SearchBarComponent({ handleCancel }: SearchBarProps) { + return ( +
+
+ + +
+ +
+ ); +} + +export default SearchBarComponent; diff --git a/src/components/SimpleList/SimpleList.css.ts b/src/components/SimpleList/SimpleList.css.ts index dd3e367e..b9fd1438 100644 --- a/src/components/SimpleList/SimpleList.css.ts +++ b/src/components/SimpleList/SimpleList.css.ts @@ -1,6 +1,4 @@ import { style } from '@vanilla-extract/css'; -import { vars } from '@/styles/__theme.css'; -import { titleMedium, bodyRegular } from '@/styles/__font.css'; export const simpleItemWrapper = style({ width: '100%', @@ -22,6 +20,7 @@ export const rankAndTitle = style({ }); export const rankWrapper = style({ + position: 'relative', width: '35px', height: '35px', @@ -31,20 +30,40 @@ export const rankWrapper = style({ flexShrink: 0, }); -export const rankText = style([ - titleMedium, +export const rankText = style({ + color: '#707681', + fontSize: '1.8rem', + fontWeight: '500', + letterSpacing: '-0.6px', + zIndex: 1, +}); + +export const rank1 = style([ + rankText, { - color: vars.color.black, - letterSpacing: '-0.6px', + color: '#3D95FF', }, ]); -export const titleText = style([ - bodyRegular, +export const heart = style({ + position: 'absolute', + top: '50%', + left: '50%', + transform: 'translate(-50%, -50%)', +}); + +export const titleText = style({ + color: '#3E4455', + fontSize: '1.6rem', + wordBreak: 'break-all', + wordWrap: 'break-word', +}); + +export const titleRank1 = style([ + titleText, { - color: vars.color.black, - wordBreak: 'break-all', - wordWrap: 'break-word', + fontWeight: '600', + color: '#3D95FF', }, ]); diff --git a/src/components/SimpleList/SimpleList.tsx b/src/components/SimpleList/SimpleList.tsx index b54b87c1..b7a637ba 100644 --- a/src/components/SimpleList/SimpleList.tsx +++ b/src/components/SimpleList/SimpleList.tsx @@ -2,7 +2,7 @@ import Image from 'next/image'; import { ListItemType } from '@/lib/types/exploreType'; import * as styles from './SimpleList.css'; -import CrownIcon from '/public/icons/crown_new.svg'; +import HeartIcon from '/public/icons/ver3/blue_heart.svg'; import { commonLocale } from '@/components/locale'; import { useLanguage } from '@/store/useLanguage'; @@ -11,31 +11,20 @@ interface SimpleListProps { } function SimpleList({ items }: SimpleListProps) { - const { language } = useLanguage(); - const isExistImage = items?.some((item) => item.imageUrl !== ''); - return items?.map((item) => { return (
-
{item.rank === 1 ? : item.rank}
-
-
{item.title}
-
- {isExistImage && ( -
- {item.imageUrl && ( - {commonLocale[language].imageDescription} + {item.rank === 1 && ( +
+ +
)} + {item.rank}
- )} +
{item.title}
+
); }); diff --git a/src/components/exploreComponents/ListsRecommendation.tsx b/src/components/exploreComponents/FeedLists.tsx similarity index 66% rename from src/components/exploreComponents/ListsRecommendation.tsx rename to src/components/exploreComponents/FeedLists.tsx index 6f1b443e..547ea9b8 100644 --- a/src/components/exploreComponents/ListsRecommendation.tsx +++ b/src/components/exploreComponents/FeedLists.tsx @@ -3,28 +3,27 @@ import Image from 'next/image'; import Link from 'next/link'; import { useInfiniteQuery } from '@tanstack/react-query'; + import { useMemo } from 'react'; import { assignInlineVars } from '@vanilla-extract/dynamic'; import SimpleList from '@/components/SimpleList/SimpleList'; -import getRecommendedLists from '@/app/_api/explore/getRecommendedLists'; +import getRecentLists from '@/app/_api/home/getRecentLists'; import { QUERY_KEYS } from '@/lib/constants/queryKeys'; import useIntersectionObserver from '@/hooks/useIntersectionObserver'; import { ListRecommendationType } from '@/lib/types/exploreType'; -import Label from '@/components/Label/Label'; import * as styles from './ListsRecommendation.css'; -import NoDataComponent from '@/components/NoData/NoDataComponent'; import { exploreBackgroundColors } from '@/lib/constants/exploreListBackgroundColor'; import { ListRecommendationSkeleton, ListsSkeleton } from './Skeleton'; -import sparkleEmoji from '/public/images/sparkle.png'; import fallbackProfile from '/public/images/fallback_profileImage.webp'; +import { LIST_DATA } from '@/app/(home)/mock/mockdata'; -import ChevronDown from '/public/icons/chevron_down.svg'; import { commonLocale } from '@/components/locale'; import { useLanguage } from '@/store/useLanguage'; -function ListRecommendation() { +function FeedLists() { const { language } = useLanguage(); + const COLOR_INDEX = (num: number) => num % 5; //리스트 무한스크롤 리액트 쿼리 함수 @@ -34,9 +33,9 @@ function ListRecommendation() { fetchNextPage, isFetching, } = useInfiniteQuery({ - queryKey: [QUERY_KEYS.getRecommendedLists], + queryKey: [QUERY_KEYS.getRecentLists], queryFn: ({ pageParam: cursorUpdatedDate }) => { - return getRecommendedLists({ cursorUpdatedDate: cursorUpdatedDate }); + return getRecentLists({ cursorUpdatedDate: cursorUpdatedDate }); }, initialPageParam: null, getNextPageParam: (lastPage) => (lastPage.hasNext ? lastPage.cursorUpdatedDate : null), @@ -64,13 +63,9 @@ function ListRecommendation() { return (
-
-
NEW
- {commonLocale[language].sparkleEmofi} -
    - {recommendLists?.length !== 0 ? ( - recommendLists?.map((item: ListRecommendationType, index) => { + {LIST_DATA?.length !== 0 && + LIST_DATA?.map((item, index) => { return ( {isFetching ? ( @@ -80,24 +75,8 @@ function ListRecommendation() { className={styles.listWrapper} style={assignInlineVars({ [styles.listBackground]: exploreBackgroundColors[COLOR_INDEX(index)] })} > -
    -
    - -
    -
      - {item?.labels?.map((label) => { - return ( -
      - -
      - ); - })} -
    -
    -
    -
    {item.title}
    +
    -
    {`By. ${item.ownerNickname}`}
    {item?.ownerProfileImage ? ( )} +
    {item.ownerNickname}
    +
    {`Ver.${item.version}`}
    +
    +
    +
    {item.title}
    +
    {item.description}
    - -
    - - {commonLocale[language].more} -
    - )} ); - }) - ) : ( -
    - -
    - )} + })}
); } -export default ListRecommendation; +export default FeedLists; diff --git a/src/components/exploreComponents/FollowButton.tsx b/src/components/exploreComponents/FollowButton.tsx index 885f4cb3..4aa4e339 100644 --- a/src/components/exploreComponents/FollowButton.tsx +++ b/src/components/exploreComponents/FollowButton.tsx @@ -11,7 +11,7 @@ import { QUERY_KEYS } from '@/lib/constants/queryKeys'; import { UserType } from '@/lib/types/userProfileType'; import toasting from '@/lib/utils/toasting'; import toastMessage, { MAX_FOLLOWING } from '@/lib/constants/toastMessage'; -import * as styles from './UsersRecommendation.css'; +import * as styles from './RecommendedUsers.css'; import useBooleanOutput from '@/hooks/useBooleanOutput'; import Modal from '@/components/Modal/Modal'; diff --git a/src/components/exploreComponents/ListsRecommendation.css.ts b/src/components/exploreComponents/ListsRecommendation.css.ts index a5d78138..d3469839 100644 --- a/src/components/exploreComponents/ListsRecommendation.css.ts +++ b/src/components/exploreComponents/ListsRecommendation.css.ts @@ -6,6 +6,7 @@ export const listBackground = createVar(); export const wrapperOuter = style({ padding: '0 16px 70px', + marginTop: '12px', display: 'flex', flexDirection: 'column', @@ -38,14 +39,14 @@ const listWrapperHoverAnimation = keyframes({ export const listWrapper = style({ width: '100%', marginBottom: '35px', - padding: '44px 24px 14px', + padding: '30px 24px 14px', position: 'relative', display: 'flex', flexDirection: 'column', borderRadius: '24px', - backgroundColor: listBackground, + backgroundColor: '#fff', ':hover': { animation: `${listWrapperHoverAnimation} 0.1s forwards`, @@ -53,65 +54,64 @@ export const listWrapper = style({ }, }); -export const labelsWrapper = style({ +export const listTopWrapper = style({ display: 'flex', - gap: '8px', -}); - -export const labelWrapper = style({ - marginRight: '8px', + alignItems: 'center', + justifyContent: 'space-between', }); -export const categoryWrapper = style({ - marginBottom: '11px', +export const version = style({ + padding: '6px 12px', - display: 'flex', - justifyContent: 'flex-start', - alignItems: 'center', + fontWeight: '400', + letterSpacing: '-3%', + fontSize: '1.4rem', + color: '#3D95FF', + backgroundColor: '#EEF6FF', + borderRadius: '20px', }); export const listInformationWrapper = style({ - marginBottom: '23px', + marginBottom: '20px', display: 'flex', flexDirection: 'column', }); -export const listTitle = style([ - headlineSmall, - { - color: vars.color.black, - wordBreak: 'break-word', - }, -]); +export const listTitle = style({ + color: '#3E4455', + wordBreak: 'break-word', + fontWeight: '700', + fontSize: '2rem', + letterSpacing: '-3%', +}); -export const listDescription = style([ - bodyMedium, - { - marginTop: '13px', +export const listDescription = style({ + marginTop: '13px', - color: vars.color.gray9, - wordBreak: 'break-word', - }, -]); + fontWeight: '400', + fontSize: '1.6rem', + color: '#3E4455', + wordBreak: 'break-word', +}); export const ownerInformationWrapper = style({ display: 'flex', - justifyContent: 'flex-end', + justifyContent: 'flex-start', alignItems: 'center', gap: '8px', }); -export const ownerNicknameText = style([ - bodySmall, - { - color: vars.color.black, - }, -]); +export const ownerNicknameText = style({ + color: '#676B75', + fontSize: '1.6rem', + fontWeight: '500', + letterSpacing: '-3%', +}); export const profileImageWrapper = style({ - width: '30px', - height: '30px', + width: '40px', + height: '40px', position: 'relative', }); @@ -129,27 +129,6 @@ export const simpleListWrapper = style({ flexDirection: 'column', gap: '10px', - borderRadius: '15px', - border: `1px solid ${vars.color.gray5}`, + borderTop: `1px solid ${vars.color.gray5}`, backgroundColor: vars.color.white, }); - -export const showMoreButtonWrapper = style({ - display: 'flex', - alignItems: 'center', - justifyContent: 'center', - gap: '3px', - - cursor: 'pointer', -}); - -export const showMoreButton = style([ - labelSmall, - { - color: vars.color.gray9, - }, -]); - -export const noData = style({ - margin: '20px 0 70px', -}); diff --git a/src/components/exploreComponents/UsersRecommendation.css.ts b/src/components/exploreComponents/RecommendedUsers.css.ts similarity index 56% rename from src/components/exploreComponents/UsersRecommendation.css.ts rename to src/components/exploreComponents/RecommendedUsers.css.ts index f49c3db5..f997f770 100644 --- a/src/components/exploreComponents/UsersRecommendation.css.ts +++ b/src/components/exploreComponents/RecommendedUsers.css.ts @@ -6,15 +6,15 @@ export const wrapper = style({ padding: '0 16px', }); -export const sectionTitle = style([ - headlineSmall, - { - fontWeight: 600, - }, -]); +export const sectionTitle = style({ + color: '#323A43', + fontSize: '1.8rem', + fontWeight: 700, + letterSpacing: '-0.54px', +}); export const titleWrapper = style({ - marginBottom: '26px', + marginBottom: '12px', display: 'flex', alignItems: 'baseline', @@ -22,11 +22,11 @@ export const titleWrapper = style({ }); export const recommendUsersListWrapper = style({ - marginBottom: '30px', + marginBottom: '12px', display: 'flex', alignItems: 'center', - gap: '6px', + gap: '20px', overflowX: 'scroll', '::-webkit-scrollbar': { @@ -36,7 +36,7 @@ export const recommendUsersListWrapper = style({ export const recommendUserWrapper = style({ padding: '12px 9px', - width: '160px', + width: '122px', height: 'auto', position: 'relative', @@ -46,9 +46,6 @@ export const recommendUserWrapper = style({ alignItems: 'center', flexGrow: 0, flexShrink: 0, - - borderRadius: '5px', - border: `1px solid ${vars.color.gray5}`, }); export const closeButton = style({ @@ -58,9 +55,9 @@ export const closeButton = style({ }); export const imageWrapper = style({ - marginBottom: '13px', - width: '110px', - height: '110px', + marginBottom: '10px', + width: '122px', + height: '122px', position: 'relative', }); @@ -72,33 +69,32 @@ export const recommendUserProfileImage = style({ backgroundColor: vars.color.lightblue, }); -export const recommendUserNickname = style([ - titleSmall, - { - marginBottom: '10px', - - color: vars.color.black, - }, -]); +export const recommendUserNickname = style({ + color: '#121417', + marginBottom: '6px', + textAlign: 'center', + fontSize: '14px', + fontWeight: 400, + letterSpacing: '-0.28px', +}); -export const followButtonDefault = style([ - titleSmall, - { - width: '100%', - padding: '4px 0', +export const followButtonDefault = style({ + width: 'auto', + height: 'auto', + padding: '4px 6px', - display: 'flex', - alignItems: 'center', - justifyContent: 'center', + display: 'flex', + alignItems: 'center', + justifyContent: 'center', - backgroundColor: vars.color.blue, - borderRadius: '9px', - color: vars.color.white, - }, -]); + backgroundColor: '#3D95FF', + borderRadius: '20px', + color: vars.color.white, + fontSize: '1.2rem', + fontWeight: '400', +}); export const followButtonFollowing = style({ - background: vars.color.white, - border: `1px solid ${vars.color.black}`, - color: vars.color.black, + backgroundColor: vars.color.white, + color: '#8599AD', }); diff --git a/src/components/exploreComponents/UsersRecommendation.tsx b/src/components/exploreComponents/RecommendedUsers.tsx similarity index 92% rename from src/components/exploreComponents/UsersRecommendation.tsx rename to src/components/exploreComponents/RecommendedUsers.tsx index 1ee9f220..547a324b 100644 --- a/src/components/exploreComponents/UsersRecommendation.tsx +++ b/src/components/exploreComponents/RecommendedUsers.tsx @@ -5,14 +5,13 @@ import Link from 'next/link'; import { useQuery } from '@tanstack/react-query'; import { QUERY_KEYS } from '@/lib/constants/queryKeys'; -import getRecommendedUsers from '@/app/_api/explore/getRecommendedUsers'; +import getRecommendedUsers from '@/app/_api/home/getRecommendedUsers'; import { useUser } from '@/store/useUser'; import FollowButton from './FollowButton'; import { UserProfileType } from '@/lib/types/userProfileType'; import fallbackProfile from '/public/images/fallback_profileImage.webp'; -import * as styles from './UsersRecommendation.css'; -import waveEmoji from '/public/images/wave.png'; +import * as styles from './RecommendedUsers.css'; import { UserListsSkeleton } from './Skeleton'; import { commonLocale } from '@/components/locale'; import { useLanguage } from '@/store/useLanguage'; @@ -53,8 +52,7 @@ function UsersRecommendation() { {myId && usersList?.length !== 0 && (
-

HI, LISTER

- {commonLocale[language].waveEmoji} +

추천 리스터

    {usersList?.map((item: UserProfileType) => { diff --git a/src/components/exploreComponents/TrendingLists.tsx b/src/components/exploreComponents/TrendingLists.tsx deleted file mode 100644 index f947bb93..00000000 --- a/src/components/exploreComponents/TrendingLists.tsx +++ /dev/null @@ -1,207 +0,0 @@ -'use client'; -import Image from 'next/image'; -import Link from 'next/link'; -import { useQuery } from '@tanstack/react-query'; -import { assignInlineVars } from '@vanilla-extract/dynamic'; -import { Swiper, SwiperSlide } from 'swiper/react'; -import 'swiper/css'; -import { Autoplay, EffectCoverflow } from 'swiper/modules'; - -import getTrendingLists from '@/app/_api/explore/getTrendingLists'; -import { QUERY_KEYS } from '@/lib/constants/queryKeys'; -import { TrendingListType } from '@/lib/types/exploreType'; - -import * as styles from './TrendingLists.css'; -import { vars } from '@/styles/__theme.css'; -import { TrendingListsSkeleton } from './Skeleton'; -import oceanEmoji from '/public/images/ocean.png'; -import fallbackProfile from '/public/images/fallback_profileImage.webp'; -import { commonLocale } from '@/components/locale'; -import { useLanguage } from '@/store/useLanguage'; -import { BACKGROUND_COLOR_READ } from '@/styles/Color'; - -/**@todo 트렌딩 리스트 바뀐 디자인에 맞게 새로 갈아엎을 예정 */ - -const swiperSliderStyle = [ - { - width: '258px', - borderRadius: '40px', - }, - { - width: '190px', - borderRadius: '180px', - }, - { - width: '258px', - borderRadius: '40px', - }, - { - width: '172px', - borderRadius: '20px', - }, -]; -const STYLE_INDEX = (num: number) => num % 4; - -function TrendingList() { - const { language } = useLanguage(); - const { data: trendingLists, isFetching } = useQuery({ - queryKey: [QUERY_KEYS.getTrendingLists], - queryFn: () => getTrendingLists(), - }); - - const swiperStyle = { - width: '100vw', - height: '100%', - padding: '10px 0', - }; - - if (isFetching) { - return ; - } - - return ( -
    -
    -

    TRENDING

    - {commonLocale[language].oceanEmofi} -
    -
    -
    - {trendingLists && trendingLists.length > 0 && ( - - {trendingLists.map((item, index) => ( - - - - ))} - - {/* 슬라이드 개수가 10개 미만일 경우 추가 슬라이드를 생성 */} - {trendingLists.length < 10 && - Array.from({ length: 10 - trendingLists.length }).map((_, index) => ( - - - - ))} - - )} -
    -
    -
    - ); -} - -interface TrendingListItemProps { - item?: TrendingListType; - index: number; -} - -function TrendingListItem({ item, index }: TrendingListItemProps) { - return ( - -
    - {item?.itemImageUrl ? ( -
    - -
    - ) : ( -
    - -
    - )} -
    - - ); -} - -export default TrendingList; - -interface TrendingListInformationType { - item?: TrendingListType; -} - -function TrendingListInformation({ item }: TrendingListInformationType) { - const { language } = useLanguage(); - return ( -
    -
    -

    {item?.title}

    -
    -
    -
    -
    - {item?.ownerProfileImageUrl ? ( - {commonLocale[language].userProfileImage} - ) : ( - {commonLocale[language].userProfileImage} - )} -
    - - {item?.ownerNickname} - -
    -
    - ); -} diff --git a/src/components/floatingButton/ArrowUpFloatingButton.tsx b/src/components/floatingButton/ArrowUpFloatingButton.tsx index 03d84214..c4ce238f 100644 --- a/src/components/floatingButton/ArrowUpFloatingButton.tsx +++ b/src/components/floatingButton/ArrowUpFloatingButton.tsx @@ -37,7 +37,7 @@ export default function ArrowUpFloatingButton() { <> {isVisible && (
    - +
    )} diff --git a/src/components/floatingButton/FloatingContainer.css.ts b/src/components/floatingButton/FloatingContainer.css.ts index f9ac96a0..76e82f2b 100644 --- a/src/components/floatingButton/FloatingContainer.css.ts +++ b/src/components/floatingButton/FloatingContainer.css.ts @@ -26,9 +26,9 @@ export const basicButton = style({ height: '56px', padding: '1rem', - background: vars.color.blue, + background: vars.color.white, borderRadius: '50%', - boxShadow: '0px 4px 4px rgba(0, 0, 0, 0.25)', + boxShadow: '0px 0px 4px 0px rgba(142, 142, 142, 0.04), 0px 8px 16px 0px rgba(116, 116, 116, 0.08)', cursor: 'pointer', transition: 'all 0.1s linear', @@ -54,7 +54,7 @@ export const variant = styleVariants({ basicButton, { animation: `${fadeIn} 500ms ease`, - filter: `opacity(0.5)`, + // filter: `opacity(0.5)`, }, ], }); @@ -69,7 +69,7 @@ const dropdown = keyframes({ }); export const icon = style({ - transform: 'translate(25%, 25%);', + transform: 'translate(45%, 45%);', }); export const menuButtons = style({ diff --git a/src/components/floatingButton/PlusOptionFloatingButton.tsx b/src/components/floatingButton/PlusOptionFloatingButton.tsx index 57990ddb..3acb62b8 100644 --- a/src/components/floatingButton/PlusOptionFloatingButton.tsx +++ b/src/components/floatingButton/PlusOptionFloatingButton.tsx @@ -1,28 +1,19 @@ 'use client'; -import { usePathname, useRouter } from 'next/navigation'; +import { usePathname } from 'next/navigation'; import * as styles from './FloatingContainer.css'; -import PlusIcon from '/public/icons/plus.svg'; -import ShareAltIcon from '/public/icons/share_alt.svg'; -import WriteIcon from '/public/icons/write.svg'; +import ShareAltIcon from '/public/icons/ver3/share.svg'; -import useBooleanOutput from '@/hooks/useBooleanOutput'; -import { useUser } from '@/store/useUser'; import { useLanguage } from '@/store/useLanguage'; import copyUrl from '@/lib/utils/copyUrl'; -import LoginModal from '@/components/login/LoginModal'; -import Modal from '@/components/Modal/Modal'; import { commonLocale } from '@/components/locale'; function FloatingMenu() { - const router = useRouter(); const path = usePathname(); - const { user } = useUser(); - const { isOn, handleSetOn, handleSetOff } = useBooleanOutput(); const { language } = useLanguage(); const handleSharePage = () => { @@ -30,44 +21,22 @@ function FloatingMenu() { copyUrl(`https://listywave.com${path}`, language); }; - const handleMoveToPage = () => { - // TODO 토큰 유효성 검증 관련 인가 처리 로직 추가 - // 지금은 토큰이 있는 지 확인 후 이동만 간단하게 처리시켜 둠(추후 수정 예정) - if (!user.id) { - handleSetOn(); - return; - } - router.push('/list/create'); - }; - return ( <>
    -
    - -
    - {isOn && ( - - - - )} ); } export default function PlusOptionFloatingButton() { - const { language } = useLanguage(); - const { isOn, toggle } = useBooleanOutput(); - return ( <> - {isOn && } -
    toggle()}> - +
    +
    ); diff --git a/src/components/floatingButton/__PlusOptionFloationButton.tsx b/src/components/floatingButton/__PlusOptionFloationButton.tsx new file mode 100644 index 00000000..57990ddb --- /dev/null +++ b/src/components/floatingButton/__PlusOptionFloationButton.tsx @@ -0,0 +1,74 @@ +'use client'; + +import { usePathname, useRouter } from 'next/navigation'; + +import * as styles from './FloatingContainer.css'; + +import PlusIcon from '/public/icons/plus.svg'; +import ShareAltIcon from '/public/icons/share_alt.svg'; +import WriteIcon from '/public/icons/write.svg'; + +import useBooleanOutput from '@/hooks/useBooleanOutput'; +import { useUser } from '@/store/useUser'; +import { useLanguage } from '@/store/useLanguage'; +import copyUrl from '@/lib/utils/copyUrl'; + +import LoginModal from '@/components/login/LoginModal'; +import Modal from '@/components/Modal/Modal'; +import { commonLocale } from '@/components/locale'; + +function FloatingMenu() { + const router = useRouter(); + const path = usePathname(); + + const { user } = useUser(); + const { isOn, handleSetOn, handleSetOff } = useBooleanOutput(); + const { language } = useLanguage(); + + const handleSharePage = () => { + // TODO 카카오 공유하기 기능으로 변경하기 + copyUrl(`https://listywave.com${path}`, language); + }; + + const handleMoveToPage = () => { + // TODO 토큰 유효성 검증 관련 인가 처리 로직 추가 + // 지금은 토큰이 있는 지 확인 후 이동만 간단하게 처리시켜 둠(추후 수정 예정) + if (!user.id) { + handleSetOn(); + return; + } + router.push('/list/create'); + }; + + return ( + <> +
    +
    + +
    +
    + +
    +
    + {isOn && ( + + + + )} + + ); +} + +export default function PlusOptionFloatingButton() { + const { language } = useLanguage(); + const { isOn, toggle } = useBooleanOutput(); + + return ( + <> + {isOn && } +
    toggle()}> + +
    + + ); +} diff --git a/src/lib/constants/queryKeys.ts b/src/lib/constants/queryKeys.ts index 28403e16..63046abc 100644 --- a/src/lib/constants/queryKeys.ts +++ b/src/lib/constants/queryKeys.ts @@ -7,6 +7,8 @@ export const QUERY_KEYS = { getCategories: 'getCategories', getComments: 'getComments', getRecommendedLists: 'getRecommendedLists', + getRecentLists: 'getRecentLists', + getFollowingLists: 'getFollowingLists', getRecommendedUsers: 'getRecommendedUsers', getTrendingLists: 'getTrendingLists', getNotificationAllChecked: 'getNotificationOnAllChecked', diff --git a/src/lib/types/exploreType.ts b/src/lib/types/exploreType.ts index b6fc88db..6c69cfcf 100644 --- a/src/lib/types/exploreType.ts +++ b/src/lib/types/exploreType.ts @@ -1,12 +1,20 @@ +interface Top3Type { + id: number; + rank: number; + title: string; +} + export interface TrendingListType { id: number; ownerId: number; ownerNickname: string; ownerProfileImageUrl: string; title: string; + category: string; description: string; backgroundColor: string; itemImageUrl: string; + top3: Top3Type[]; } export interface UsersRecommendationItemType { @@ -39,4 +47,5 @@ export interface ListRecommendationType { title: string; description: string; items: ListItemType[]; + version: number; } diff --git a/src/lib/types/noticeType.ts b/src/lib/types/noticeType.ts new file mode 100644 index 00000000..283d620d --- /dev/null +++ b/src/lib/types/noticeType.ts @@ -0,0 +1,35 @@ +export interface NoticeListItemType { + id: number; + createdDate: string; + title: string; + itemImageUrl: string | null; + category: string; + description: string; +} + +export interface NoticeDetailType { + id: number; + category: string; + title: string; + description: string; + content: NoticeContentType[]; + createdDate: string; + prevNotice: { + id: number; + title: string; + description: string; + }; + nextNotice: { + id: number; + title: string; + description: string; + }; +} + +export interface NoticeContentType { + type: string; + description: string; + imageUrl: string; + buttonName: string; + buttonLink: string; +} diff --git a/src/store/useTab.ts b/src/store/useTab.ts new file mode 100644 index 00000000..49feded5 --- /dev/null +++ b/src/store/useTab.ts @@ -0,0 +1,13 @@ +import { create } from 'zustand'; + +export type TabType = 'recommendation' | 'recent' | 'following'; + +interface tabStoreType { + currentTab: TabType; + setCurrentTab: (tabType: TabType) => void; +} + +export const useTab = create((set) => ({ + currentTab: 'recommendation', + setCurrentTab: (tabType: TabType) => set({ currentTab: tabType }), +})); diff --git a/src/styles/GlobalStyles.css.ts b/src/styles/GlobalStyles.css.ts index d2cc5160..95fbaa1b 100644 --- a/src/styles/GlobalStyles.css.ts +++ b/src/styles/GlobalStyles.css.ts @@ -8,6 +8,10 @@ globalStyle('html', { backgroundColor: vars.color.gray3, }); +globalStyle('body', { + backgroundColor: '#F5F6FA !important', +}); + globalStyle('body *', { boxSizing: 'border-box', fontFamily: Pretendard,