JEMBOT MAWOT Bypass Shell
<!--**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*-->
<script>
import EventBus from '@components/EventBus';
/**
* This component display a modal where you can create a wishlist
*/
export default {
name: 'Share',
props: {
url: {
type: String,
required: true,
default: '#',
},
title: {
type: String,
required: true,
default: 'Share wishlist',
},
label: {
type: String,
required: true,
default: 'Share link',
},
cancelText: {
type: String,
required: true,
default: 'Cancel',
},
copyText: {
type: String,
required: true,
default: 'Copy text',
},
copiedText: {
type: String,
required: true,
default: 'Copied',
},
},
data() {
return {
value: '',
isHidden: true,
actionText: '',
};
},
methods: {
/**
* Toggle the modal
*/
toggleModal() {
this.isHidden = !this.isHidden;
},
/**
* Copy the link in the input value
*/
copyLink() {
const shareInput = document.querySelector(
'.wishlist-share .form-control',
);
shareInput.select();
shareInput.setSelectionRange(0, 99999);
document.execCommand('copy');
this.actionText = this.copiedText;
this.toggleModal();
EventBus.$emit('showToast', {
detail: {
type: 'success',
message: 'copyText',
},
});
},
},
mounted() {
this.actionText = this.copyText;
/**
* Register to the event showCreateWishlist so others components can toggle this modal
*
* @param {String} 'showCreateWishlist'
*/
EventBus.$on('showShareWishlist', async (event) => {
this.actionText = this.copyText;
this.value = event.detail.shareUrl;
this.toggleModal();
});
},
};
</script>
<style lang="scss" type="text/scss">
.wishlist {
&-share {
.wishlist-modal {
display: block;
opacity: 0;
pointer-events: none;
z-index: 0;
&.show {
opacity: 1;
pointer-events: all;
z-index: 1053;
}
}
}
}
</style>
xxxxx1.0, XXX xxxx