prettier fixes #16
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
import "vanilla-cookieconsent/dist/cookieconsent.css";
|
||||
import "vanilla-cookieconsent/src/cookieconsent.js";
|
||||
import 'vanilla-cookieconsent/dist/cookieconsent.css';
|
||||
import 'vanilla-cookieconsent/src/cookieconsent.js';
|
||||
|
||||
export default defineNuxtPlugin((nuxtApp) => {
|
||||
export default defineNuxtPlugin(nuxtApp => {
|
||||
// @ts-ignore
|
||||
const cookieConsent = window.initCookieConsent();
|
||||
|
||||
cookieConsent.run({
|
||||
current_lang: "en",
|
||||
current_lang: 'en',
|
||||
autoclear_cookies: true, // default: false
|
||||
page_scripts: true, // default: false
|
||||
|
||||
@@ -41,91 +41,91 @@ export default defineNuxtPlugin((nuxtApp) => {
|
||||
languages: {
|
||||
en: {
|
||||
consent_modal: {
|
||||
title: "We use cookies!",
|
||||
title: 'We use cookies!',
|
||||
description:
|
||||
'Hi, this website uses essential cookies to ensure its proper operation and tracking cookies to understand how you interact with it. The latter will be set only after consent. <button type="button" data-cc="c-settings" class="cc-link">Let me choose</button>',
|
||||
primary_btn: {
|
||||
text: "Accept all",
|
||||
role: "accept_all", // 'accept_selected' or 'accept_all'
|
||||
text: 'Accept all',
|
||||
role: 'accept_all' // 'accept_selected' or 'accept_all'
|
||||
},
|
||||
secondary_btn: {
|
||||
text: "Reject all",
|
||||
role: "accept_necessary", // 'settings' or 'accept_necessary'
|
||||
},
|
||||
text: 'Reject all',
|
||||
role: 'accept_necessary' // 'settings' or 'accept_necessary'
|
||||
}
|
||||
},
|
||||
settings_modal: {
|
||||
title: "Cookie preferences",
|
||||
save_settings_btn: "Save settings",
|
||||
accept_all_btn: "Accept all",
|
||||
reject_all_btn: "Reject all",
|
||||
close_btn_label: "Close",
|
||||
title: 'Cookie preferences',
|
||||
save_settings_btn: 'Save settings',
|
||||
accept_all_btn: 'Accept all',
|
||||
reject_all_btn: 'Reject all',
|
||||
close_btn_label: 'Close',
|
||||
// cookie_table_caption: 'Cookie list',
|
||||
cookie_table_headers: [
|
||||
{ col1: "Name" },
|
||||
{ col2: "Domain" },
|
||||
{ col3: "Expiration" },
|
||||
{ col4: "Description" },
|
||||
{ col1: 'Name' },
|
||||
{ col2: 'Domain' },
|
||||
{ col3: 'Expiration' },
|
||||
{ col4: 'Description' }
|
||||
],
|
||||
blocks: [
|
||||
{
|
||||
title: "Cookie usage 📢",
|
||||
title: 'Cookie usage 📢',
|
||||
description:
|
||||
'I use cookies to ensure the basic functionalities of the website and to enhance your online experience. You can choose for each category to opt-in/out whenever you want. For more details relative to cookies and other sensitive data, please read the full <a href="#" class="cc-link">privacy policy</a>.',
|
||||
'I use cookies to ensure the basic functionalities of the website and to enhance your online experience. You can choose for each category to opt-in/out whenever you want. For more details relative to cookies and other sensitive data, please read the full <a href="#" class="cc-link">privacy policy</a>.'
|
||||
},
|
||||
{
|
||||
title: "Strictly necessary cookies",
|
||||
title: 'Strictly necessary cookies',
|
||||
description:
|
||||
"These cookies are essential for the proper functioning of my website. Without these cookies, the website would not work properly",
|
||||
'These cookies are essential for the proper functioning of my website. Without these cookies, the website would not work properly',
|
||||
toggle: {
|
||||
value: "necessary",
|
||||
value: 'necessary',
|
||||
enabled: true,
|
||||
readonly: true, // cookie categories with readonly=true are all treated as "necessary cookies"
|
||||
},
|
||||
readonly: true // cookie categories with readonly=true are all treated as "necessary cookies"
|
||||
}
|
||||
},
|
||||
{
|
||||
title: "Performance and Analytics cookies",
|
||||
title: 'Performance and Analytics cookies',
|
||||
description:
|
||||
"These cookies allow the website to remember the choices you have made in the past",
|
||||
'These cookies allow the website to remember the choices you have made in the past',
|
||||
toggle: {
|
||||
value: "analytics", // your cookie category
|
||||
value: 'analytics', // your cookie category
|
||||
enabled: false,
|
||||
readonly: false,
|
||||
readonly: false
|
||||
},
|
||||
cookie_table: [
|
||||
// list of all expected cookies
|
||||
{
|
||||
col1: "^_ga", // match all cookies starting with "_ga"
|
||||
col2: "google.com",
|
||||
col3: "2 years",
|
||||
col4: "description ...",
|
||||
is_regex: true,
|
||||
col1: '^_ga', // match all cookies starting with "_ga"
|
||||
col2: 'google.com',
|
||||
col3: '2 years',
|
||||
col4: 'description ...',
|
||||
is_regex: true
|
||||
},
|
||||
{
|
||||
col1: "_gid",
|
||||
col2: "google.com",
|
||||
col3: "1 day",
|
||||
col4: "description ...",
|
||||
},
|
||||
],
|
||||
col1: '_gid',
|
||||
col2: 'google.com',
|
||||
col3: '1 day',
|
||||
col4: 'description ...'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Advertisement and Targeting cookies",
|
||||
title: 'Advertisement and Targeting cookies',
|
||||
description:
|
||||
"These cookies collect information about how you use the website, which pages you visited and which links you clicked on. All of the data is anonymized and cannot be used to identify you",
|
||||
'These cookies collect information about how you use the website, which pages you visited and which links you clicked on. All of the data is anonymized and cannot be used to identify you',
|
||||
toggle: {
|
||||
value: "targeting",
|
||||
value: 'targeting',
|
||||
enabled: false,
|
||||
readonly: false,
|
||||
},
|
||||
readonly: false
|
||||
}
|
||||
},
|
||||
{
|
||||
title: "More information",
|
||||
title: 'More information',
|
||||
description:
|
||||
'For any queries in relation to our policy on cookies and your choices, please <a class="cc-link" href="#yourcontactpage">contact us</a>.',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
'For any queries in relation to our policy on cookies and your choices, please <a class="cc-link" href="#yourcontactpage">contact us</a>.'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { createTRPCNuxtClient, httpBatchLink } from "trpc-nuxt/client";
|
||||
import type { AppRouter } from "~/server/trpc/routers/app.router";
|
||||
import superjson from "superjson";
|
||||
import { createTRPCNuxtClient, httpBatchLink } from 'trpc-nuxt/client';
|
||||
import type { AppRouter } from '~/server/trpc/routers/app.router';
|
||||
import superjson from 'superjson';
|
||||
|
||||
export default defineNuxtPlugin(() => {
|
||||
/**
|
||||
@@ -10,15 +10,15 @@ export default defineNuxtPlugin(() => {
|
||||
const client = createTRPCNuxtClient<AppRouter>({
|
||||
links: [
|
||||
httpBatchLink({
|
||||
url: "/api/trpc",
|
||||
}),
|
||||
url: '/api/trpc'
|
||||
})
|
||||
],
|
||||
transformer: superjson,
|
||||
transformer: superjson
|
||||
});
|
||||
|
||||
return {
|
||||
provide: {
|
||||
client,
|
||||
},
|
||||
client
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user