-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fba19ce
commit 4276252
Showing
2 changed files
with
242 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
274 changes: 241 additions & 33 deletions
274
src/components/admin/createProjectSlider/components/PreviewConfig.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,273 @@ | ||
<template > | ||
<div class="mx-auto overflow-hidden mt-3 border-0" style="max-width: 600px;"> | ||
<div > | ||
<Metrics | ||
|
||
<template> | ||
<div class="mx-auto overflow-hidden mt-3 border-0" style="max-width: 600px"> | ||
<div> | ||
<Metrics | ||
:userScore="5" | ||
:totalEntries="eventData.investorsCount" | ||
:timeLeft=" | ||
parseInt((new Date(eventData.toDate).getTime() - | ||
new Date().getTime()) / | ||
(1000 * 3600 * 24)) | ||
parseInt( | ||
(new Date(eventData.toDate).getTime() - new Date().getTime()) / | ||
(1000 * 3600 * 24) | ||
) | ||
" | ||
/> | ||
</div> | ||
<div > | ||
|
||
<Banner | ||
<div> | ||
<Banner | ||
:eventName="eventData.projectName" | ||
:themeColor="eventData.themeColor" | ||
:fontColor="eventData.fontColor" | ||
:fromDate="new Date(eventData.fromDate).toLocaleString()" | ||
:toDate="new Date(eventData.toDate).toLocaleString()" | ||
:logoUrl="eventData.logoUrl" | ||
/> | ||
</div> | ||
<div> | ||
|
||
<draggable v-model="eventData.actions" @end="onEnd" > | ||
<b-list-group | ||
class="col md-4" | ||
v-for="action in eventData.actions" | ||
v-bind:key="action._id" | ||
> | ||
<b-list-group-item class="col md-4" v-if="action.type!=='HYPERSIGN_AUTH'">{{action.title}}</b-list-group-item> | ||
</div> | ||
<div class="accordion mx-auto"> | ||
|
||
<draggable v-model="eventData.actions" @end="onEnd"> | ||
<b-col | ||
md="14" | ||
v-for="action in eventData.actions" | ||
v-bind:key="action._id" | ||
> | ||
<b-card v-if="action.type !== 'HYPERSIGN_AUTH'"> | ||
<b-row cols-sm="1"> | ||
<b-col cols="1" sm="1" md="1" > | ||
<span> | ||
<i | ||
style="color: gray" | ||
v-if="action.type.includes('TWITTER')" | ||
class="fab fa-twitter" | ||
></i> | ||
<i | ||
style="color: gray" | ||
v-if="action.type.includes('TELEGRAM')" | ||
class="fab fa-telegram-plane" | ||
></i> | ||
<i | ||
style="color: gray" | ||
v-if="action.type.includes('INPUT_TEXT')" | ||
class="fas fa-file-alt" | ||
></i> | ||
<i | ||
style="color: gray" | ||
v-if="action.type.includes('NUMBER')" | ||
class="fas fa-list-ol" | ||
></i> | ||
<i | ||
style="color: gray" | ||
v-if="action.type.includes('DATE')" | ||
class="fas fa-calendar-minus" | ||
></i> | ||
<i | ||
style="color: gray" | ||
v-if="action.type.includes('DISCORD')" | ||
class="fab fa-discord" | ||
></i> | ||
<i | ||
style="color: gray" | ||
v-if="action.type.includes('INPUT_HYPERLINK')" | ||
class="fa fa-link" | ||
></i> | ||
<i | ||
style="color: gray" | ||
v-if="action.type.includes('INFO_TEXT')" | ||
class="fa fa-info-circle" | ||
></i> | ||
<i | ||
style="color: gray" | ||
v-if="action.type.includes('PRIZE_')" | ||
class="fas fa-gift" | ||
></i> | ||
<i | ||
style="color: gray" | ||
v-if="action.type.includes('SUMSUB_KYC')" | ||
class="fas fa-id-card" | ||
></i> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/external-link.svg" | ||
v-if="action.type.includes('HYPERLINK_URL')" | ||
height="22px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="/img/ethereum.2b470564.svg" | ||
v-if="action.type.includes('BLOCKCHAIN_ETH')" | ||
height="22px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="/img/ethereum.2b470564.svg" | ||
v-if="action.type.includes('ETHEREUM_ERC20')" | ||
height="22px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="/img/ethereum.2b470564.svg" | ||
v-if="action.type.includes('ETHEREUM_ERC721')" | ||
height="22px" | ||
/> | ||
|
||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/matic-logo.svg" | ||
v-if="action.type.includes('MATIC_ERC20')" | ||
height="20px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/matic-logo.svg" | ||
v-if="action.type.includes('MATIC_ERC721')" | ||
height="20px" | ||
/> | ||
|
||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/binance-logo.svg" | ||
v-if="action.type.includes('BINANCE_ERC20')" | ||
height="20px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/binance-logo.svg" | ||
v-if="action.type.includes('BINANCE_ERC721')" | ||
height="20px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/ringing.png" | ||
v-if="action.type.includes('PUSH_NOTIFICATION')" | ||
height="20px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/Reef.svg" | ||
v-if="action.type.includes('REEF_ERC20')" | ||
height="20px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/Reef.svg" | ||
v-if="action.type.includes('REEF_ERC721')" | ||
height="20px" | ||
/> | ||
|
||
|
||
</b-list-group> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/moonbase-alpha.svg" | ||
v-if="action.type.includes('MOON_ERC20')" | ||
height="22px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/moonbase-alpha.svg" | ||
v-if="action.type.includes('MOON_ERC721')" | ||
height="22px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/moon-river.png" | ||
v-if="action.type.includes('MOONRIVER_ERC20')" | ||
height="20px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/moon-river.png" | ||
v-if="action.type.includes('MOONRIVER_ERC721')" | ||
height="20px" | ||
/> | ||
|
||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/moonbeam.png" | ||
v-if="action.type.includes('MOONBEAM_ERC20')" | ||
height="20px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/moonbeam.png" | ||
v-if="action.type.includes('MOONBEAM_ERC721')" | ||
height="20px" | ||
/> | ||
|
||
</draggable> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/tezos.png" | ||
v-if="action.type.includes('BLOCKCHAIN_TEZ')" | ||
height="22px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/cardano_128.png" | ||
v-if="action.type.includes('BLOCKCHAIN_CARDANO')" | ||
height="22px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/binance-logo.svg" | ||
v-if="action.type.includes('BLOCKCHAIN_BSC')" | ||
height="22px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/matic-logo.svg" | ||
v-if="action.type.includes('BLOCKCHAIN_MATIC')" | ||
height="20px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/harmony.png" | ||
v-if="action.type.includes('BLOCKCHAIN_ONE')" | ||
height="20px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/avalanche.png" | ||
v-if="action.type.includes('BLOCKCHAIN_AVAX')" | ||
height="20px" | ||
/> | ||
<img | ||
style="padding-right: 5px" | ||
src="../../../../assets/Reef.svg" | ||
v-if="action.type.includes('BLOCKCHAIN_REEF')" | ||
height="20px" | ||
/> | ||
</span> | ||
</b-col> | ||
<b-col cols="9" sm="9" class="text-left" md="9"> | ||
<div class="text text-capitalize">{{ action.title }}</div> | ||
</b-col> | ||
|
||
<b-col cols="2" sm="2" md="2"> | ||
<b-badge class="btn-score" > | ||
{{ action.score }} | ||
</b-badge> | ||
</b-col> | ||
</b-row> | ||
</b-card> | ||
</b-col> | ||
</draggable> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import Banner from "../../../participant/Banner.vue"; | ||
import Metrics from "../../../participant/Metrics.vue"; | ||
import draggable from 'vuedraggable' | ||
import draggable from "vuedraggable"; | ||
export default { | ||
name: "PreviewConfig", | ||
props: { | ||
eventData: { | ||
type: Object, | ||
}, | ||
}, | ||
components: { Banner, Metrics ,draggable}, | ||
methods:{ | ||
onEnd(){ | ||
this.$root.$emit("actionReorder",this.eventData.actions) | ||
} | ||
} | ||
components: { Banner, Metrics, draggable }, | ||
methods: { | ||
onEnd() { | ||
this.$root.$emit("actionReorder", this.eventData.actions); | ||
}, | ||
}, | ||
}; | ||
</script> |