https://github.com/netresearch/usercentrics-widgets
Lightweight customizable placeholders for third party content of your website (e.g. Youtube Videos) compatible with the Usercentrics CMP.
https://github.com/netresearch/usercentrics-widgets
usercentrics
Last synced: 9 months ago
JSON representation
Lightweight customizable placeholders for third party content of your website (e.g. Youtube Videos) compatible with the Usercentrics CMP.
- Host: GitHub
- URL: https://github.com/netresearch/usercentrics-widgets
- Owner: netresearch
- License: mit
- Created: 2022-01-04T13:36:00.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-24T07:23:37.000Z (almost 2 years ago)
- Last Synced: 2024-10-29T21:12:00.353Z (over 1 year ago)
- Topics: usercentrics
- Language: JavaScript
- Homepage:
- Size: 1.85 MB
- Stars: 4
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Usercentrics Widgets
=====================
Lightweight customizable placeholders for third party content of your website (e.g. Youtube Videos) compatible with the
[Usercentrics CMP](https://usercentrics.com). The library supports both the classic `UC_UI` interface and the
Usercentrics v3 Browser API.
* Unlike the [Usercentrics Smart Data Protector](https://docs.usercentrics.com/#/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](https://philsch.github.io/usercentrics-widgets/) and no official product from Usercentrics
## Quickstart
1. Setup Usercentrics CMP
2. For each `iframe` and `script` elements you want to edit
1. change `src` to `data-uc-src`
2. add `data-usercentrics="[SERVICE NAME]"` with the Name of the matching service form Usercentrics admin area
1. (for example `data-usercentrics="Google Maps"` for Google Maps)
3. add the attribute `data-uc-id` with the ID of the matching service form Usercentrics admin area
(for example `data-uc-id="BJz7qNsdj-7"` for Youtube)
3. The Packet can load via NPM
1. Include in package.json
```
"devDependencies": {
"@netresearch/usercentrics-widgets": "^2.0.0"
},
```
or
2. Install via NPM
```
npm install @netresearch/usercentrics-widgets
```
4. Include and add the files from the `/dist/` folder to your template
1. `ucw.min.css` into the `` section:
```html
```
2. `ucw.js` (or if you need IE11 support `ucw.legacy.js`) at the end of your ``
```html
```
5. Example
1. IFrame (Google Maps)
```
```
2. External Script (bookingkit)
```
```
3. Google Tag Manager and scripts without output can still be used as before
```
(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}');
```
## Pipeline on github
* The pipeline is based on [Github Actions](https://github.com/netresearch/usercentrics-widgets/actions)
* The pipline build the `dist` folder and the JavaScript and css files
* The pipline also runs the tests
## Build changes locally
1. the /dist/ folder contains the latest version of the library
2. Changes can do in the /src/ folder
3. Install the library via NPM with `npm install`
4. 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](/style/ucw.css) as a reference
which CSS classes need to be defined and [/example/customized.html](/example/customized.html) as an example.
## Configuration via config file (optional)
You can centrally control the behavior and texts of the widgets using an optional config file. The file exposes a global variable `window.UCW_WIDGET_CONFIG`.
How to include:
- Include `ucw.js` (or `ucw.legacy.js`) with an additional `data-config` attribute pointing to your configuration file.
Example:
```html
...
```
Structure of the configuration (`window.UCW_WIDGET_CONFIG`):
- i18n (language-specific; keys de/en, case-insensitive)
- textHtml: Complete HTML for the placeholder (overrides prefix/suffix variant)
- acceptLabel: Text of the accept button
- acceptLabelClass: Additional CSS class(es) for the control element wrapping the button (added alongside `uc-widget-control`)
- textServicePrefix: Text before the service name, if `textHtml` is not used
- textSuffixHtml: HTML after the service name, if `textHtml` is not used
- Root level (optional, fallback for all languages):
- textHtml, acceptLabel, acceptLabelClass, textServicePrefix, textSuffixHtml
Notes:
- Language is detected via the `lang` attribute on the `` element. For German, `de-DE`, `de` or `DE` are supported; otherwise English is used.
- A complete example can be found here:
- `src/static/assets/js/usercentrics-widgets/src/config/ucw.config.example.js`
- A project example is here: `src/static/assets/js/usercentrics-widgets.config.js`