Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(workbox): New configuration for specifying plugins when configuring a strategy #337

Merged
merged 14 commits into from
Oct 1, 2020

Conversation

Yihao-G
Copy link
Contributor

@Yihao-G Yihao-G commented Aug 26, 2020

Fixes #336

@codecov
Copy link

codecov bot commented Aug 27, 2020

Codecov Report

Merging #337 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #337   +/-   ##
=======================================
  Coverage   85.43%   85.43%           
=======================================
  Files          10       10           
  Lines         357      357           
  Branches      108      108           
=======================================
  Hits          305      305           
  Misses         48       48           
  Partials        4        4           

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update c59a9dc...1f1b235. Read the comment docs.

@Yihao-G Yihao-G marked this pull request as ready for review August 27, 2020 03:56
@pi0
Copy link
Member

pi0 commented Aug 27, 2020

Hi @Yihao-G thanks for efforts on PR i really appreciate it. However it is probably not best way to serialize/genenerate runtime code directly from nuxt.config and we are moving away from it.

It is possible to use workboxextensions to inject custom code to generated sw.js or completely override template using using swtemplate.

Shall we directly use plugin and only support subset of json-serializable options?

@Yihao-G
Copy link
Contributor Author

Yihao-G commented Aug 27, 2020

@pi0 Done. Let me know if there is anything else that can be improved :)

@Yihao-G
Copy link
Contributor Author

Yihao-G commented Aug 27, 2020

Because of the change of the configuration structure, this is a breaking change (well, I guess the current one does nothing anyway). Should we stay with the original configuration structure? However, the plugin like BackgroundSyncPlugin, its constructor has two parameters.

@pi0
Copy link
Member

pi0 commented Aug 28, 2020

Nice recent refactors @Yihao-G 👍 I have to locally test your changes before merge to also check breaking change possibility. Thanks again ❤️

@pi0 pi0 changed the base branch from master to refactor/runtime-sw October 1, 2020 12:03
@pi0
Copy link
Member

pi0 commented Oct 1, 2020

Hi @Yihao-G I have refactored code to a runtime approach to reduce template complexity (1f1b235), merging to refactor/runtime-sw branch to apply this convention for rest of the template. Everything is currently working fine thanks for initiative 👍

@pi0 pi0 merged commit 9cc7d15 into nuxt-community:refactor/runtime-sw Oct 1, 2020
pi0 added a commit that referenced this pull request Oct 1, 2020
…ng a strategy (#337)

* Initial implementation of #336

* Update types

* Fix test
The strategy constructor option object can be optional as shown here: https://developers.google.com/web/tools/workbox/modules/workbox-strategies

* Fix broken generated sw.js

* Remove unused field

* Typo fixes

* Correct RuntimeCaching type

* Added tests

* Fix code

* Revert "Added tests" partially

This reverts commit d467e17

* Do not directly generate runtime code from nuxt.config

#337 (comment)

* Template formatting and remove unnecessary replace in toCode function

* simplify toCode function

* refactor: use runtime code instead of codegen

Co-authored-by: pooya parsa <pyapar@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

RuntimeCaching.strategyOptions.cacheExpiration is deprecated in Workbox v3
2 participants