mirror of
https://github.com/exane/not-gwent-online
synced 2024-10-31 10:36:53 +00:00
deck view
This commit is contained in:
parent
61e04610c0
commit
1fcbf0b996
@ -1,6 +1,7 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
||||||
"northern_realm": [
|
"northern_realm": [
|
||||||
|
"redanian_foot_soldier",
|
||||||
"redanian_foot_soldier",
|
"redanian_foot_soldier",
|
||||||
"poor_fucking_infantry",
|
"poor_fucking_infantry",
|
||||||
"redanian_foot_soldier",
|
"redanian_foot_soldier",
|
||||||
|
@ -8,7 +8,7 @@ module.exports = {
|
|||||||
data: function() {
|
data: function() {
|
||||||
return {
|
return {
|
||||||
cards: [],
|
cards: [],
|
||||||
deck: [],
|
deck: {},
|
||||||
|
|
||||||
leaders: [],
|
leaders: [],
|
||||||
leader: null,
|
leader: null,
|
||||||
@ -18,12 +18,8 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
ready: function() {
|
ready: function() {
|
||||||
// filter over leaders and store them separately.
|
this.initCards();
|
||||||
this.cards = $.map(cards, (n) => {
|
this.initDeck();
|
||||||
if(n.type != 3) return n;
|
|
||||||
|
|
||||||
this.leaders.push(n);
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
@ -31,11 +27,34 @@ module.exports = {
|
|||||||
// todo: load animation
|
// todo: load animation
|
||||||
$('.all-cards').addClass('remove');
|
$('.all-cards').addClass('remove');
|
||||||
this.factionFilter = deck;
|
this.factionFilter = deck;
|
||||||
|
this.initDeck();
|
||||||
$('.all-cards').scrollTop(0);
|
$('.all-cards').scrollTop(0);
|
||||||
|
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
$('.all-cards').removeClass('remove');
|
$('.all-cards').removeClass('remove');
|
||||||
}, 500);
|
}, 500);
|
||||||
|
},
|
||||||
|
|
||||||
|
// Filter for leaders and store them separately.
|
||||||
|
initCards: function() {
|
||||||
|
this.cards = $.map(cards, (n) => {
|
||||||
|
if(n.type != 3) return n;
|
||||||
|
|
||||||
|
this.leaders.push(n);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
initDeck: function() {
|
||||||
|
this.deck = {};
|
||||||
|
|
||||||
|
deck[this.factionFilter].forEach((x) => {
|
||||||
|
this.deck[x] = (this.deck[x] || 0) + 1;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// test
|
||||||
|
removeCard: function(el) {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
@ -1,9 +1,15 @@
|
|||||||
<div class="heading">
|
<div class="heading">
|
||||||
|
<div class="heading-decks">
|
||||||
<a v-class="active: factionFilter == 'northern_realm'" v-on="click: changeDeck('northern_realm')">Northern Realm</a>
|
<a v-class="active: factionFilter == 'northern_realm'" v-on="click: changeDeck('northern_realm')">Northern Realm</a>
|
||||||
<a v-class="active: factionFilter == 'scoiatael'" v-on="click: changeDeck('scoiatael')">Scoia'tael</a>
|
<a v-class="active: factionFilter == 'scoiatael'" v-on="click: changeDeck('scoiatael')">Scoia'tael</a>
|
||||||
<a v-class="active: factionFilter == 'monster'" v-on="click: changeDeck('monster')">Monster</a>
|
<a v-class="active: factionFilter == 'monster'" v-on="click: changeDeck('monster')">Monster</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="heading-my-deck">
|
||||||
|
<span>My Deck</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="all-cards-wrap">
|
<div class="all-cards-wrap">
|
||||||
<div class="all-cards">
|
<div class="all-cards">
|
||||||
<div class="clear-space"></div>
|
<div class="clear-space"></div>
|
||||||
@ -20,8 +26,111 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="all-deck-wrap">
|
||||||
|
<div class="all-deck">
|
||||||
|
|
||||||
|
<div class="clear-space"></div>
|
||||||
|
|
||||||
|
<div class="my-card" v-repeat="deck">
|
||||||
|
<div class="images">
|
||||||
|
<div
|
||||||
|
v-repeat="$value"
|
||||||
|
class="img-small" v-style="background-image: 'url(http://80.240.132.120/gwent/assets/cards/medic.png)'"></div>
|
||||||
|
</div>
|
||||||
|
<div class="sep">{{ $value }}x Blue Stripes Commando<br>
|
||||||
|
<span>
|
||||||
|
Power: 5 (Close Combat)
|
||||||
|
</span>
|
||||||
|
<em class="delete" v-on="click: removeCard($key)">Delete</em>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="clear-space"></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
|
.delete {
|
||||||
|
float: left;
|
||||||
|
clear: both;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.images {
|
||||||
|
position: relative;
|
||||||
|
width: 50px;
|
||||||
|
height: 94px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.img-small {
|
||||||
|
float: left;
|
||||||
|
background-size: 50px 94px;
|
||||||
|
width: 50px;
|
||||||
|
height: 94px;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
.img-small:nth-child(2) {
|
||||||
|
top: 3px;
|
||||||
|
z-index: 99;
|
||||||
|
right: -3px;
|
||||||
|
opacity: .5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.img-small:nth-child(3) {
|
||||||
|
top: 6px;
|
||||||
|
z-index: 98;
|
||||||
|
right: -6px;
|
||||||
|
opacity: .5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.my-card {
|
||||||
|
color: #c3cdd8;
|
||||||
|
float: left;
|
||||||
|
width: 50%;
|
||||||
|
margin: 0 0 20px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.all-deck i {
|
||||||
|
color: #435365;
|
||||||
|
font-style: normal;
|
||||||
|
float: left;
|
||||||
|
font-size: 20px;
|
||||||
|
margin: 8px 0 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sep {
|
||||||
|
float: left;
|
||||||
|
margin: 0 0 0 20px;
|
||||||
|
width: calc(100% - 100px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.all-deck span {
|
||||||
|
color: #435365;
|
||||||
|
font-size: 14px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.all-deck-wrap {
|
||||||
|
width: 47%;
|
||||||
|
overflow: hidden;
|
||||||
|
float: right;
|
||||||
|
height: calc(100% + 40px);
|
||||||
|
padding: 0 20px;
|
||||||
|
margin: -80px 0 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.all-deck {
|
||||||
|
float: left;
|
||||||
|
width: calc(100% + 50px);
|
||||||
|
height: 100%;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.shadow-all-cards {
|
.shadow-all-cards {
|
||||||
height: 60px;
|
height: 60px;
|
||||||
float: left;
|
float: left;
|
||||||
@ -35,13 +144,10 @@
|
|||||||
.test {
|
.test {
|
||||||
float: left;
|
float: left;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
width: 100%;;
|
||||||
}
|
}
|
||||||
|
|
||||||
.remove {
|
.remove {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.load-deck {
|
|
||||||
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
@ -10,7 +10,7 @@ body {
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-width: 1000px;
|
min-width: 1200px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
font-family: 'Titillium Web', sans-serif;
|
font-family: 'Titillium Web', sans-serif;
|
||||||
}
|
}
|
||||||
|
@ -219,6 +219,24 @@
|
|||||||
background: linear-gradient(to bottom, rgba(8,13,20,1) 0%,rgba(8,13,20,1) 36%,rgba(8,13,20,0.85) 100%);
|
background: linear-gradient(to bottom, rgba(8,13,20,1) 0%,rgba(8,13,20,1) 36%,rgba(8,13,20,0.85) 100%);
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#080d14', endColorstr='#d9080d14',GradientType=0 );
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#080d14', endColorstr='#d9080d14',GradientType=0 );
|
||||||
|
|
||||||
|
.heading-decks {
|
||||||
|
float: left;
|
||||||
|
width: 53%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-my-deck {
|
||||||
|
float: left;
|
||||||
|
width: 47%;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
float: left;
|
||||||
|
font-size: 17px;
|
||||||
|
color: #435365;
|
||||||
|
font-weight: 600;
|
||||||
|
margin: 0 0 0 20px;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
font-size: 17px;
|
font-size: 17px;
|
||||||
color: #435365;
|
color: #435365;
|
||||||
@ -229,6 +247,7 @@
|
|||||||
&.active {
|
&.active {
|
||||||
color: #c3cdd8;
|
color: #c3cdd8;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user