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

L9 start #151

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
8 changes: 5 additions & 3 deletions assets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@ body {

.cart {
margin: 25px 100px;
float: right;
border: 1px solid #d8d8d8;
padding: 10px 30px;
padding: 30px 30px;
margin-left: auto;
width: 50px;
justify-content: flex-end;
background-color: white;
box-shadow: 2px 15px -12px rgba(0, 0, 0, 0.57);
-webkit-box-shadow: 0px 2px 15px -12px rgba(0, 0, 0, 0.57);
-moz-box-shadow: 0px 2px 15px -12px rgba(0, 0, 0, 0.57);
box-shadow: 2px 15px -12px rgba(0, 0, 0, 0.57);
}

.color-circle {
Expand Down
79 changes: 79 additions & 0 deletions components/ProductDisplay.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
app.component('product-display', {
props: {
premium: {
type: Boolean,
required: true
},
details: {
type: Array,
required: true
}
},
template:
/*html*/
`<div class="product-display">
<div class="product-container">
<div class="product-image">
<img v-bind:src="image">
</div>
<div class="product-info">
<h1>{{ title }}</h1>

<p v-if="inStock">In Stock</p>
<p v-else>Out of Stock</p>

<p>Shipping: {{ shipping }}</p>

<ul>
<li v-for="detail in details">{{ detail }}</li>
</ul>

<div
v-for="(variant, index) in variants"
:key="variant.id"
@mouseover="updateVariant(index)"
class="color-circle"
:style="{ backgroundColor: variant.color }">
</div>

<button class="button" :class="{ disabledButton: !inStock }" :disabled="!inStock" v-on:click="addToCart">Add to Cart</button>
</div>
</div>
</div>`,
data() {
return {
product: 'Socks',
brand: 'Vue Mastery',
selectedVariant: 0,
variants: [
{ id: 2234, color: 'green', image: './assets/images/socks_green.jpg', quantity: 50 },
{ id: 2235, color: 'blue', image: './assets/images/socks_blue.jpg', quantity: 0 },
]
}
},
methods: {
addToCart() {
this.cart += 1
},
updateVariant(index) {
this.selectedVariant = index
}
},
computed: {
title() {
return this.brand + ' ' + this.product
},
image() {
return this.variants[this.selectedVariant].image
},
inStock() {
return this.variants[this.selectedVariant].quantity
},
shipping() {
if (this.premium) {
return 'FREE SHIPPING'
}
return '$50.00'
}
}
})
17 changes: 14 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,25 @@
<!-- Import Styles -->
<link rel="stylesheet" href="./assets/styles.css" />
<!-- Import Vue.js -->
<script src="https://unpkg.com/[email protected].0-beta.12/dist/vue.global.js"></script>
<script src="https://unpkg.com/[email protected].11/dist/vue.global.js"></script>
</head>
<body>
<div id="app">
<h1>Product goes here</h1>
<div class="nav-bar"></div>

<div class="cart">Cart({{ cart }})</div>

<product-display :premium="premium" :details="['50% cotton', '30% wool', '20% polyester']"></product-display>
<product-display :premium="premium" :details="['20% cotton', '50% wool', '30% polyester']"></product-display>
<product-display :premium="premium" :details="['0% cotton', '50% wool', '50% polyester']"></product-display>
</div>

<!-- Import Js -->
<script src="./main.js"></script>
<script src="./components/ProductDisplay.js"></script>

<!-- Mount App -->
<script>
const mountedApp = app.mount('#app')
</script>
</body>
</html>
11 changes: 10 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
const product = 'Socks'
const app = Vue.createApp({
data() {
return {
cart: 0,
premium: true
}
},
methods: {
}
})