Привет друзья,

Сегодня я покажу вам, как создать прогрессивное веб-приложение с помощью React JS.

Сегодня мы создаем приложение Weather, сначала посмотрим, как оно будет выглядеть после завершения https://weather-app-raj.netlify.app/

Вы можете увидеть весь код здесь https://github.com/rajprajapat7/weather-app

Давайте начнем кодировать

Во-первых, мы должны создать приложение для реагирования

npx create-react-app weather-app
cd weather-app

Для получения данных о погоде мы используем RapidApi (это бесплатно)

https://rapidapi.com/community/api/open-weather-map

Создайте текстовое поле, которое вводит название города. В демо я использую поле со списком autocomplete-ui материала. Это ваш выбор, как вы выбираете город.

После выбора города вам просто нужно вызвать API с авторизованным Rapidapi-ключом, который вы получите по ссылке, указанной выше.

Вы получите данные JSON, отобразите эти данные по своему выбору.

Давайте перейдем к нашей основной теме: прогрессивное веб-приложение.

Итак, во-первых, что такое прогрессивное веб-приложение?

Говоря простым языком, мы можем сказать. Приложение, созданное с использованием веб-технологий, таких как HTML, CSS, JS, и предназначенное для работы на любой платформе, использующей браузер, соответствующий стандартам, в том числе на обоих (мобильных или настольных).

Откройте Chrome Dev Tools в браузере и перейдите на вкладку Lighthouse.

Если нет такой вкладки, как маяк, вы можете легко получить расширение Chrome из магазина Chrome.

Выберите опцию «Прогрессивное веб-приложение и мобильное устройство» и «Создать отчет».

Теперь нам нужно создать Service worker, он поможет загрузить ваше приложение из кеша, если медленная сеть на мобильном устройстве.

Создайте новый файл worker.js в общей папке (public/worker.js) и добавьте следующий код:

var CACHE_NAME = 'weather-app';
var urlsToCache = [
'/',
'/completed'
];
// Install a service worker
this.addEventListener('install', event => {
// Perform install steps
event.waitUntil(
caches.open(CACHE_NAME)
.then(function(cache) {
console.log('Opened cache');
return cache.addAll(urlsToCache);
})
);
});
// Cache and return requests
this.addEventListener('fetch', event => {
event.respondWith(
caches.match(event.request)
.then(function(response) {
// Cache hit - return response
if (response) {
return response;
}
return fetch(event.request);
}
)
);
});
// Update a service worker
this.addEventListener('activate', event => {
var cacheWhitelist = ['pwa-weather-app'];
event.waitUntil(
caches.keys().then(cacheNames => {
return Promise.all(
cacheNames.map(cacheName => {
if (cacheWhitelist.indexOf(cacheName) === -1) {
return caches.delete(cacheName);
}
})
);
})
);
});

Кроме того, создайте файл (src/serviceWorker.js) и добавьте следующий код:

// This optional code is used to register a service worker.
// register() is not called by default.
// This lets the app load faster on subsequent visits in production, and gives
// it offline capabilities. However, it also means that developers (and users)
// will only see deployed updates on subsequent visits to a page, after all the
// existing tabs open on the page have been closed, since previously cached
// resources are updated in the background.
// To learn more about the benefits of this model and instructions on how to
// opt-in, read http://bit.ly/CRA-PWA
const isLocalhost = Boolean(
window.location.hostname === 'localhost' ||
// [::1] is the IPv6 localhost address.
window.location.hostname === '[::1]' ||
// 127.0.0.1/8 is considered localhost for IPv4.
window.location.hostname.match(
/^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/
)
);
export function register(config) {
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
// The URL constructor is available in all browsers that support SW.
const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href);
if (publicUrl.origin !== window.location.origin) {
// Our service worker won't work if PUBLIC_URL is on a different origin
// from what our page is served on. This might happen if a CDN is used to
// serve assets; see https://github.com/facebook/create-react-app/issues/2374
return;
}
window.addEventListener('load', () => {
const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;
if (isLocalhost) {
// This is running on localhost. Let's check if a service worker still exists or not.
checkValidServiceWorker(swUrl, config);
// Add some additional logging to localhost, pointing developers to the
// service worker/PWA documentation.
navigator.serviceWorker.ready.then(() => {
console.log(
'This web app is being served cache-first by a service ' +
'worker. To learn more, visit http://bit.ly/CRA-PWA'
);
});
} else {
// Is not localhost. Just register service worker
registerValidSW(swUrl, config);
}
});
}
}
function registerValidSW(swUrl, config) {
navigator.serviceWorker
.register(swUrl)
.then(registration => {
registration.onupdatefound = () => {
const installingWorker = registration.installing;
if (installingWorker == null) {
return;
}
installingWorker.onstatechange = () => {
if (installingWorker.state === 'installed') {
if (navigator.serviceWorker.controller) {
// At this point, the updated precached content has been fetched,
// but the previous service worker will still serve the older
// content until all client tabs are closed.
console.log(
'New content is available and will be used when all ' +
'tabs for this page are closed. See http://bit.ly/CRA-PWA.'
);
// Execute callback
if (config && config.onUpdate) {
config.onUpdate(registration);
}
} else {
// At this point, everything has been precached.
// It's the perfect time to display a
// "Content is cached for offline use." message.
console.log('Content is cached for offline use.');
// Execute callback
if (config && config.onSuccess) {
config.onSuccess(registration);
}
}
}
};
};
})
.catch(error => {
console.error('Error during service worker registration:', error);
});
}
function checkValidServiceWorker(swUrl, config) {
// Check if the service worker can be found. If it can't reload the page.
fetch(swUrl)
.then(response => {
// Ensure service worker exists, and that we really are getting a JS file.
const contentType = response.headers.get('content-type');
if (
response.status === 404 ||
(contentType != null && contentType.indexOf('javascript') === -1)
) {
// No service worker found. Probably a different app. Reload the page.
navigator.serviceWorker.ready.then(registration => {
registration.unregister().then(() => {
window.location.reload();
});
});
} else {
// Service worker found. Proceed as normal.
registerValidSW(swUrl, config);
}
})
.catch(() => {
console.log(
'No internet connection found. App is running in offline mode.'
);
});
}
export function unregister() {
if ('serviceWorker' in navigator) {
navigator.serviceWorker.ready.then(registration => {
registration.unregister();
});
}
}

Затем обновите (src/Index.js) и добавьте этот код:

import * as serviceWorker from './serviceWorker';
serviceWorker.register();

Затем обновите (public/index.html). Добавьте этот код в тело HTML.

<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('worker.js').then(function(registration) {
console.log('Worker registration successful', registration.scope);
}, function(err) {
console.log('Worker registration failed', err);
}).catch(function(err) {
console.log(err);
});
});
} else {
console.log('Service Worker is not supported by browser.');
}
</script>

В последнюю очередь создайте новую папку images в общей папке (public/images). Добавьте изображение значка Splash в папку (с именем «logo512.png»). Чтобы управлять его конфигурацией, вы можете увидеть manifest.json, но вам не нужно об этом беспокоиться. Это будет автоматически управляться. Размер изображения должен быть 512*512.

{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}

menifest.json примерно такой код

Готово: просто перезапустите приложение, отключите Интернет и перезагрузите его, и вы увидите рабочую страницу приложения без Интернета.

Повторно создать отчет Lighthouse. Возможно, вы обнаружите ошибку для HTTPS-соединения, но не думайте об этом, сейчас она будет автоматически удалена, после чего мы развернем и добавим SSL.

Поздравляем, вы создали рабочее приложение Progressive React Weather!