-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fast add rewards page for zealy rewards
- Loading branch information
1 parent
e42f5a5
commit 93d7646
Showing
2 changed files
with
199 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,193 @@ | ||
<template> | ||
<div | ||
class="md:flex bg-black text-white md:space-x-24 justify-center md:px-16 py-16" | ||
> | ||
<div class="text-center"> | ||
<h1 class="md:hidden text-5xl font-bold pb-12"> | ||
{{ heading }} | ||
</h1> | ||
<div class="py-24"> | ||
<div class="mx-auto h-64 w-64 relative group"> | ||
<ProfilePicComponent | ||
:src="state.img" | ||
size="64" | ||
alt="Profile pic" | ||
/> | ||
<button | ||
v-if="state.userIsUser" | ||
class="absolute top-0 left-0 right-0 bottom-0 m-auto w-10 invisible group-hover:visible" | ||
@click="showChooseModal" | ||
> | ||
<img | ||
:src="editImg" | ||
alt="edit" | ||
class="hover:drop-shadow-md" | ||
> | ||
</button> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
<div class="text-center md:text-left"> | ||
<h1 class="max-md:hidden text-5xl font-bold pb-12"> | ||
{{ heading }} | ||
</h1> | ||
<div class="grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-16"> | ||
<UserViewHeadingContainer> | ||
<template #heading> | ||
Wallet | ||
</template> | ||
<template #body> | ||
<b>Address</b> <br>{{ state.addr }} | ||
<br> | ||
<b>Alias</b> <br>{{ state.user.alias }} | ||
<br><br> | ||
<b>Zealy ID</b> <br>{{ state.rewards[0].ZealyID }} | ||
<br> | ||
<b>Airdrop</b> <br>{{ state.rewards[0].Airdrop }} | ||
<br> | ||
<b>InGameCredits</b> <br>{{ state.rewards[0].InGameCredits }} | ||
<br> | ||
<b>EarlyAccessToGame</b> <br>{{ state.rewards[0].EarlyAccessToGame }} | ||
<br> | ||
<b>BoosterPacks</b> <br>{{ state.rewards[0].BoosterPacks }} | ||
<br> | ||
<b>DiscordUsername</b> <br>{{ state.rewards[0].DiscordUsername }} | ||
<br> | ||
<b>AmbassadorProgramAdvisory</b> <br>{{ state.rewards[0].AmbassadorProgramAdvisory }} | ||
<br> | ||
<b>WLForTheTokenSale</b> <br>{{ state.rewards[0].WLForTheTokenSale }} | ||
<br> | ||
<b>WLForTheTokenSaleBetterPrice</b> <br>{{ state.rewards[0].WLForTheTokenSaleBetterPrice }} | ||
<br> | ||
</template> | ||
</UserViewHeadingContainer> | ||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { useAddress } from "@/def-composables/useAddress"; | ||
import { useLoggedIn } from "@/def-composables/useLoggedIn"; | ||
import { useQuery } from "@/def-composables/useQuery"; | ||
import { validAddress } from "@/utils/validation"; | ||
import { useTx } from "@/def-composables/useTx"; | ||
import { useProfilePic } from "@/def-composables/useProfilePic"; | ||
import type { Coin } from "@/model/Coin"; | ||
import { normalizeCoins } from "@/utils/utils"; | ||
import { computed, type ComputedRef, onMounted, reactive, watch } from "vue"; | ||
import { useRoute, useRouter } from "vue-router"; | ||
import { useUser } from "@/def-composables/useUser"; | ||
import { User } from "decentralcardgame-cardchain-client-ts/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/user"; | ||
import { Match } from "decentralcardgame-cardchain-client-ts/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match"; | ||
import UserViewHeadingContainer from "@/views/UserView/UserViewHeadingContainer.vue"; | ||
import RouterCCButton from "@/components/elements/CCButton/RouterCCButton.vue"; | ||
import BaseCCButton from "@/components/elements/CCButton/BaseCCButton.vue"; | ||
import ProfilePicComponent from "@/components/elements/ProfilePicComponent.vue"; | ||
import editImg from "@/assets/figma/edit.png"; | ||
import ChoosePBModal from "@/components/modals/ChoosePBModal.vue"; | ||
import { Color } from "@/components/utils/color"; | ||
import { CouncilStatus } from "decentralcardgame-cardchain-client-ts/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/user"; | ||
import axios from "axios"; | ||
const { queryQUser, queryAllBalances, queryQMatches } = useQuery(); | ||
const { registerForCouncil, rewokeCouncilRegistration } = useTx(); | ||
const { address } = useAddress(); | ||
const { loggedIn } = useLoggedIn(); | ||
const { getImg } = useProfilePic(); | ||
const { user, coins, queryCoins, queryUser } = useUser(); | ||
const { loggedInProfilePic } = useProfilePic(); | ||
const route = useRoute(); | ||
const router = useRouter(); | ||
const initialState: { | ||
isChooseModalVisible: boolean; | ||
addr: string; | ||
user: User; | ||
coins: Array<Coin>; | ||
userIsUser: ComputedRef<boolean>; | ||
img: string; | ||
matches: { [key: string]: Match }; | ||
} = { | ||
isChooseModalVisible: false, | ||
addr: "", | ||
user: User.fromPartial({}), | ||
coins: new Array<Coin>(), | ||
userIsUser: computed(() => loggedIn.value && state.addr == address.value), | ||
img: "jaja", | ||
matches: {}, | ||
}; | ||
const state = reactive(initialState); | ||
const heading = computed(() => { | ||
return state.userIsUser ? "My Account" : state.user.alias; | ||
}); | ||
watch(user, (val) => { | ||
if (state.userIsUser) state.user = val; | ||
}); | ||
watch(coins, (val) => { | ||
if (state.userIsUser) state.coins = normalizeCoins(val); | ||
}); | ||
watch(loggedInProfilePic, (val) => { | ||
if (state.userIsUser) state.img = val; | ||
}); | ||
const init = () => { | ||
state.addr = route.params.id.toString(); | ||
// get the reward list from the server | ||
axios.get('https://cardchain.crowdcontrol.network/files/rewards.csv') | ||
.then((response) => { | ||
var lines=response.data.split("\n"); | ||
var result = []; | ||
var headers=lines[0].split(","); | ||
for(var i=1; i<lines.length; i++) { | ||
var obj = {}; | ||
var currentline=lines[i].split(","); | ||
for(var j=0; j<headers.length; j++){ | ||
obj[headers[j]] = currentline[j]; | ||
} | ||
if (obj.CCAddress == state.addr) | ||
result.push(obj); | ||
state.rewards = result; | ||
} | ||
console.log("matching entries:", result); | ||
}) | ||
if (state.userIsUser) { | ||
state.user = user.value; | ||
state.coins = normalizeCoins(coins.value); | ||
state.img = loggedInProfilePic.value; | ||
} | ||
if (!validAddress(state.addr)) { | ||
router.push({ name: "NotFound" }); | ||
} | ||
router.push({ name: "Rewards", params: { id: state.addr } }); | ||
getUser(); | ||
console.log(state.user) | ||
}; | ||
onMounted(init); | ||
const getUser = () => { | ||
if (state.userIsUser) { | ||
queryUser(); | ||
} else { | ||
queryQUser(state.addr).then((user) => { | ||
state.user = user; | ||
getImg(state.user, state.addr).then((img) => { | ||
state.img = img; | ||
}); | ||
}); | ||
} | ||
}; | ||
</script> |