crmbonus-component-wake 2.1.13-homolog → 2.1.15-homolog

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +0,0 @@
1
- {"version":3,"names":["moneyDollarsSvgrepoComSvg","setTime","localStorage","getItem","time","setItem","crmBonusNoteCss","CrmBonusNoteStyle0","CrmBonusNote","defaultStyles","componentWillLoad","this","upadateCheckToFreteAndGetUrl","startTime","cartWake","cart","CartWake","JSON","parse","getCart","console","log","config","getInfoCustomization","store","name","envios","document","getElementsByName","forEach","envio","checked","url","window","location","origin","handleHide","amount","id","getAmount","Number","toFixed","replace","backCart","href","removeItem","hasBonus","_bonus","getKeyReserveByCartId","info","requestBonus","bonus","getTime","render","giftbackname","_a","giftbackTitle","infobonus","h","key","class","style","styles","src","money","width","showEdit","onClick","i18next","t","initialValue","downtime"],"sources":["src/assets/svg/money-dollars-svgrepo-com.svg","src/helpers/time.helper.ts","src/components/note/crm-bonus-note.css?tag=crm-bonus-note","src/components/note/crm-bonus-note.tsx"],"sourcesContent":["<?xml version=\"1.0\" encoding=\"utf-8\"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->\n<svg width=\"800px\" height=\"800px\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<circle cx=\"12\" cy=\"12\" r=\"10\" stroke=\"#000000\" stroke-width=\"2\"/>\n<path d=\"M15 9.94728C14.5 9.3 13.8 8.5 12 8.5C10.2 8.5 9 9.51393 9 9.94728C9 10.3806 9.06786 10.9277 10 11.5C10.7522 11.9618 12.6684 12.0439 13.5 12.5C14.679 13.1467 14.8497 13.8202 14.8497 14.0522C14.8497 14.6837 13.4175 15.4852 12 15.5C10.536 15.5153 9.5 14.7 9 14.0522\" stroke=\"#000000\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M12 7V17\" stroke=\"#000000\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>","export function setTime() {\n\n if(localStorage.getItem(\"bc:time-allow\")) {\n return\n }\n\n const time = localStorage.getItem(\"bc:time\");\n\n if(!time) {\n localStorage.setItem(\"bc:time\", \"360\");\n localStorage.setItem(\"bc:time-allow\", \"true\");\n return\n } \n}",".note-container {\n border: 1px solid #dddddd;\n padding: 0 15px 15px;\n margin: 0 0 26px 0px;\n display: flex;\n flex-direction: column;\n gap: 13px;\n\n\n & .description {\n display: flex;\n flex-direction: column;\n gap: 13px;\n }\n}\n\n.note-container hr {\n border: 1px solid #CCC;\n}\n\n.note-container .back-cart {\n display: flex;\n text-align: center;\n}\n\n.note-header {\n display: flex;\n align-items: baseline;\n justify-content: space-between;\n}\n\n.note-title {\n font-weight: 700;\n text-align: left;\n display: flex;\n gap: 6px;\n align-items: center;\n margin-top: 11px;\n color: #000;\n}\n\n.note-description {\n color: #6d6d5f;\n padding: 0;\n margin: 0 auto;\n}\n\n.back-cart {\n /* font-size: .9em; */\n color: #27272A;\n text-decoration: none;\n cursor: pointer;\n margin-top: 11px;\n}\n\n.note-description-2 {\n color: var(--crm-scheme-fg-main-inverse, #262626);\n /* font-size: var(--crm-font-size-body-lg, 16px); */\n font-style: normal;\n font-weight: var(--crm-font-weight-body-bold, 400);\n line-height: var(--crm-line-height-body-md, 20px);\n letter-spacing: var(--crm-letter-spacing-title-md, 0px);\n margin-top: 11px;\n color: #000;\n}\n\n.note-description-not {\n /* font-size: 16px; */\n}","import { Component, Prop, State, h } from \"@stencil/core\";\nimport { IInfoStore, getInfoCustomization } from \"../../helpers/info.config.helper\";\n\nimport money from '../../assets/svg/money-dollars-svgrepo-com.svg'\nimport { getKeyReserveByCartId } from \"../../utils/keys.storage\";\nimport i18next from \"../../i18n/i18n\"\nimport { IBonus } from \"../../components\";\nimport { setTime } from \"../../helpers/time.helper\";\nimport { CartWake } from \"../../objectvalues/cart.wake\";\nimport { getCart } from \"../../helpers/cart.helper\";\nimport { defaultStyles } from \"../../contants\";\n\n@Component({\n tag: 'crm-bonus-note',\n styleUrl: 'crm-bonus-note.css'\n})\nexport class CrmBonusNote {\n\n @Prop() cart;\n\n @State() cartWake: CartWake;\n @State() url: string;\n @State() config: IInfoStore;\n @State() bonus: IBonus;\n @State() showEdit: boolean = false;\n @State() styles = defaultStyles;\n\n async componentWillLoad() {\n await this.upadateCheckToFreteAndGetUrl();\n this.startTime();\n }\n\n async upadateCheckToFreteAndGetUrl() {\n\n this.cartWake = this.cart ? new CartWake(JSON.parse(this.cart)) : await getCart();\n\n console.log('upadateCheckToFreteAndGetUrl', this.cartWake)\n\n this.config = getInfoCustomization(this.cartWake.store.name);\n\n const envios = document.getElementsByName('forma-envio');\n envios.forEach((envio: any) => {\n envio.checked = false;\n });\n\n this.url = window.location.origin;\n }\n\n handleHide() {\n const amount = localStorage.getItem(this.cartWake.id);\n return !!amount;\n }\n\n getAmount() {\n const amount = localStorage.getItem(this.cartWake.id);\n\n return amount ? Number(amount).toFixed(2).replace(\".\", \",\") || \"0,00\" : \"0,00\";\n }\n\n async backCart() {\n window.location.href = this.url;\n }\n\n\n private startTime() {\n\n if (!localStorage.getItem(\"bc:time-allow\")) {\n localStorage.removeItem(\"bc:time\")\n }\n\n setTime();\n }\n\n\n hasBonus() {\n const _bonus = localStorage.getItem(getKeyReserveByCartId(this.cartWake.id));\n\n const info = {\n hasBonus: false,\n requestBonus: false\n }\n\n if (_bonus) {\n this.bonus = JSON.parse(_bonus);\n info.hasBonus = this.bonus.hasBonus;\n info.requestBonus = true;\n }\n\n return info;\n }\n\n getTime() {\n const time = localStorage.getItem(\"bc:time\")\n\n return time ? Number(time) : 0;\n }\n\n render() {\n\n const giftbackname = this.config?.giftbackTitle || \"Giftback\";\n\n const infobonus = this.hasBonus()\n\n return (\n <div>\n <div class=\"note-container\" style={this.styles}>\n <div class=\"note-header\">\n\n <p class=\"note-title\">\n <img src={money} width={23} />\n {this.config.giftbackTitle}\n </p>\n {\n infobonus.hasBonus && (\n <div>\n {this.showEdit && (\n <p class=\"back-cart\" onClick={() => this.backCart()}>\n {i18next.t(\"edit\")}\n </p>\n )}\n {!this.showEdit && <countdown-timer initialValue={this.getTime()} downtime={() => { this.showEdit = true }} />}\n </div>\n )\n }\n </div>\n\n {\n infobonus.hasBonus &&\n (\n <p class=\"note-description-2\">\n {i18next.t(\"withApplyBonus\", { giftbackname: giftbackname })} <strong>R$ {this.getAmount()}.</strong>\n </p>\n )\n }\n\n {\n (infobonus.requestBonus && !infobonus.hasBonus) &&\n (\n <p class=\"note-description-not\">\n {i18next.t(\"noBonus\", { giftbackname: giftbackname })}\n </p>\n )\n }\n\n {\n !infobonus.requestBonus &&\n (\n <div class=\"description\">\n <p class=\"note-description-not\">\n {i18next.t(\"noBonus\", { giftbackname: giftbackname })}\n </p>\n </div>\n )\n }\n </div>\n </div>\n )\n }\n}"],"mappings":"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","ignoreList":[]}