Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix #1199

Merged
merged 1 commit into from
May 26, 2022
Merged

fix #1199

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"vue-sidebar-menu": "^4.7.4",
"vue-stepper": "^1.4.2",
"vue-sweetalert2": "^5.0.2",
"vuedraggable": "^2.24.3",
"vuejs-datepicker": "^1.6.2",
"vuejs-datetimepicker": "^1.1.13",
"vuejs-paginate": "^2.1.0",
Expand Down
274 changes: 241 additions & 33 deletions src/components/admin/createProjectSlider/components/PreviewConfig.vue
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>