Compare commits

...

9 Commits

Author SHA1 Message Date
Daniel Roe
141bebf171
Merge 1376da6a78 into f94d3f2bc6 2024-11-19 15:32:40 -05:00
renovate[bot]
f94d3f2bc6
chore(deps): update resolutions @types/node to v22.9.1 (main) (#29981)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-19 15:32:36 -05:00
renovate[bot]
9c8cd4b74b
chore(deps): update devdependency eslint-plugin-perfectionist to v4 (main) (#29982)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Roe <daniel@roe.dev>
2024-11-19 15:32:33 -05:00
Julien Huang
1376da6a78
docs: remove useStyles 2024-06-28 22:42:33 +02:00
Daniel Roe
3d3d6f4c36
Merge branch 'main' into docs/scripts 2024-04-19 13:33:32 +03:00
Thorsten Kober
8ea1fa118b
docs: add overview for third parties (#25832)
Co-authored-by: Thorsten Kober <thorstenk@google.com>
Co-authored-by: Kara <kara@users.noreply.github.com>
Co-authored-by: Damian Głowala <damian.glowala.rebkow@gmail.com>
Co-authored-by: Houssein Djirdeh <houssein.djirdeh@gmail.com>
Co-authored-by: Julien Huang <julien.h.dev@gmail.com>
2024-02-22 11:30:49 +00:00
Thorsten Kober
ffda918f54
docs: add remaining third-party-capital api docs (#25592)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Houssein Djirdeh <houssein.djirdeh@gmail.com>
Co-authored-by: Julien Huang <julien.h.dev@gmail.com>
Co-authored-by: Damian Głowala <damian.glowala.rebkow@gmail.com>
2024-02-03 23:04:46 +00:00
Thorsten Kober
d0caae3c10
docs: add useGoogleAnalytics to api documentation (#25403) 2024-02-02 00:33:36 +00:00
Daniel Roe
73b8f07fec
chore: diverge 2024-01-23 15:53:29 +00:00
8 changed files with 537 additions and 255 deletions

View File

@ -0,0 +1,132 @@
---
title: Third Parties
description: Learn how to optimize the performance of third-party resources using built-in composables and components.
navigation.icon: i-ph-users-duotone
---
Nuxt provides a number of composables and built-in libraries that make it easier -- and faster -- to load third-party resources in your application.
- `useScript`: Load any third-party script with server-side rendering support and a proxied API.
- `useStyles`: Load any third-party stylesheet using various asset strategies.
- Third-Party Wrappers: Wrapper components and composables that make it easier to include different popular third parties efficiently.
## How Third Parties Can Impact User Experience
Third parties are external resources included, but not directly controlled, by a site owner to add new functionality to a website. Popular examples of third parties include analytics, video embeds, maps, and social media integrations. Typically, third-party providers offer code snippets that can be added to the `head` or `body` section of the document.
Adding a single third-party resource to your Nuxt application might not have any noticeable impact on performance, but it can quickly begin to affect user experience if youre not careful. Many third parties, especially scripts, can take a relatively long time to download and execute, which can delay user interactivity and block page rendering.
Data from the Chrome User Experience Report shows that Nuxt sites that load more third-party resources have lower [Interaction to Next Paint](https://web.dev/articles/inp) (INP) and [Largest Contentful Paint](https://web.dev/articles/lcp) (LCP) pass rates.
![Chrome User Experience Report chart](/assets/docs/getting-started/third-parties/chart.png)
<sub>
source: Chrome User Experience Report,
date: October 2023,
devices: phone
</sub>
While the chart's correlation does not automatically indicate causation, lab experiments and data from the [Web Almanac](https://almanac.httparchive.org/en/2022/third-parties) provide further evidence that third-party resources significantly affect page performance.
## Optimizing Third Party Performance
In general, it can be difficult to determine the most optimal way to load different third-party resources. Nuxt provides a number of utilities to improve both the developer and user experience of loading third parties.
::callout
If you're using very popular third-party libraries, please check the [Third-Party Wrappers](#third-party-wrappers) section for available pre-configured solutions.
::
### useScript
The `useScript` composable enables you to load third-party scripts with SSR support and a proxied API. It works out of the box, requiring just a URL that points to the script resource.
```vue
<script setup lang="ts">
useScript({
src: 'https://www.example.com/script.js'
})
</script>
```
Optional triggers and asset strategies can be used to allow for more fine-grained control over how, and when, the script should be loaded. In the following example, the script will load once the promise provided in the trigger resolves (1 second later).
```vue
<script setup lang="ts">
useScript({
src: 'https://www.example.com/script.js',
trigger: new Promise((resolve) => {
setTimeout(() => { resolve() }, 1000)
})
})
</script>
```
:read-more{to="https://unhead.unjs.io/usage/composables/use-script "}
### Third-Party Wrappers
Nuxt provides a collection of utilities that are already configured to load and initialize popular third parties in the most performant way. These include:
- Composables to fetch scripts such as `useGoogleAnalytics` and `useGoogleTagManager`
- Components to load embeds such as `<GoogleMaps>` and `<YoutubeEmbed>`
#### Google Analytics
The `useGoogleAnalytics` composable allows you to integrate Google Analytics in your Nuxt application.
```vue
<script setup lang="ts">
useGoogleAnalytics({
id: 'GA-123456789-1'
})
</script>
```
:read-more{to="/docs/api/composables/use-google-analytics"}
#### Google Tag Manager
The `useGoogleTagManager` composable makes it easier to include Google Tag Manager in your Nuxt application.
```vue
<script setup lang="ts">
useGoogleTagManager({
id: 'GTM-ABCD12'
})
<script>
```
:read-more{to="/docs/api/composables/use-google-tag-manager"}
#### Google Maps
The `<GoogleMaps>` component initializes and displays a Google Map on your page using the Maps JavaScript API.
```vue
<template>
<div>
<GoogleMaps
api-key="API_KEY"
q="Space+Needle,Seattle+WA"
/>
</div>
</template>
```
:read-more{to="/docs/api/components/google-maps"}
#### YouTube Embed
The `<YoutubeEmbed>` component uses `lite-youtube-embed` under the hood to load and display a YouTube embed on your page faster.
```vue
<template>
<div>
<YoutubeEmbed
video-id="d_IFKP1Ofq0"
play-label="Play Video"
/>
</div>
</template>
```
:read-more{to="/docs/api/components/youtube-embed"}

View File

@ -0,0 +1,64 @@
---
title: "<GoogleMaps>"
description: A simple and performant Google Maps component.
links:
- label: Source
icon: i-simple-icons-github
to: https://github.com/nuxt/scripts-and-assets/blob/main/modules/nuxt-third-party-capital/src/runtime/components/GoogleMaps.ts
size: xs
---
The `<GoogleMaps>` component uses the [Maps JavaScript API](https://developers.google.com/maps/documentation/javascript) to load a map to your page.
::callout
You need an API key to use Google Maps.
::
## Example with Query
```vue
<template>
<div>
<GoogleMaps
api-key="API_KEY"
width="600"
height="400"
q="Space+Needle,Seattle+WA"
/>
</div>
</template>
```
## Example with Coordinates
```vue
<template>
<div>
<GoogleMaps
api-key="API_KEY"
width="600"
height="400"
:center="{ lat: 47.62065090386302, lng: -122.34932031714334 }"
/>
</div>
</template>
```
## Props
- `apiKey`: The [API key](https://developers.google.com/maps/documentation/javascript/get-api-key) to use Google Maps API.
- **type**: `string`
- **required**
- `q`: A query to search for.
- **type**: `string`
- `center`: Coordinates to set the map to
- **type**: `LatLng`
- `zoom`: Zoom value for the map
- **type**: `number`
- `width`: Width of the player
- **type**: `string`
- `height`: Height of the player
- **type**: `string`
- `params`: [Parameters](https://developers.google.com/maps/documentation/javascript/load-maps-js-api#optional_parameters) for the map.
Either a query (q) or coordinates (center) are needed for the map to function properly.

View File

@ -0,0 +1,39 @@
---
title: "<YoutubeEmbed>"
description: A simple and performant YouTube component.
links:
- label: Source
icon: i-simple-icons-github
to: https://github.com/nuxt/scripts-and-assets/blob/main/modules/nuxt-third-party-capital/src/runtime/components/YoutubeEmbed.ts
size: xs
---
The `<YoutubeEmbed>` component can be used to display a YouTube embed.
It uses [lite-youtube-embed](https://github.com/paulirish/lite-youtube-embed) to load significantly faster.
## Minimal Example
```vue
<template>
<div>
<YoutubeEmbed
video-id="d_IFKP1Ofq0"
play-label="Play"
/>
</div>
</template>
```
## Props
- `videoId`: The ID of the video
- **type**: `string`
- **required**
- `playLabel`: The label of the play button. This is for a11y purposes.
- **type**: `string`
- **required**
- `width`: Width of the player
- **type**: `string`
- `height`: Height of the player
- **type**: `string`
- `params`: [Parameters](https://developers.google.com/youtube/player_parameters#Parameters) for the player.

View File

@ -0,0 +1,61 @@
---
title: useGoogleAnalytics
description: useGoogleAnalytics allows you to load and initialize Google Analytics in your Nuxt app.
links:
- label: Source
icon: i-simple-icons-github
to: https://github.com/nuxt/scripts-and-assets/blob/main/modules/nuxt-third-party-capital/src/runtime/composables/googleAnalytics.ts
size: xs
---
The `useGoogleAnalytics` composable function allows you to include [Google Analytics 4](https://developers.google.com/analytics/devguides/collection/ga4) in your Nuxt application.
::callout
If Google Tag Manager is already included in your application, you can configure Google Analytics directly using it, rather than including Google Analytics as a separate component. Refer to the [documentation](https://developers.google.com/analytics/devguides/collection/ga4/tag-options#what-is-gtm) to learn more about the differences between Tag Manager and gtag.js.
::
## Minimal Example
```vue
<script setup>
useGoogleAnalytics({ id: 'GA-123456789-1' })
</script>
```
## Example with custom event
```vue
<script setup>
const { $script } = useGoogleAnalytics({
id: 'GA-123456789-1',
})
$script.waitForLoad().then(({ gtag }) => {
gtag('event', 'some_custom_event', { time: new Date() })
})
</script>
```
## Type
```ts
useGoogleAnalytics(options: ThirdPartyScriptOptions<GoogleAnalyticsOptions, GoogleAnalyticsApi>): ThirdPartyScriptApi<GoogleAnalyticsApi>
```
## Params
An object containing the following options:
- `id`: Google Analytics [measurement ID](https://support.google.com/analytics/answer/12270356).
- **type**: `string`
- **required**
## Return Values
An object that contains a special `$script` property that gives you access to the underlying script instance.
- `$script.waitForLoad`: A promise that resolves when the script is ready to use. It exposes `gtag` and `dataLayer`, which lets you interact with the API.
::callout
Learn more about [`useScript`](https://unhead.unjs.io/usage/composables/use-script).
::

View File

@ -0,0 +1,60 @@
---
title: useGoogleTagManager
description: useGoogleTagManager allows you to install Google Tag Manager in your Nuxt app.
links:
- label: Source
icon: i-simple-icons-github
to: https://github.com/nuxt/scripts-and-assets/blob/main/modules/nuxt-third-party-capital/src/runtime/composables/googleTagManager.ts
size: xs
---
The `useGoogleTagManager` composable allows you to install [Google Tag Manager](https://developers.google.com/tag-platform/tag-manager/web) in your Nuxt application.
## Minimal Example
```vue
<script setup>
useGoogleTagManager({ id: 'GTM-123456' })
</script>
```
## Example with Custom Event
```vue
<script setup>
const { $script } = useGoogleTagManager({
id: 'GTM-123456'
})
$script.waitForLoad().then(({ dataLayer }) => {
dataLayer.push({
event: 'pageview',
page_path: '/google-tag-manager'
})
})
</script>
```
## Type
```ts
useGoogleTagManager(options: ThirdPartyScriptOptions<GoogleTagManagerOptions, GoogleTagManagerApi>): ThirdPartyScriptApi<GoogleTagManagerApi>
```
## Params
An object containing the following options:
- `id`: Your GTM container ID. Usually starts with 'GTM-'.
- **type**: `string`
- **required**
## Return Values
An object that contains a special `$script` property that gives you access to the underlying script instance.
- `$script.waitForLoad`: A promise that resolves when the script is ready to use. It exposes `google_tag_manager` and `dataLayer`, which lets you interact with the API.
::callout
Learn more about [`useScript`](https://unhead.unjs.io/usage/composables/use-script).
::

View File

@ -189,7 +189,6 @@ export default createConfigForNuxt({
},
},
// Sort rule keys in eslint config
// @ts-expect-error incorrect types 🤔
{
files: ['**/eslint.config.mjs'],
name: 'local/sort-eslint-config',

View File

@ -40,7 +40,7 @@
"@nuxt/ui-templates": "workspace:*",
"@nuxt/vite-builder": "workspace:*",
"@nuxt/webpack-builder": "workspace:*",
"@types/node": "22.9.0",
"@types/node": "22.9.1",
"@unhead/dom": "1.11.11",
"@unhead/shared": "1.11.11",
"@unhead/vue": "1.11.11",
@ -75,7 +75,7 @@
"@nuxt/webpack-builder": "workspace:*",
"@testing-library/vue": "8.1.0",
"@types/eslint__js": "8.42.3",
"@types/node": "22.9.0",
"@types/node": "22.9.1",
"@types/semver": "7.5.8",
"@unhead/schema": "1.11.11",
"@unhead/vue": "1.11.11",
@ -91,7 +91,7 @@
"devalue": "5.1.1",
"eslint": "9.15.0",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-perfectionist": "3.9.1",
"eslint-plugin-perfectionist": "4.0.2",
"eslint-typegen": "0.3.2",
"h3": "npm:h3-nightly@2.0.0-1718872656.6765a6e",
"happy-dom": "15.11.6",

File diff suppressed because it is too large Load Diff