fetch.macro
Version:
Allows you to build fetcher function by URL at compile-time.
376 lines (265 loc) • 10.7 kB
Markdown
<div align="center">
<h1 id="toc">fetch.macro</h1>
<p>Allows you to build <code>fetcher function</code> by URL at compile-time.</p>
`f("/api/ping")`
↓ ↓ ↓ ↓ ↓ ↓
`(opts) => fetch("/api/ping", opts)`
<p align="center">
<a href="#usage">Usage</a> •
<a href="#api">API</a> •
<a href="#contributors">Contributors</a>
</p>
</div>
---
<div align="center">
<!-- prettier-ignore-start -->
[](https://github.com/r17x/fetch.macro/actions/workflows/release.yml?query=branch%3Amain+)
[](https://app.codecov.io/gh/r17x/fetch.macro)
[](https://www.npmjs.com/package/fetch.macro/v/latest)
[](https://www.npmjs.com/package/fetch.macro/v/latest)
[](https://github.com/r17x/fetch.macro/blob/main/LICENSE)
[](https://github.com/r17x/fetch.macro#contributors)
<!-- prettier-ignore-end -->
</div>
## Usage
[\[Back to the Table of Contents\] ↑](#toc)
Simply install and configure [`babel-plugin-macros`](https://github.com/kentcdodds/babel-plugin-macros) and then use `fetch.macro`.
> Some project that build with `create-react-app` doesn't need extra setup for `babel-plugin-macros`.
### SWC
> 🚧 [Under Development] This is section for using `fetch.macro` as [swc-plugin](https://swc.rs/).
<!-- acknowledgment https://github.com/pveyes/raw.macro#swc -->
You can also use fetch.macro in a swc-based project (e.g: Next.js) by using the SWC plugins.
Due to how the plugins loaded, you have to pass **rootDir** option pointing to the root directory of your project (where your node_modules directory lives). Typically it's enough to pass \_\_dirname.
```javascript
// next.config.js
module.exports = {
experimental: {
swcPlugins: [["fetch.macro/swc"]],
},
};
```
### Vite
To be able to use these macros in your [Vite](https://vitejs.dev/) project, you only need install [`vite-plugin-babel-macros`](https://github.com/itsMapleLeaf/vite-plugin-babel-macros) and add some configuration in `vite.config.js`. And it just work.
$ npm i -D vite-plugin-babel-macros
```js
import MacrosPlugin from "vite-plugin-babel-macros";
export default {
// ...
plugins: [
// ...
MacrosPlugin(),
],
};
```
### Example
#### Basic
Run one of the following command inside your project directory to install the package:
$ npm i fetch.macro
or
$ yarn add fetch.macro
Given the following `Input`:
```javascript
import f from "fetch.macro";
const fetchByUrl = f("/api/v1/ping");
```
Babel will produce the following `Output`:
```javascript
const fetchByUrl = (opts) => fetch("/api/v1/ping", opts);
```
It also works as a `tagged template` literal:
```javascript
import f from "fetch.macro";
const fetchByUrl = f`/api/v1/ping`;
```
That will produce the same output as the function version.
#### Nested
Given the following `Input`:
```javascript
import f from "fetch.macro";
const fetchProject = f`/api/v1/user/:id/project/:projectId/:others`;
```
Babel will produce the following `Output`:
```javascript
const fetchProject = ({ id, projectId, others, ...opts }) =>
fetch(`/api/v1/user/${id}/project/${projectId}/${others}`, opts);
```
## API
### default
It will be produce a code for fetch function with URL by input and return response that need to be manual handle the response.
<table>
<tr>
<td>Input</td>
<td>Output</td>
</tr>
<tr>
<td>
```javascript
import f from "fetch.macro";
const fetchByUrl = f("/api/v1/ping");
```
</td>
<td>
```javascript
const fetchByUrl = (opts) => fetch("/api/v1/ping", opts);
```
</td>
</tr>
</table>
### fetchText
It will be produce a code for fetch function with URL by input and return [**response text**](https://webidl.spec.whatwg.org/#idl-USVString).
<table>
<tr>
<td>Input</td>
<td>Output</td>
</tr>
<tr>
<td>
```javascript
import { fetchText } from "fetch.macro";
const fetchProject = fetchText`/api/v1/user/:id/project/:projectId/:others`;
```
</td>
<td>
```javascript
const fetchProject = ({ id, projectId, others, ...opts }) =>
fetch(`/api/v1/user/${id}/project/${projectId}/${others}`, opts).then((r) => r.text());
```
</td>
</tr>
</table>
### fetchJson
It will be produce a code for fetch function with URL by input and return [**response json**](https://fetch.spec.whatwg.org/#dom-body-json).
<table>
<tr>
<td>Input</td>
<td>Output</td>
</tr>
<tr>
<td>
```javascript
import { fetchJson } from "fetch.macro";
const fetchProject = fetchJson`/api/v1/user/:id/project/:projectId/:others`;
```
</td>
<td>
```javascript
const fetchProject = ({ id, projectId, others, ...opts }) =>
fetch(`/api/v1/user/${id}/project/${projectId}/${others}`, opts).then((r) => r.json());
```
</td>
</tr>
</table>
### fetchBlob
It will be produce a code for fetch function with URL by input and return [**response blob**](https://fetch.spec.whatwg.org/#dom-body-blob).
<table>
<tr>
<td>Input</td>
<td>Output</td>
</tr>
<tr>
<td>
```javascript
import { fetchBlob } from "fetch.macro";
const fetchProject = fetchBlob`/api/v1/user/:id/project/:projectId/:others`;
```
</td>
<td>
```javascript
const fetchProject = ({ id, projectId, others, ...opts }) =>
fetch(`/api/v1/user/${id}/project/${projectId}/${others}`, opts).then((r) => r.blob());
```
</td>
</tr>
</table>
### fetchFormData
It will be produce a code for fetch function with URL by input and return [**response formData**](https://fetch.spec.whatwg.org/#dom-body-formdata).
<table>
<tr>
<td>Input</td>
<td>Output</td>
</tr>
<tr>
<td>
```javascript
import { fetchFormData } from "fetch.macro";
const fetchProject = fetchFormData`/api/v1/user/:id/project/:projectId/:others`;
```
</td>
<td>
```javascript
const fetchProject = ({ id, projectId, others, ...opts }) =>
fetch(`/api/v1/user/${id}/project/${projectId}/${others}`, opts).then((r) => r.formData());
```
</td>
</tr>
</table>
### fetchArrayBuffer
It will be produce a code for fetch function with URL by input and return [**response arrayBuffer**](https://fetch.spec.whatwg.org/#dom-body-arraybuffer).
<table>
<tr>
<td>Input</td>
<td>Output</td>
</tr>
<tr>
<td>
```javascript
import { fetchArrayBuffer } from "fetch.macro";
const fetchProject = fetchArrayBuffer`/api/v1/user/:id/project/:projectId/:others`;
```
</td>
<td>
```javascript
const fetchProject = ({ id, projectId, others, ...opts }) =>
fetch(`/api/v1/user/${id}/project/${projectId}/${others}`, opts).then((r) => r.arrayBuffer());
```
</td>
</tr>
</table>
### fetchClone
It will be produce a code for fetch function with URL by input and return [**response cloned data**](https://developer.mozilla.org/en-US/docs/Web/API/Response/clone).
<table>
<tr>
<td>Input</td>
<td>Output</td>
</tr>
<tr>
<td>
```javascript
import { fetchClone } from "fetch.macro";
const fetchProject = fetchClone`/api/v1/user/:id/project/:projectId/:others`;
```
</td>
<td>
```javascript
const fetchProject = ({ id, projectId, others, ...opts }) =>
fetch(`/api/v1/user/${id}/project/${projectId}/${others}`, opts).then((r) => r.clone());
```
</td>
</tr>
</table>
## Contributors
[\[Back to the Table of Contents\] ↑](#toc)
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center"><a href="https://rin.rocks"><img src="https://avatars.githubusercontent.com/u/16365952?v=4?s=100" width="100px;" alt="RiN"/><br /><sub><b>RiN</b></sub></a><br /><a href="#ideas-r17x" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-r17x" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#tool-r17x" title="Tools">🔧</a> <a href="https://github.com/r17x/fetch.macro/commits?author=r17x" title="Code">💻</a></td>
<td align="center"><a href="https://blog.nyan.my.id"><img src="https://avatars.githubusercontent.com/u/24630806?v=4?s=100" width="100px;" alt="Ryan Aunur Rassyid"/><br /><sub><b>Ryan Aunur Rassyid</b></sub></a><br /><a href="#example-nyancodeid" title="Examples">💡</a></td>
<td align="center"><a href="https://vadhe.dev/"><img src="https://avatars.githubusercontent.com/u/36479850?v=4?s=100" width="100px;" alt="Rivaldi Putra"/><br /><sub><b>Rivaldi Putra</b></sub></a><br /><a href="#example-vadhe" title="Examples">💡</a></td>
<td align="center"><a href="https://liostech.id"><img src="https://avatars.githubusercontent.com/u/30402431?v=4?s=100" width="100px;" alt="Ibrahim Hanif"/><br /><sub><b>Ibrahim Hanif</b></sub></a><br /><a href="https://github.com/r17x/fetch.macro/commits?author=ibrahim4529" title="Code">💻</a> <a href="#example-ibrahim4529" title="Examples">💡</a></td>
<td align="center"><a href="https://lazycatlabs.com"><img src="https://avatars.githubusercontent.com/u/1531684?v=4?s=100" width="100px;" alt="Mudassir"/><br /><sub><b>Mudassir</b></sub></a><br /><a href="https://github.com/r17x/fetch.macro/commits?author=Lzyct" title="Code">💻</a> <a href="#example-Lzyct" title="Examples">💡</a></td>
<td align="center"><a href="http://mupinnn.github.io"><img src="https://avatars.githubusercontent.com/u/46535277?v=4?s=100" width="100px;" alt="Ahmad Muwaffaq"/><br /><sub><b>Ahmad Muwaffaq</b></sub></a><br /><a href="https://github.com/r17x/fetch.macro/commits?author=mupinnn" title="Code">💻</a> <a href="#example-mupinnn" title="Examples">💡</a></td>
<td align="center"><a href="http://abdmmar.com"><img src="https://avatars.githubusercontent.com/u/50788123?v=4?s=100" width="100px;" alt="Abdullah Ammar"/><br /><sub><b>Abdullah Ammar</b></sub></a><br /><a href="https://github.com/r17x/fetch.macro/commits?author=abdmmar" title="Code">💻</a> <a href="#example-abdmmar" title="Examples">💡</a></td>
</tr>
<tr>
<td align="center"><a href="https://afrianjunior.github.io"><img src="https://avatars.githubusercontent.com/u/13098072?v=4?s=100" width="100px;" alt="Afrian Junior"/><br /><sub><b>Afrian Junior</b></sub></a><br /><a href="https://github.com/r17x/fetch.macro/commits?author=afrianjunior" title="Code">💻</a> <a href="#example-afrianjunior" title="Examples">💡</a></td>
</tr>
</tbody>
</table>
<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->
<!-- ALL-CONTRIBUTORS-LIST:END -->
## License
[MIT](./LICENSE)