@netresearch/usercentrics-widgets
v1.1.0
Published
Lightweight placeholders compatible with Usercentrics CMP
Downloads
30
Keywords
Readme
Usercentrics Widgets
Lightweight customizable placeholders for third party content of your website (e.g. Youtube Videos) compatible with the Usercentrics CMP.
Unlike the Usercentrics Smart Data Protector, this library does not block third party content automatically. You have to change your website according the documentation in this README!
This is based on a community project and no official product from Usercentrics
Quickstart
Setup Usercentrics CMP
For each
iframe
andscript
elements you want to edit- change
src
todata-uc-src
- add
data-usercentrics="[SERVICE NAME]"
with the Name of the matching service form Usercentrics admin area- (for example
data-usercentrics="Google Maps"
for Google Maps)
- (for example
- add the attribute
data-uc-id
with the ID of the matching service form Usercentrics admin area (for exampledata-uc-id="BJz7qNsdj-7"
for Youtube)
- change
The Packet can load via NPM
- Include in package.json
or"devDependencies": { "@netresearch/usercentrics-widgets": "^1.0.7" },
- Install via NPM
npm install @netresearch/usercentrics-widgets
- Include in package.json
Include and add the files from the
/dist/
folder to your templateucw.min.css
into the<head>
section:<head> <link type="text/css" rel="stylesheet" href="ucw.min.css"/> </head>
ucw.js
(or if you need IE11 supportucw.legacy.js
) at the end of your<body>
<script src="ucw.js"></script> </body> </html>
Example
- IFrame (Google Maps)
<iframe data-usercentrics="Google Maps" data-uc-id="S1pcEj_jZX" data-uc-src="https://www.google.com/maps/d/u/1/embed?mid=XXX" width="852" height="480"></iframe>
- External Script (bookingkit)
<div id="bookingKitContainer" data-cw="6dfd2c67962b9442abd2a28759a7445e"></div> <script type="text/plain" data-usercentrics="bookingkit" data-uc-id="Ewb9uz1Rp" data-uc-src="https://4706b1799db005bf104.widget.bookingkit.net/bkscript/XXX/" async></script>
- Google Tag Manager and scripts without output can still be used as before
<script type="text/plain" data-usercentrics="Google Tag Manager"> (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','{settings.GoogleTagManagerContainerId}'); </script>
- IFrame (Google Maps)
Pipeline on github
- The pipeline is based on Github Actions
- The pipline build the
dist
folder and the JavaScript and css files - The pipline also runs the tests
Build changes locally
- the /dist/ folder contains the latest version of the library
- Changes can do in the /src/ folder
- Install the library via NPM with
npm install
- Build the changes with
npm run build
Supported technologies
- all iframes
- all scripts
- background images only for Youtube at the moment
Customization
All widgets can be changed via data attributes:
| Attribute | Description | Example |
|----------------------------|---------------------------------|-------------------------------------------------------------------------------|
| data-uc-src
| src
of the original element | data-uc-src="https://www.youtube.com/embed/xxx"
|
| data-text
| Text for the placeholder | data-text="We need your consent"
|
| data-accept
| Label for the accept button | data-accept="ok"
|
| data-uc-background-image
| URL for custom background-image | data-uc-background-image="https://picsum.photos/id/12/1920/1080.jpg"
|
Styling
There is a scss template in the style folder, this is independent of the css file from the dist folder
Instead of using the original predefined CSS file, you can use your own. See /style/ucw.css as a reference which CSS classes need to be defined and /example/customized.html as an example.