Skip to content
New issue

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

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

Already on GitHub? # to your account

fix: client hints plugin #9

Merged
merged 2 commits into from
Oct 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion playground/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
</template>

<script setup>

const critical = useNuxtApp().$httpClientHints?.critical
console.log(critical?.devicePixelRatio)
</script>
6 changes: 3 additions & 3 deletions src/runtime/plugins/types.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { DeepReadonly, UnwrapNestedRefs } from '@vue/reactivity'
import type { DeepReadonly } from '@vue/reactivity'
import type { Browser, asyncDetect, detect, detectOS, parseUserAgent } from 'detect-browser-es'
import type { HttpClientHintsState, UserAgentDataHints } from '../shared-types/types'

Expand All @@ -9,13 +9,13 @@ declare module '#app' {
$detectBrowserAsync?: (hints?: UserAgentDataHints[]) => ReturnType<typeof asyncDetect>
$detectOS?: () => ReturnType<typeof detectOS>
$parseUserAgent?: () => ReturnType<typeof parseUserAgent>
$httpClientHints?: DeepReadonly<UnwrapNestedRefs<HttpClientHintsState>>
$httpClientHints?: DeepReadonly<HttpClientHintsState>
}
}

declare module 'vue' {
interface ComponentCustomProperties {
$httpClientHints?: DeepReadonly<UnwrapNestedRefs<HttpClientHintsState>>
$httpClientHints?: DeepReadonly<HttpClientHintsState>
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/utils/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export default defineNuxtPlugin({
)
return {
provide: {
httpClientHints: readonly(clientHints),
httpClientHints: readonly(clientHints.value),
}
}
}
Expand Down