forked from cardstack/boxel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproduct-with-video-and-ratings.gts
142 lines (138 loc) · 3.82 KB
/
product-with-video-and-ratings.gts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import { Product, ProductDetail, ProductImages } from './product';
import {
Component,
field,
contains,
StringField,
} from 'https://cardstack.com/base/card-api';
import { tracked } from '@glimmer/tracking';
import { action } from '@ember/object';
import { RatingsSummary as RatingsSummaryField } from './ratings-summary';
import { MonetaryAmountAtom } from './monetary-amount';
class Isolated extends Component<typeof ProductWithVideoAndRatings> {
@tracked activeImage = this.args.model.images?.[0];
@action updateActiveImage(image: string) {
this.activeImage = image;
}
<template>
<div class='product'>
<div class='decorative-header'></div>
<div class='left-container'>
<ProductImages
@images={{@model.images}}
@activeImage={{this.activeImage}}
@onSelectImage={{this.updateActiveImage}}
class='images'
/>
<ProductDetail
@model={{@model}}
@fields={{@fields}}
class='details-container'
/>
</div>
<div class='right-container'>
<div class='seller-container'>
<span class='seller'>
{{@model.seller.title}}
</span>
<@fields.ratingsSummary @format='atom' />
</div>
<h1 class='title'>{{@model.title}}</h1>
<div class='price'><MonetaryAmountAtom
@model={{@model.unitPrice}}
/></div>
{{#if @model.videoUrl}}
<div class='video-container'>
<video controls aria-label='Product video' aria-hidden='false'>
<source src={{@model.videoUrl}} type='video/mp4' />
</video>
</div>
{{/if}}
<button>
Add to cart
</button>
</div>
</div>
<style>
.product {
display: grid;
grid-template-columns: 50% 50%;
width: 100%;
}
.decorative-header {
background-image: url(https://i.imgur.com/PQuDAEo.jpg);
height: var(--boxel-sp-xxl);
grid-column: 1 / span 2;
margin-bottom: var(--boxel-sp);
}
.images {
margin: 0 var(--boxel-sp);
}
.details-container {
background: var(--boxel-200);
border-radius: 16px;
margin: var(--boxel-sp);
padding: var(--boxel-sp);
}
.details-container h2 {
margin-top: 0;
font-size: 1.1em;
}
.policies {
line-height: 2;
}
.seller {
font-size: 1.1em;
margin-right: var(--boxel-sp);
}
.title,
.price {
font-size: 1.8em;
font-weight: 600;
}
.price {
color: green;
}
.video-container {
max-height: 600px;
overflow: hidden;
margin-top: var(--boxel-sp);
padding-right: var(--boxel-sp);
}
video {
max-width: 100%;
max-height: 100%;
min-width: 0;
min-height: 0;
}
button {
margin-top: 10px;
border-radius: 20px;
background: black;
color: white;
font-weight: 500;
font-size: 14px;
padding: 7px 24px;
border: 0;
}
div[data-test-compound-field-format='atom'],
div[data-test-compound-field-format='embedded'] {
display: inline-block;
}
</style>
</template>
}
// @ts-ignore
export class ProductWithVideoAndRatings extends Product {
static displayName = 'Product with Video and Ratings';
@field videoUrl = contains(StringField);
@field ratingsSummary = contains(RatingsSummaryField, {
computeVia(this: ProductWithVideoAndRatings) {
return {
average: Math.floor(Math.random() * 6), // random number between 0 and 5 inclusive
count: Math.floor(Math.random() * 29701) + 300, // random number between 300 and 30000
};
},
});
static isolated = Isolated;
}