152 Commits

Author SHA1 Message Date
arthurfiorette
f30e2622dd
refactor: removed "abstract" buildInterceptor function 2022-01-08 12:56:55 -03:00
arthurfiorette
cd2f14c446
refactor: removed classes to decrease bundle size 2022-01-08 12:27:52 -03:00
arthurfiorette
733a47606f
fix: code scanning alert 2022-01-07 16:05:27 -03:00
arthurfiorette
ed1e163472
chore: bundles exports everything and webpack bundles everything 2022-01-07 15:45:06 -03:00
arthurfiorette
79ce1926d2
refactor: prefer unknown over any and removed find method from storages 2022-01-07 15:24:41 -03:00
Arthur Fiorette
25b34e5d11
docs: documentation at axios-cache-interceptor.js.org (#108) 2022-01-06 18:44:36 -03:00
arthurfiorette
3c38985113
style: prettified code 2022-01-04 15:38:32 -03:00
arthurfiorette
cfbd601b98
feat: suupport for async CacheUpdater 2022-01-04 15:28:38 -03:00
arthurfiorette
ce2f5976bc
fix: proper generic usage to type deep properties 2022-01-04 15:27:30 -03:00
arthurfiorette
8d5a90e2fd
fix: include default storages in cjs bundle 2022-01-04 15:16:40 -03:00
arthurfiorette
567c1b2477
refactor: allow storages not return promises 2022-01-04 15:15:27 -03:00
arthurfiorette
1e87549eb6
feat: allow ttl to be defined based on the response 2022-01-03 10:00:39 -03:00
arthurfiorette
c15598241a
refactor: simplified defaultKeyGenerator function 2022-01-03 09:21:47 -03:00
arthurfiorette
a7751fd1cb
tests: 100% coverage again 2022-01-03 09:21:16 -03:00
arthurfiorette
c57916fd67
refactor: extracted static functions to a single file 2022-01-03 09:14:47 -03:00
arthurfiorette
4c1e0ec3fc
docs: fixed tsdocs and added storages section 2022-01-03 09:13:43 -03:00
arthurfiorette
500ac71523
refactor: added data property in memory storages 2022-01-03 09:13:02 -03:00
arthurfiorette
e776f01c98
refactor: simplified header interpreter 2022-01-02 20:32:29 -03:00
arthurfiorette
bafe1de98c
refactor: modified and simplified storages 2022-01-02 20:30:00 -03:00
arthurfiorette
c32c452190
feat: added isAxiosCacheInterceptor function 2021-12-31 10:05:21 -03:00
arthurfiorette
232e9c51fa
feat: added many build options 2021-12-30 15:50:26 -03:00
arthurfiorette
4a0a99ff28
refactor: prevent confusion by renaming createCache to useCache 2021-12-30 13:54:23 -03:00
arthurfiorette
27de6292be
style: formatted code 2021-12-27 18:48:26 -03:00
arthurfiorette
8cad8030af
perf: minified code bundled as ES6 because axios itself needs ES6 2021-12-27 18:46:09 -03:00
arthurfiorette
065b6eff74
refactor: deprecated useCache in favor of createCache (#95) 2021-12-27 14:25:55 -03:00
arthurfiorette
fec63a84a7
test: added one simple test 2021-12-27 09:05:53 -03:00
arthurfiorette
6e25ba6f97
perf: reduce bundle size and replaced babel by ts-loader 2021-12-26 20:24:14 -03:00
arthurfiorette
6ce658b053
deps: use cache-parser 2021-12-13 15:32:38 -03:00
arthurfiorette
a77cde7e22
refactor: better cache predicate function 2021-12-11 12:27:37 -03:00
arthurfiorette
6929b021e0
style: fixed prettier plugin order 2021-12-11 10:43:11 -03:00
arthurfiorette
c3a0fea1bd
refactor: externalized createCacheData function 2021-12-11 10:42:32 -03:00
arthurfiorette
b4ad24de48
refactor: made some methods static and public 2021-12-11 10:42:26 -03:00
arthurfiorette
1615f284b3
chore: CacheOptions at the top of the file 2021-12-09 17:50:31 -03:00
arthurfiorette
488cd49527
refactor: bundle does not export everything that index has 2021-12-09 14:37:21 -03:00
arthurfiorette
78cf406a56
feat: added web bundle and babel 2021-12-08 20:25:36 -03:00
arthurfiorette
60ad91e676
feat!: removed createCache function 2021-12-08 20:01:22 -03:00
arthurfiorette
07ec645a9d
perf: removed tslib and typed-core in favor of fast-defer 2021-12-08 16:46:15 -03:00
Arthur Fiorette
48e33c5d5a
feat: etag and if-modified-since support (#53)
* feat(WIP): etag and if-modified-since support

* test: fixed test name

* fix: merge response headers

* test: add etag / last-modified tests

* test: add must-revalidate tests

* fix: handle expirationTime 0 as true.

* tests: refactored some tests

* test: added keepIfStale tests

* fix: remove axios error for 304 requests

* fix: possible infinite loop on validateStatus function

* tests: ignore code that is hard test from coverage

* fix: use Last-Modified header for modifiedSince

If-Modified-Since is never sent by a server, it's
a client only header. However Last-Modified is sent
by the server to indicate the last time the returned
version was modified (it might not be the last version
depending on cache configuration on intermediate
servers)

* test: use validateStatus in mock

This more closely match default axios adapter.

* fix: validateStatus handling all cases

* refactor: use cache.createdAt if the last-modified header isn't present

* test: etag with predefined value

* test: added more test cases

* fix: fixed logic in some tests

* docs: initial documentation

* fix: manual values work out of the box

This removes header requirement from server.

* docs: add details to etag and modifiedSince features

* fix: delete custom headers from response

* feat: accept all configurations from global axios

Merging global into local configuration enable user
to use global configuration for all options and remove
the need to check local and global values every time.

* fix: preserve original types from AxiosInstance

The only value axios needs is a URL, and in the second definition of the method, there is already a URL parameter, so it can be undefined.

* Fix: defaults modifiedSince back to false.

Avoids breaking changes.

* docs: fix etag examples

* docs: document internal headers

* refactor: ternary operator :)

* style: prettified code

* test: remove modifiedSince: false in tests since this is the default

* docs: fix headers examples

* docs: fixed example formatting

* tests: split tests into multiple files to test them faster

* docs: correct jsdoc empty object

Co-authored-by: Charly Koza <cka@f4-group.com>
2021-11-15 10:43:20 -03:00
Arthur Fiorette
b35ae3e574
feat: storage abstractions (#52)
* refactor: better support for different storages

* test: updated tests

* feat: export AxiosStorage

* style: fix linting
2021-11-11 16:25:51 -03:00
Hazork
76a8af7433 feat: immutable cache support 2021-11-11 14:26:27 -03:00
Arthur Fiorette
92b9ed7abf
feat: more headers supports, tests and must-revalidate fix (#51)
* feat: must-revalidate and headers enum
* test: added more tests
* test: test and code fixes
* test: more tests
2021-11-11 14:16:37 -03:00
Arthur Fiorette
bf891bdd09 refactor: better typings for axios 0.24 2021-11-05 10:42:45 -03:00
Hazork
0058cd5771 style: prettified code 2021-10-28 11:42:40 -03:00
Hazork
99906e57b9 deps: bump axios to v0.24 2021-10-28 11:40:15 -03:00
Hazork
6e6100b86a fix: fixed isCacheValid function and added tests 2021-10-25 15:58:04 -03:00
Hazork
f141b2e680 refactor: externalized cache eviction predicate 2021-10-25 15:30:55 -03:00
Hazork
3ed92c8cc8 style: prettified code 2021-10-12 19:58:31 -03:00
Hazork
b42d3f13d7 refactor: more type and naming refactors 2021-10-12 19:58:00 -03:00
Hazork
891f1d05e3 fix: response and request types 2021-10-12 19:22:32 -03:00
Hazork
12a5032b98 fix: generic spaghetti that axios brought 2021-10-12 19:17:52 -03:00