একটি অফলাইন ফলব্যাক পৃষ্ঠা তৈরি করুন

আপনার ফোন বা কম্পিউটারে গুগল অ্যাসিস্ট্যান্ট অ্যাপ, স্ল্যাক অ্যাপ, জুম অ্যাপ এবং অন্য কোনও প্ল্যাটফর্ম-নির্দিষ্ট অ্যাপের মধ্যে কী মিল আছে? ঠিক আছে, তারা সর্বদা অন্তত আপনাকে কিছু দেয়। এমনকি আপনার নেটওয়ার্ক সংযোগ না থাকলেও, আপনি এখনও সহকারী অ্যাপ খুলতে পারেন, বা স্ল্যাক এ প্রবেশ করতে পারেন বা জুম চালু করতে পারেন। আপনি বিশেষভাবে অর্থবহ কিছু নাও পেতে পারেন বা এমনকি আপনি যা অর্জন করতে চান তা অর্জন করতে অক্ষম হতে পারেন, তবে অন্তত আপনি কিছু পান এবং অ্যাপটি নিয়ন্ত্রণে থাকে।

অফলাইনে থাকা অবস্থায় Google Assistant মোবাইল অ্যাপ।
গুগল সহকারী।

অফলাইনে থাকা অবস্থায় স্ল্যাক মোবাইল অ্যাপ।
স্ল্যাক।

অফলাইনে থাকা অবস্থায় মোবাইল অ্যাপ জুম করুন।
জুম

প্ল্যাটফর্ম-নির্দিষ্ট অ্যাপ্লিকেশনগুলির সাথে, এমনকি আপনার নেটওয়ার্ক সংযোগ না থাকলেও, আপনি কখনই কিছুই পাবেন না।

বিপরীতে, ওয়েবে, ঐতিহ্যগতভাবে আপনি যখন অফলাইনে থাকেন তখন কিছুই পান না। ক্রোম আপনাকে অফলাইন ডিনো গেম দেয়, কিন্তু এটিই।

গুগল ক্রোম মোবাইল অ্যাপ অফলাইন ডিনো গেম দেখাচ্ছে।
iOS এর জন্য Google Chrome।

গুগল ক্রোম ডেস্কটপ অ্যাপ অফলাইন ডিনো গেম দেখাচ্ছে।
MacOS এর জন্য Google Chrome।

ওয়েবে, যখন আপনার নেটওয়ার্ক সংযোগ না থাকে, ডিফল্টরূপে আপনি কিছুই পান না৷

একটি কাস্টম পরিষেবা কর্মীর সাথে একটি অফলাইন ফলব্যাক পৃষ্ঠা৷

এটা এই ভাবে হতে হবে না, যদিও. পরিষেবা কর্মীদের ধন্যবাদ এবং ক্যাশে স্টোরেজ API , আপনি আপনার ব্যবহারকারীদের জন্য একটি কাস্টমাইজড অফলাইন অভিজ্ঞতা প্রদান করতে পারেন৷ ব্যবহারকারী বর্তমানে অফলাইনে রয়েছে এমন তথ্য সহ এটি একটি সাধারণ ব্র্যান্ডেড পৃষ্ঠা হতে পারে, তবে এটি আরও সৃজনশীল সমাধান হতে পারে, যেমন, একটি ম্যানুয়াল পুনঃসংযোগ বোতাম এবং একটি স্বয়ংক্রিয় পুনঃসংযোগের প্রচেষ্টা সহ বিখ্যাত ট্রিভাগো অফলাইন মেজ গেম গণনা

trivago অফলাইন গোলকধাঁধা সহ trivago অফলাইন পৃষ্ঠা.
ট্রিভাগো অফলাইন গোলকধাঁধা।

সেবা কর্মী নিবন্ধন

এটি ঘটানোর উপায় হল একজন পরিষেবা কর্মীর মাধ্যমে। নীচের কোড নমুনার মতো আপনি আপনার প্রধান পৃষ্ঠা থেকে একজন পরিষেবা কর্মী নিবন্ধন করতে পারেন। আপনার অ্যাপ লোড হয়ে গেলে সাধারণত আপনি এটি করেন।

window.addEventListener("load", () => {
  if ("serviceWorker" in navigator) {
    navigator.serviceWorker.register("service-worker.js");
  }
});

পরিষেবা কর্মী কোড

প্রকৃত পরিষেবা কর্মী ফাইলের বিষয়বস্তু প্রথম দর্শনে কিছুটা জড়িত বলে মনে হতে পারে, কিন্তু নীচের নমুনার মন্তব্যগুলিকে পরিষ্কার করা উচিত। মূল ধারণা হল offline.html নামের একটি ফাইলকে প্রাক-ক্যাশ করা যা শুধুমাত্র ব্যর্থ ন্যাভিগেশন অনুরোধে পরিবেশন করা হয় এবং ব্রাউজারকে অন্যান্য সমস্ত ক্ষেত্রে পরিচালনা করতে দেওয়া হয়:

/*
Copyright 2015, 2019, 2020, 2021 Google LLC. 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.
*/

// Incrementing OFFLINE_VERSION will kick off the install event and force
// previously cached resources to be updated from the network.
// This variable is intentionally declared and unused.
// Add a comment for your linter if you want:
// eslint-disable-next-line no-unused-vars
const OFFLINE_VERSION = 1;
const CACHE_NAME = "offline";
// Customize this with a different URL if needed.
const OFFLINE_URL = "offline.html";

self.addEventListener("install", (event) => {
  event.waitUntil(
    (async () => {
      const cache = await caches.open(CACHE_NAME);
      // Setting {cache: 'reload'} in the new request ensures that the
      // response isn't fulfilled from the HTTP cache; i.e., it will be
      // from the network.
      await cache.add(new Request(OFFLINE_URL, { cache: "reload" }));
    })()
  );
  // Force the waiting service worker to become the active service worker.
  self.skipWaiting();
});

self.addEventListener("activate", (event) => {
  event.waitUntil(
    (async () => {
      // Enable navigation preload if it's supported.
      // See https://developers.google.com/web/updates/2017/02/navigation-preload
      if ("navigationPreload" in self.registration) {
        await self.registration.navigationPreload.enable();
      }
    })()
  );

  // Tell the active service worker to take control of the page immediately.
  self.clients.claim();
});

self.addEventListener("fetch", (event) => {
  // Only call event.respondWith() if this is a navigation request
  // for an HTML page.
  if (event.request.mode === "navigate") {
    event.respondWith(
      (async () => {
        try {
          // First, try to use the navigation preload response if it's
          // supported.
          const preloadResponse = await event.preloadResponse;
          if (preloadResponse) {
            return preloadResponse;
          }

          // Always try the network first.
          const networkResponse = await fetch(event.request);
          return networkResponse;
        } catch (error) {
          // catch is only triggered if an exception is thrown, which is
          // likely due to a network error.
          // If fetch() returns a valid HTTP response with a response code in
          // the 4xx or 5xx range, the catch() will NOT be called.
          console.log("Fetch failed; returning offline page instead.", error);

          const cache = await caches.open(CACHE_NAME);
          const cachedResponse = await cache.match(OFFLINE_URL);
          return cachedResponse;
        }
      })()
    );
  }

  // If our if() condition is false, then this fetch handler won't
  // intercept the request. If there are any other fetch handlers
  // registered, they will get a chance to call event.respondWith().
  // If no fetch handlers call event.respondWith(), the request
  // will be handled by the browser as if there were no service
  // worker involvement.
});

অফলাইন ফলব্যাক পৃষ্ঠা

offline.html ফাইলটি হল যেখানে আপনি সৃজনশীল হতে পারেন এবং এটিকে আপনার প্রয়োজনের সাথে মানিয়ে নিতে পারেন এবং আপনার ব্র্যান্ডিং যোগ করতে পারেন৷ নীচের উদাহরণটি দেখায় যে কতটা সম্ভব। এটি একটি বোতাম প্রেসের উপর ভিত্তি করে ম্যানুয়াল রিলোডের পাশাপাশি online ইভেন্ট এবং নিয়মিত সার্ভার পোলিং এর উপর ভিত্তি করে স্বয়ংক্রিয় রিলোড উভয়ই প্রদর্শন করে।

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />

    <title>You are offline</title>

    <!-- Inline the page's stylesheet. -->
    <style>
      body {
        font-family: helvetica, arial, sans-serif;
        margin: 2em;
      }

      h1 {
        font-style: italic;
        color: #373fff;
      }

      p {
        margin-block: 1rem;
      }

      button {
        display: block;
      }
    </style>
  </head>
  <body>
    <h1>You are offline</h1>

    <p>Click the button below to try reloading.</p>
    <button type="button">⤾ Reload</button>

    <!-- Inline the page's JavaScript file. -->
    <script>
      // Manual reload feature.
      document.querySelector("button").addEventListener("click", () => {
        window.location.reload();
      });

      // Listen to changes in the network state, reload when online.
      // This handles the case when the device is completely offline.
      window.addEventListener('online', () => {
        window.location.reload();
      });

      // Check if the server is responding and reload the page if it is.
      // This handles the case when the device is online, but the server
      // is offline or misbehaving.
      async function checkNetworkAndReload() {
        try {
          const response = await fetch('.');
          // Verify we get a valid response from the server
          if (response.status >= 200 && response.status < 500) {
            window.location.reload();
            return;
          }
        } catch {
          // Unable to connect to the server, ignore.
        }
        window.setTimeout(checkNetworkAndReload, 2500);
      }

      checkNetworkAndReload();
    </script>
  </body>
</html>

ডেমো

আপনি নীচে এমবেড করা ডেমোতে অফলাইন ফলব্যাক পৃষ্ঠাটি দেখতে পারেন৷ আপনি যদি আগ্রহী হন তবে আপনি গ্লিচ-এ সোর্স কোডটি অন্বেষণ করতে পারেন।

আপনার অ্যাপটি ইনস্টলযোগ্য করার জন্য সাইড নোট

এখন যেহেতু আপনার সাইটে একটি অফলাইন ফলব্যাক পৃষ্ঠা রয়েছে, আপনি পরবর্তী পদক্ষেপগুলি সম্পর্কে ভাবতে পারেন৷ আপনার অ্যাপকে ইনস্টল করার জন্য, আপনাকে একটি ওয়েব অ্যাপ ম্যানিফেস্ট যোগ করতে হবে এবং ঐচ্ছিকভাবে একটি ইনস্টল কৌশল নিয়ে আসতে হবে।

Workbox.js এর সাথে একটি অফলাইন ফলব্যাক পৃষ্ঠা পরিবেশন করার বিষয়ে সাইড নোট

আপনি ওয়ার্কবক্সের কথা শুনে থাকতে পারেন। ওয়ার্কবক্স হল ওয়েব অ্যাপে অফলাইন সমর্থন যোগ করার জন্য জাভাস্ক্রিপ্ট লাইব্রেরির একটি সেট। আপনি যদি নিজে কম পরিষেবা কর্মী কোড লিখতে পছন্দ করেন, আপনি শুধুমাত্র একটি অফলাইন পৃষ্ঠার জন্য ওয়ার্কবক্স রেসিপি ব্যবহার করতে পারেন।

পরবর্তীতে, কীভাবে আপনার অ্যাপের জন্য একটি ইনস্টল কৌশল নির্ধারণ করবেন তা শিখুন।