34 Commits

Author SHA1 Message Date
keyan
5232b59625 upgrade to next-auth 4 (bonus: improve error pages) 2023-07-29 14:38:20 -05:00
keyan
688d67a0d6 improve service worker asset precaching and offline page 2023-07-28 10:57:12 -05:00
keyan
ab2046ab0b fix issues with new linting 2023-07-25 09:14:45 -05:00
keyan
6407455def upgrade react-bootstrap 2023-07-24 13:53:53 -05:00
keyan
59f7b6ff26 Revert "Revert "shield your eyes; massive, squashed refactor; nextjs/react/react-dom/apollo upgrades""
This reverts commit 18910fa2ed470fe12ffbfb83df18e206101f0a05.
2023-07-23 10:08:43 -05:00
keyan
18910fa2ed Revert "shield your eyes; massive, squashed refactor; nextjs/react/react-dom/apollo upgrades"
This reverts commit d0314ab73c42ebf85fe2f418dddd681af45dbc55.
2023-07-23 09:16:12 -05:00
keyan
d0314ab73c shield your eyes; massive, squashed refactor; nextjs/react/react-dom/apollo upgrades 2023-07-21 17:33:11 -05:00
keyan
0c51309520 enhance pwa presentation 2023-07-06 16:53:48 -05:00
keyan
69f6f63b9c small manifest changes 2023-07-05 09:33:46 -05:00
ekzyis
388e00dd04
Service worker rework, Web Target Share API & Web Push API (#324)
* npm uninstall next-pwa

next-pwa was last updated in August 2022.
There is also an issue which mentions that next-pwa is abandoned (?): https://github.com/shadowwalker/next-pwa/issues/482

But the main reason for me uninstalling it is that it adds a lot of preconfigured stuff which is not necessary for us.
It even lead to a bug since pages were cached without our knowledge.

So I will go with a different PWA approach. This different approach should do the following:
- make it more transparent what the service worker is doing
- gives us more control to configure the service worker and thus making it easier

* Use workbox-webpack-plugin

Every other plugin (`next-offline`, `next-workbox-webpack-plugin`, `next-with-workbox`, ...) added unnecessary configuration which felt contrary to how PWAs should be built.
(PWAs should progressivly enhance the website in small steps, see https://web.dev/learn/pwa/getting-started/#focus-on-a-feature)

These default configurations even lead to worse UX since they made invalid assumptions about stacker.news:
We _do not_ want to cache our start url and we _do not_ want to cache anything unless explicitly told to.
Almost every page on SN should be fresh for the best UX.

To achieve this, by default, the service worker falls back to the network (as if the service worker wasn't there).

Therefore, this should be the simplest configuration with a valid precache and cache busting support.

In the future, we can try to use prefetching to improve performance of navigation requests.

* Add support for Web Share Target API

See https://developer.chrome.com/articles/web-share-target/

* Use Web Push API for push notifications

I followed this (very good!) guide: https://web.dev/notifications/

* Refactor code related to Web Push

* Send push notification to users on events

* Merge notifications

* Send notification to author of every parent recursively

* Remove unused userId param in savePushSubscription

As it should be, the user id is retrieved from the authenticated user in the backend.

* Resubscribe user if push subscription changed

* Update old subscription if oldEndpoint was given

* Allow users to unsubscribe

* Use LTREE operator instead of recursive query

* Always show checkbox for push notifications

* Justify checkbox to end

* Update title of first push notification

* Fix warning from uncontrolled to controlled

* Add comment about Notification.requestPermission

* Fix timestamp

* Catch error on push subscription toggle

* Wrap function bodies in try/catch

* Use Promise.allSettled

* Filter subscriptions by user notification settings

* Fix user notification filter

* Use skipWaiting

---------

Co-authored-by: ekzyis <ek@stacker.news>
2023-07-04 14:36:07 -05:00
ekzyis
e97509eea7
Use PWA with display: standalone (#292)
* Use next-pwa

* Use standalone + back button

* Use Notification API

* Use custom service worker

* Use url_handlers

* Add offline page

* Use smaller icon in notification

* Only prompt for notifications if logged in

* small enhancements to standalone pwa

* remove unused back arrow

---------

Co-authored-by: ekzyis <ek@stacker.news>
Co-authored-by: keyan <keyan.kousha+huumn@gmail.com>
2023-05-31 17:28:33 -05:00
keyan
994041dceb pwa-ish 2023-05-11 17:29:05 -05:00
keyan
74df0db035 client side error boundary 2023-02-08 17:59:14 -06:00
keyan
ae5c6c457f global modal + small fixes/enhancements 2023-01-10 17:13:37 -06:00
keyan
2080cb896d lexical beta test url 2023-01-05 13:24:09 -06:00
keyan
20a6a51492 dull title when visited, more distinct visited links 2022-08-31 15:22:25 -05:00
keyan
cb313429d5 job board enhancements 2022-07-21 17:55:05 -05:00
keyan
4ba1227605 WIP profiles 2022-05-05 15:39:05 -05:00
keyan
e168925f6c make notification hover darker 2022-04-15 11:56:01 -05:00
keyan
64124eb289 make bookmark open in the browser 2022-04-14 12:17:19 -05:00
keyan
9b8238616a make mobile shortcut icons pretty 2022-04-14 12:05:44 -05:00
keyan
ef739d97fc readability enhancements: text size/color/line height 2022-02-09 13:15:38 -06:00
keyan
f4006686d9 custom error pages 2022-01-11 13:38:15 -06:00
keyan
c89fb2716a don't load dark mode as a module 2021-11-16 14:55:40 -06:00
keyan
749b49c313 preload font, only show header items when they're done loading 2021-11-11 16:14:42 -06:00
keyan
1cdd166685 more dark mode fixes 2021-11-09 17:13:34 -06:00
keyan
227d7f14ad fix a few issues with dark mode 2021-11-09 17:04:15 -06:00
keyan
a3544fb67f dark mode with css variables instead 2021-11-09 16:43:56 -06:00
keyan
46a4402bb6 change favicon when there are notifications and make notification icon square 2021-07-08 14:52:11 -05:00
keyan
4b07edf6f5 ready for invoices 2021-05-06 16:15:22 -05:00
keyan
ec3f6b922d a bunch of new stuff 2021-04-22 17:14:32 -05:00
keyan
9acde2df1c a bunch of increments 2021-04-12 13:05:09 -05:00
keyan
341b3a291a begin working on db schema 2021-03-25 14:29:24 -05:00
keyan
53a3236b0d Initial commit from Create Next App 2021-03-22 15:36:10 -05:00