|
@ -1,62 +1,59 @@ |
|
|
<tiny-consent> |
|
|
<tiny-consent> |
|
|
<div id="tiny-consent" class="tiny-consent"> |
|
|
<div id="tiny-consent" class="tiny-consent"> |
|
|
<div class="tiny-consent__inner"> |
|
|
<div class="tiny-consent__inner"> |
|
|
<div class="tiny-consent__header"> |
|
|
|
|
|
<h3 class="tiny_consent__title"> |
|
|
|
|
|
{ state.options.text.title } |
|
|
|
|
|
</h3> |
|
|
|
|
|
<p if={ state.options.text.content } > |
|
|
|
|
|
{ state.options.text.content } |
|
|
|
|
|
</p> |
|
|
|
|
|
<div class="tiny-consent__close"> |
|
|
|
|
|
<button class="button button--submit tiny-consent__button" onclick={ handleClose }> |
|
|
|
|
|
<span if={ state.hasInitiated === false }>{ state.options.text.button__ok }</span> |
|
|
|
|
|
<span if={ state.hasInitiated === true }>{ state.options.text.button__close }</span> |
|
|
|
|
|
</button> |
|
|
|
|
|
|
|
|
<div class="tiny-consent__header"> |
|
|
|
|
|
<p if={ state.options.text.content } > |
|
|
|
|
|
{ state.options.text.content } |
|
|
|
|
|
</p> |
|
|
|
|
|
<div class="tiny-consent__close"> |
|
|
|
|
|
<button class="button button--submit tiny-consent__button" onclick={ handleClose }> |
|
|
|
|
|
<span if={ state.hasInitiated === false }>{ state.options.text.button__roger }</span> |
|
|
|
|
|
<span if={ state.hasInitiated === true }>{ state.options.text.button__close }</span> |
|
|
|
|
|
</button> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="tiny-consent__main"> |
|
|
|
|
|
<ul class="tiny-consent__cookies"> |
|
|
|
|
|
<li class="tiny-consent__cookie-group" each={ group in Object.entries(state.cookies) }> |
|
|
|
|
|
<header class="tiny-consent__cookie-accordion-header" if={ group[0] === 'default' && group[1].length > 1 } onclick={ () => { handleToogle() }}> |
|
|
|
|
|
{ state.options.text.title__default } ({ group[1].length }) <span class="tiny-consent__cookie-accordion-header-icon">▲</span> |
|
|
|
|
|
</header> |
|
|
|
|
|
<div class="tiny-consent__cookie-accordion{ group[0] === 'default' && group[1].length > 1 ? ' tiny-consent__cookie-accordion--active' : '' }"> |
|
|
|
|
|
<div class="tiny-consent__cookie-accordion-inner"> |
|
|
|
|
|
<div class="tiny-consent__cookie-wrapper" each={ (cookie, index) in group[1] }> |
|
|
|
|
|
<div class="tiny-consent__cookie-content"> |
|
|
|
|
|
<p> |
|
|
|
|
|
<span if={ cookie.title } class="tiny-consent__cookie-title">{ cookie.title }</span> |
|
|
|
|
|
{ cookie.content } |
|
|
|
|
|
</p> |
|
|
|
|
|
<div class="tiny-consent__cookie-footer"> |
|
|
|
|
|
<ul> |
|
|
|
|
|
<li if={ cookie.provider }><span>{ state.options.text.footer__provider }</span> { cookie.provider }</li> |
|
|
|
|
|
<li if={ cookie.name }><span>{ state.options.text.footer__name }</span> { cookie.name }</li> |
|
|
|
|
|
<li if={ cookie.duration }><span>{ state.options.text.footer__duration }</span> { cookie.duration }</li> |
|
|
|
|
|
<li if={ cookie.privacy_policy }><a target="_blank" href="{ cookie.privacy_policy }">{ state.options.text.footer__privacy_policy }</a></li> |
|
|
|
|
|
</ul> |
|
|
|
|
|
|
|
|
<div class="tiny-consent__main"> |
|
|
|
|
|
<ul class="tiny-consent__cookies"> |
|
|
|
|
|
<li class="tiny-consent__cookie-group" each={ group in Object.entries(state.cookies) }> |
|
|
|
|
|
<header class="tiny-consent__cookie-accordion-header" if={ group[0] === 'default' && group[1].length > 1 } onclick={ () => { handleToogle() }}> |
|
|
|
|
|
{ state.options.text.title__default } ({ group[1].length }) <span class="tiny-consent__cookie-accordion-header-icon">▲</span> |
|
|
|
|
|
</header> |
|
|
|
|
|
<div class="tiny-consent__cookie-accordion{ group[0] === 'default' && group[1].length > 1 ? ' tiny-consent__cookie-accordion--active' : '' }"> |
|
|
|
|
|
<div class="tiny-consent__cookie-accordion-inner"> |
|
|
|
|
|
<div class="tiny-consent__cookie-wrapper" each={ (cookie, index) in group[1] }> |
|
|
|
|
|
<div class="tiny-consent__cookie-content"> |
|
|
|
|
|
<p> |
|
|
|
|
|
<span if={ cookie.title } class="tiny-consent__cookie-title">{ cookie.title }</span> |
|
|
|
|
|
{ cookie.content } |
|
|
|
|
|
</p> |
|
|
|
|
|
<div class="tiny-consent__cookie-footer"> |
|
|
|
|
|
<ul> |
|
|
|
|
|
<li if={ cookie.provider }><span>{ state.options.text.footer__provider }</span> { cookie.provider }</li> |
|
|
|
|
|
<li if={ cookie.name }><span>{ state.options.text.footer__name }</span> { cookie.name }</li> |
|
|
|
|
|
<li if={ cookie.duration }><span>{ state.options.text.footer__duration }</span> { cookie.duration }</li> |
|
|
|
|
|
<li if={ cookie.privacy_policy }><a target="_blank" href="{ cookie.privacy_policy }">{ state.options.text.footer__privacy_policy }</a></li> |
|
|
|
|
|
</ul> |
|
|
|
|
|
</div> |
|
|
|
|
|
</div> |
|
|
|
|
|
<div if={ group[0] === 'other' } class="tiny-consent__cookie-decision"> |
|
|
|
|
|
<button class={ getAgreeClasses(cookie) } onclick={ () => { handleAgree(cookie) } }> |
|
|
|
|
|
{ state.options.text.button__agree } |
|
|
|
|
|
</button> |
|
|
|
|
|
<button if={ group[0] === 'other' } class={ getRejectClasses(cookie) } onclick={ () => { handleReject(cookie) } }> |
|
|
|
|
|
{ state.options.text.button__reject } |
|
|
|
|
|
</button> |
|
|
|
|
|
</div> |
|
|
|
|
|
<div if={ group[0] === 'default' && index === (group[1].length - 1) } class="tiny-consent__cookie-decision"> |
|
|
|
|
|
<button disabled={ isOk() } class="button button--ok tiny-consent__button" onclick={ (event) => { handleDefault(cookies) }}> |
|
|
|
|
|
{ state.options.text.button__ok } |
|
|
|
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div if={ group[0] === 'other' } class="tiny-consent__cookie-decision"> |
|
|
|
|
|
<button class={ getAgreeClasses(cookie) } onclick={ () => { handleAgree(cookie) } }> |
|
|
|
|
|
{ state.options.text.button__agree } |
|
|
|
|
|
</button> |
|
|
|
|
|
<button if={ group[0] === 'other' } class={ getRejectClasses(cookie) } onclick={ () => { handleReject(cookie) } }> |
|
|
|
|
|
{ state.options.text.button__reject } |
|
|
|
|
|
</button> |
|
|
|
|
|
</div> |
|
|
|
|
|
<div if={ group[0] === 'default' && index === (group[1].length - 1) } class="tiny-consent__cookie-decision"> |
|
|
|
|
|
<button disabled={ isOk() } class="button button--ok tiny-consent__button" onclick={ (event) => { handleDefault(cookies) }}> |
|
|
|
|
|
{ state.options.text.button__ok } |
|
|
|
|
|
</button> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
</li> |
|
|
|
|
|
</ul> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
</li> |
|
|
|
|
|
</ul> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
@ -86,12 +83,12 @@ |
|
|
options: { |
|
|
options: { |
|
|
cookie_name: 'tiny_consent', |
|
|
cookie_name: 'tiny_consent', |
|
|
text: { |
|
|
text: { |
|
|
title : 'Cookies', |
|
|
|
|
|
content : 'We are using Cookies and display that was we use, also there are cookies you can accept or reject', |
|
|
content : 'We are using Cookies and display that was we use, also there are cookies you can accept or reject', |
|
|
title__default : 'Essential', |
|
|
title__default : 'Essential', |
|
|
button__agree : 'Yes', |
|
|
button__agree : 'Yes', |
|
|
button__reject : 'No', |
|
|
button__reject : 'No', |
|
|
button__ok : 'Ok', |
|
|
button__ok : 'Ok', |
|
|
|
|
|
button__roger : 'Roger that', |
|
|
button__close : 'Close', |
|
|
button__close : 'Close', |
|
|
footer__name: 'Cookie Name', |
|
|
footer__name: 'Cookie Name', |
|
|
footer__provider: 'Provider', |
|
|
footer__provider: 'Provider', |
|
@ -126,8 +123,8 @@ |
|
|
/** |
|
|
/** |
|
|
* |
|
|
* |
|
|
* |
|
|
* |
|
|
* @param {Object} cookie |
|
|
|
|
|
* @return {String} |
|
|
|
|
|
|
|
|
* @param {object} cookie |
|
|
|
|
|
* @return {string} |
|
|
*/ |
|
|
*/ |
|
|
getAgreeClasses(cookie) |
|
|
getAgreeClasses(cookie) |
|
|
{ |
|
|
{ |
|
@ -147,8 +144,9 @@ |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* |
|
|
* |
|
|
* @param {[type]} cookie [description] |
|
|
|
|
|
* @return {[type]} [description] |
|
|
|
|
|
|
|
|
* |
|
|
|
|
|
* @param {object} cookie |
|
|
|
|
|
* @return {string} |
|
|
*/ |
|
|
*/ |
|
|
getRejectClasses(cookie) |
|
|
getRejectClasses(cookie) |
|
|
{ |
|
|
{ |
|
@ -167,9 +165,10 @@ |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
|
|
|
* get classes of button is active or not |
|
|
* |
|
|
* |
|
|
* @param {[type]} cookie [description] |
|
|
|
|
|
* @return {[type]} [description] |
|
|
|
|
|
|
|
|
* @param {object} cookie |
|
|
|
|
|
* @return {string} |
|
|
*/ |
|
|
*/ |
|
|
getWrapperClasses(cookie) |
|
|
getWrapperClasses(cookie) |
|
|
{ |
|
|
{ |
|
@ -188,7 +187,7 @@ |
|
|
* handle accordion, open and close |
|
|
* handle accordion, open and close |
|
|
* |
|
|
* |
|
|
* |
|
|
* |
|
|
* @param {object} event |
|
|
|
|
|
|
|
|
* @param {object} event |
|
|
* |
|
|
* |
|
|
*/ |
|
|
*/ |
|
|
handleToogle() |
|
|
handleToogle() |
|
@ -210,8 +209,9 @@ |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
|
|
|
* check if default cookie is set in data |
|
|
* |
|
|
* |
|
|
* @return {Boolean} [description] |
|
|
|
|
|
|
|
|
* @return {Boolean} |
|
|
*/ |
|
|
*/ |
|
|
isOk() |
|
|
isOk() |
|
|
{ |
|
|
{ |
|
@ -302,18 +302,30 @@ |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
|
|
|
* check if |
|
|
|
|
|
* |
|
|
* |
|
|
* |
|
|
* @return {[type]} |
|
|
|
|
|
*/ |
|
|
*/ |
|
|
beforeUpdate() { |
|
|
beforeUpdate() { |
|
|
if (this.state.hasInitiated === false && this.state.cookies.other.length > 0) { |
|
|
|
|
|
|
|
|
if (this.state.hasInitiated === false) { |
|
|
|
|
|
|
|
|
|
|
|
// if it has to closing |
|
|
let hasClosing = true; |
|
|
let hasClosing = true; |
|
|
|
|
|
|
|
|
|
|
|
// data |
|
|
let data = this.getData(); |
|
|
let data = this.getData(); |
|
|
|
|
|
|
|
|
this.state.cookies.other.forEach((cookie) => { |
|
|
|
|
|
if (data[cookie.id] === false) { |
|
|
|
|
|
|
|
|
// cookies |
|
|
|
|
|
let cookies = []; |
|
|
|
|
|
|
|
|
|
|
|
if (this.state.cookies.other && this.state.cookies.other.length > 0) { |
|
|
|
|
|
cookies = this.state.cookies.other; |
|
|
|
|
|
} else if (!this.state.cookies.other && this.state.cookies.default && this.state.cookies.default.length > 0) { |
|
|
|
|
|
cookies = this.state.cookies.default; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
cookies.forEach((cookie) => { |
|
|
|
|
|
if (data[cookie.id] === undefined) { |
|
|
hasClosing = false; |
|
|
hasClosing = false; |
|
|
} |
|
|
} |
|
|
}); |
|
|
}); |
|
@ -327,9 +339,10 @@ |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
|
|
|
* handle if user agree cookie |
|
|
|
|
|
* |
|
|
|
|
|
* @param {object} event |
|
|
* |
|
|
* |
|
|
* @param {[type]} event [description] |
|
|
|
|
|
* @return {[type]} [description] |
|
|
|
|
|
*/ |
|
|
*/ |
|
|
handleAgree(cookie, index) { |
|
|
handleAgree(cookie, index) { |
|
|
let data = this.getData(); |
|
|
let data = this.getData(); |
|
@ -346,8 +359,7 @@ |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* |
|
|
|
|
|
* |
|
|
|
|
|
|
|
|
* handle if user reject cookie |
|
|
* |
|
|
* |
|
|
* @param {object} event |
|
|
* @param {object} event |
|
|
* |
|
|
* |
|
@ -370,9 +382,9 @@ |
|
|
* setting default cookies |
|
|
* setting default cookies |
|
|
* |
|
|
* |
|
|
* @param {object} event |
|
|
* @param {object} event |
|
|
|
|
|
* |
|
|
*/ |
|
|
*/ |
|
|
handleDefault() { |
|
|
handleDefault() { |
|
|
|
|
|
|
|
|
let data = this.getData(); |
|
|
let data = this.getData(); |
|
|
|
|
|
|
|
|
this.state.cookies.default.forEach((cookie, index) => { |
|
|
this.state.cookies.default.forEach((cookie, index) => { |
|
@ -381,6 +393,7 @@ |
|
|
|
|
|
|
|
|
Cookie.set(this.state.options.cookie_name, data); |
|
|
Cookie.set(this.state.options.cookie_name, data); |
|
|
|
|
|
|
|
|
|
|
|
this.beforeUpdate(); |
|
|
this.update(); |
|
|
this.update(); |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
@ -396,17 +409,21 @@ |
|
|
/** |
|
|
/** |
|
|
* change to open |
|
|
* change to open |
|
|
* |
|
|
* |
|
|
|
|
|
* |
|
|
* @param {object} event |
|
|
* @param {object} event |
|
|
* |
|
|
* |
|
|
*/ |
|
|
*/ |
|
|
handleClose() |
|
|
handleClose() |
|
|
{ |
|
|
{ |
|
|
if (this.state.hasInitiated === false) { |
|
|
if (this.state.hasInitiated === false) { |
|
|
this.state.cookies.other.forEach((cookie) => { |
|
|
|
|
|
this.handleReject(cookie); |
|
|
|
|
|
this.handleDefault(); |
|
|
|
|
|
this.state.hasInitiated = true; |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
if (this.state.cookies.other) { |
|
|
|
|
|
this.state.cookies.other.forEach((cookie) => { |
|
|
|
|
|
this.handleReject(cookie); |
|
|
|
|
|
}); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
this.state.hasInitiated = true; |
|
|
|
|
|
this.handleDefault(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
this.close(); |
|
|
this.close(); |
|
|