@surfside/ads-core-mock 0.2.0 → 0.3.0-0ff9dfa7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,272 +5,272 @@ const ads_core_1 = require("@surfside/ads-core");
5
5
  /**
6
6
  * A mock configuration service that returns a hard-coded configuration. Enables geo and IP targeting by default.
7
7
  */
8
- const productCardTemplate = (data) => `
9
- <div class="mock-product-card">
10
- <div class="card-shadow-area"></div>
11
- <div class="card-pattern-area"></div>
12
- <div class="main-card-area">
13
- <div class="product-image" _mousemove="moveImage" _mouseleave="stopMove">
14
- <img src="${data.product.image}" />
15
- </div>
16
- <div class="product-data">
17
- <h1>
18
- ${data.product.name}
19
- <div class="filter"></div>
20
- </h1>
21
- <div class="brand">
22
- <div class="horizontal-rule"></div>
23
- <span>by ${data.product.brandName}</span>
24
- </div>
25
- <p>${data.product.details}</p>
26
- </div>
27
- <a _click="click" target="_blank">
28
- <div class="cta">
29
- Add To Cart
30
- </div>
31
- </a>
32
- </div>
8
+ const productCardTemplate = (data) => `
9
+ <div class="mock-product-card">
10
+ <div class="card-shadow-area"></div>
11
+ <div class="card-pattern-area"></div>
12
+ <div class="main-card-area">
13
+ <div class="product-image" _mousemove="moveImage" _mouseleave="stopMove">
14
+ <img src="${data.product.image}" />
15
+ </div>
16
+ <div class="product-data">
17
+ <h1>
18
+ ${data.product.name}
19
+ <div class="filter"></div>
20
+ </h1>
21
+ <div class="brand">
22
+ <div class="horizontal-rule"></div>
23
+ <span>by ${data.product.brandName}</span>
24
+ </div>
25
+ <p>${data.product.details}</p>
26
+ </div>
27
+ <a _click="click" target="_blank">
28
+ <div class="cta">
29
+ Add To Cart
30
+ </div>
31
+ </a>
32
+ </div>
33
33
  </div>`;
34
- const productCardStylesheet = `
35
- @keyframes scrollBackground {
36
- from {
37
- background-position: 0px 0px;
38
- }
39
- to {
40
- background-position: 50px 50px;
41
- }
42
- }
43
-
44
- .mock-product-card {
45
- display: none;
46
- display: flex;
47
- flex-grow: 1;
48
- flex-direction: column;
49
- position: relative;
50
- margin-right: 30px;
51
-
52
- .product-image {
53
-
54
- width: calc(100% - 20px);
55
- margin: 10px;
56
- transition: transform 0.3s;
57
- z-index: 3;
58
-
59
- &:hover {
60
- transform: scale(1.25);
61
- }
62
-
63
- img {
64
- box-shadow: 4px 4px 1px -1px rgba(0, 0, 0, 0.2), 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
65
- transition: transform 0.1s;
66
- }
67
- }
68
-
69
- .product-data {
70
- display: flex;
71
- flex-direction: column;
72
- }
73
-
74
- .main-card-area {
75
- width: 100%;
76
- height: 100%;
77
- background-color: rgb(244, 244, 244);
78
- transform: translate(-10px, -10px);
79
- transition: transform 0.1s ease-in, box-shadow 0.1s ease-in;
80
- box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
81
- border: 2px dotted rgba(0, 0, 0, 0.4);
82
- display: flex;
83
- flex-direction: column;
84
- justify-content: space-between;
85
-
86
- .product-image {
87
- img {
88
- width: 100%;
89
- }
90
- }
91
-
92
- h1 {
93
- font-family: 'Trebuchet MS', Helvetica, sans-serif;
94
- letter-spacing: 3px;
95
- text-transform: uppercase;
96
- padding: 0 5px;
97
- position: relative;
98
- font-size: 22px;
99
- margin-left: 5px;
100
- text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
101
-
102
- .filter {
103
- position: absolute;
104
- background: #baf7db;
105
- mix-blend-mode: multiply;
106
- width: calc(4ch + 10px);
107
- height: 1.5em;
108
- top: 0;
109
- left: 0;
110
- }
111
- }
112
-
113
- .brand {
114
- font-family: 'Tahoma', Helvetica, sans-serif;
115
- text-transform: uppercase;
116
- color: rgba(0, 0, 0, 0.4);
117
- font-size: 12px;
118
- width: 100%;
119
- display: flex;
120
- justify-content: flex-end;
121
- text-align: right;
122
- letter-spacing: 2px;
123
- box-sizing: border-box;
124
- padding: 0 10px;
125
- gap: 5px;
126
- text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
127
-
128
-
129
- .horizontal-rule {
130
- height: 2px;
131
- background: #baf7db;
132
- mix-blend-mode: multiply;
133
- flex-grow: 1;
134
- box-sizing: border-box;
135
- padding: 0 5px;
136
- transform: translateY(6px);
137
- }
138
-
139
- span {
140
- flex-shrink: 2;
141
- }
142
- }
143
-
144
- p {
145
- font-family: 'Tahoma', Helvetica, sans-serif;
146
- padding: 0 10px;
147
- margin: 10px auto;
148
- font-size: 14px;
149
- line-height: 32px;
150
- display: -webkit-box;
151
- -webkit-line-clamp: 3;
152
- -webkit-box-orient: vertical;
153
- overflow: hidden;
154
- text-overflow: ellipsis " [...]";
155
- color: rgb(59, 48, 68);
156
- }
157
-
158
- > a {
159
- text-decoration: none;
160
- letter-spacing: 3px;
161
- color: rgb(59, 48, 68);
162
- padding: 10px 10px;
163
- }
164
- .cta {
165
- width: 100%;
166
- background: #baf7db;
167
- padding: 5px 10px;
168
- display: flex;
169
- justify-content: space-around;
170
- box-sizing: border-box;
171
- font-family: 'Trebuchet MS', Helvetica, sans-serif;
172
- border: 2px dotted grey;
173
- transition: background 0.1s ease-in, color 0.1s ease-in;
174
- font-weight: 100;
175
-
176
- &:hover {
177
- background: #c0abff;
178
- color: #ecf0f1;
179
- }
180
- }
181
- }
182
-
183
- .card-shadow-area {
184
- position: absolute;
185
- left: 0;
186
- top: 0;
187
- width: 100%;
188
- height: 100%;
189
- background: #c0abff;
190
- border: 2px dashed rgba(0, 0, 0, 0.8);
191
- }
192
-
193
- .card-pattern-area {
194
- position: absolute;
195
- left: 0;
196
- top: 0;
197
- width: 100%;
198
- height: 100%;
199
-
200
- background-color: #c0abff;
201
- background-image: linear-gradient(#f4f4f4 2px, transparent 2px),
202
- linear-gradient(90deg, #f4f4f4 2px, transparent 2px),
203
- linear-gradient(#f4f4f4 1px, transparent 1px),
204
- linear-gradient(90deg, #f4f4f4 1px, #c0abff 1px);
205
- background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
206
- background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
207
-
208
- opacity: 0;
209
- transition: opacity 0.4s ease-in;
210
- animation: scrollBackground 2s linear infinite;
211
- }
212
-
213
- &:hover {
214
- .main-card-area {
215
- transform: translate(-20px, -20px);
216
- box-shadow: 10px 10px 7px 2px rgba(0, 0, 0, 0.2);
217
- }
218
-
219
- .card-pattern-area {
220
- opacity: 0.7;
221
- }
222
- }
223
- }
224
-
225
- .surf-product-card.sponsored {
226
- position: relative;
227
-
228
- &::after {
229
- left: -18px;
230
- letter-spacing: 2px;
231
- text-transform: uppercase;
232
- }
233
- }
234
-
34
+ const productCardStylesheet = `
35
+ @keyframes scrollBackground {
36
+ from {
37
+ background-position: 0px 0px;
38
+ }
39
+ to {
40
+ background-position: 50px 50px;
41
+ }
42
+ }
43
+
44
+ .mock-product-card {
45
+ display: none;
46
+ display: flex;
47
+ flex-grow: 1;
48
+ flex-direction: column;
49
+ position: relative;
50
+ margin-right: 30px;
51
+
52
+ .product-image {
53
+
54
+ width: calc(100% - 20px);
55
+ margin: 10px;
56
+ transition: transform 0.3s;
57
+ z-index: 3;
58
+
59
+ &:hover {
60
+ transform: scale(1.25);
61
+ }
62
+
63
+ img {
64
+ box-shadow: 4px 4px 1px -1px rgba(0, 0, 0, 0.2), 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
65
+ transition: transform 0.1s;
66
+ }
67
+ }
68
+
69
+ .product-data {
70
+ display: flex;
71
+ flex-direction: column;
72
+ }
73
+
74
+ .main-card-area {
75
+ width: 100%;
76
+ height: 100%;
77
+ background-color: rgb(244, 244, 244);
78
+ transform: translate(-10px, -10px);
79
+ transition: transform 0.1s ease-in, box-shadow 0.1s ease-in;
80
+ box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
81
+ border: 2px dotted rgba(0, 0, 0, 0.4);
82
+ display: flex;
83
+ flex-direction: column;
84
+ justify-content: space-between;
85
+
86
+ .product-image {
87
+ img {
88
+ width: 100%;
89
+ }
90
+ }
91
+
92
+ h1 {
93
+ font-family: 'Trebuchet MS', Helvetica, sans-serif;
94
+ letter-spacing: 3px;
95
+ text-transform: uppercase;
96
+ padding: 0 5px;
97
+ position: relative;
98
+ font-size: 22px;
99
+ margin-left: 5px;
100
+ text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
101
+
102
+ .filter {
103
+ position: absolute;
104
+ background: #baf7db;
105
+ mix-blend-mode: multiply;
106
+ width: calc(4ch + 10px);
107
+ height: 1.5em;
108
+ top: 0;
109
+ left: 0;
110
+ }
111
+ }
112
+
113
+ .brand {
114
+ font-family: 'Tahoma', Helvetica, sans-serif;
115
+ text-transform: uppercase;
116
+ color: rgba(0, 0, 0, 0.4);
117
+ font-size: 12px;
118
+ width: 100%;
119
+ display: flex;
120
+ justify-content: flex-end;
121
+ text-align: right;
122
+ letter-spacing: 2px;
123
+ box-sizing: border-box;
124
+ padding: 0 10px;
125
+ gap: 5px;
126
+ text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
127
+
128
+
129
+ .horizontal-rule {
130
+ height: 2px;
131
+ background: #baf7db;
132
+ mix-blend-mode: multiply;
133
+ flex-grow: 1;
134
+ box-sizing: border-box;
135
+ padding: 0 5px;
136
+ transform: translateY(6px);
137
+ }
138
+
139
+ span {
140
+ flex-shrink: 2;
141
+ }
142
+ }
143
+
144
+ p {
145
+ font-family: 'Tahoma', Helvetica, sans-serif;
146
+ padding: 0 10px;
147
+ margin: 10px auto;
148
+ font-size: 14px;
149
+ line-height: 32px;
150
+ display: -webkit-box;
151
+ -webkit-line-clamp: 3;
152
+ -webkit-box-orient: vertical;
153
+ overflow: hidden;
154
+ text-overflow: ellipsis " [...]";
155
+ color: rgb(59, 48, 68);
156
+ }
157
+
158
+ > a {
159
+ text-decoration: none;
160
+ letter-spacing: 3px;
161
+ color: rgb(59, 48, 68);
162
+ padding: 10px 10px;
163
+ }
164
+ .cta {
165
+ width: 100%;
166
+ background: #baf7db;
167
+ padding: 5px 10px;
168
+ display: flex;
169
+ justify-content: space-around;
170
+ box-sizing: border-box;
171
+ font-family: 'Trebuchet MS', Helvetica, sans-serif;
172
+ border: 2px dotted grey;
173
+ transition: background 0.1s ease-in, color 0.1s ease-in;
174
+ font-weight: 100;
175
+
176
+ &:hover {
177
+ background: #c0abff;
178
+ color: #ecf0f1;
179
+ }
180
+ }
181
+ }
182
+
183
+ .card-shadow-area {
184
+ position: absolute;
185
+ left: 0;
186
+ top: 0;
187
+ width: 100%;
188
+ height: 100%;
189
+ background: #c0abff;
190
+ border: 2px dashed rgba(0, 0, 0, 0.8);
191
+ }
192
+
193
+ .card-pattern-area {
194
+ position: absolute;
195
+ left: 0;
196
+ top: 0;
197
+ width: 100%;
198
+ height: 100%;
199
+
200
+ background-color: #c0abff;
201
+ background-image: linear-gradient(#f4f4f4 2px, transparent 2px),
202
+ linear-gradient(90deg, #f4f4f4 2px, transparent 2px),
203
+ linear-gradient(#f4f4f4 1px, transparent 1px),
204
+ linear-gradient(90deg, #f4f4f4 1px, #c0abff 1px);
205
+ background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
206
+ background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
207
+
208
+ opacity: 0;
209
+ transition: opacity 0.4s ease-in;
210
+ animation: scrollBackground 2s linear infinite;
211
+ }
212
+
213
+ &:hover {
214
+ .main-card-area {
215
+ transform: translate(-20px, -20px);
216
+ box-shadow: 10px 10px 7px 2px rgba(0, 0, 0, 0.2);
217
+ }
218
+
219
+ .card-pattern-area {
220
+ opacity: 0.7;
221
+ }
222
+ }
223
+ }
224
+
225
+ .surf-product-card.sponsored {
226
+ position: relative;
227
+
228
+ &::after {
229
+ left: -18px;
230
+ letter-spacing: 2px;
231
+ text-transform: uppercase;
232
+ }
233
+ }
234
+
235
235
  `;
236
- const carouselStylesheet = `
237
- :host {
238
- --surf-card-size: 300;
239
- }
240
-
241
- @media (max-width: 900px) {
242
- :host {
243
- --surf-card-size: 200;
244
- }
245
- }
246
-
247
- .surf-zone-ecf0f1 {
248
- --surf-card-size: 250;
249
- }
250
-
251
-
252
- .surf-carousel {
253
- .sponsored-carousel {
254
- font-family: 'Trebuchet MS', Verdana, Geneva, Tahoma, sans-serif;
255
- margin: 0 0 20px 0;
256
- padding: 0;
257
- font-size: 26px;
258
- font-weight: 100;
259
- letter-spacing: 3px;
260
- text-transform: uppercase;
261
- text-decoration: underline dashed;
262
- color: rgba(255, 255, 255, 0.7);
263
-
264
- &.sponsoredByOne::before {
265
- content: 'Brought to you by ';
266
- }
267
-
268
- &.recommended::before {
269
- content: 'Suggested';
270
- }
271
- }
272
- }
273
-
236
+ const carouselStylesheet = `
237
+ :host {
238
+ --surf-card-size: 300;
239
+ }
240
+
241
+ @media (max-width: 900px) {
242
+ :host {
243
+ --surf-card-size: 200;
244
+ }
245
+ }
246
+
247
+ .surf-zone-ecf0f1 {
248
+ --surf-card-size: 250;
249
+ }
250
+
251
+
252
+ .surf-carousel {
253
+ .sponsored-carousel {
254
+ font-family: 'Trebuchet MS', Verdana, Geneva, Tahoma, sans-serif;
255
+ margin: 0 0 20px 0;
256
+ padding: 0;
257
+ font-size: 26px;
258
+ font-weight: 100;
259
+ letter-spacing: 3px;
260
+ text-transform: uppercase;
261
+ text-decoration: underline dashed;
262
+ color: rgba(255, 255, 255, 0.7);
263
+
264
+ &.sponsoredByOne::before {
265
+ content: 'Brought to you by ';
266
+ }
267
+
268
+ &.recommended::before {
269
+ content: 'Suggested';
270
+ }
271
+ }
272
+ }
273
+
274
274
  `;
275
275
  const clickThroughUrlTemplate = (data) => `https://surfside.io/${data.product.brandName}`;
276
276
  const MockGetConfiguration = async (logger) => {
@@ -298,8 +298,8 @@ const MockGetConfiguration = async (logger) => {
298
298
  (target.clientWidth / 2);
299
299
  const dy = (offsetY - target.clientHeight / 2) /
300
300
  (target.clientHeight / 2);
301
- img.style.transform = `perspective(1000px)
302
- rotateY(${dx * 40}deg)
301
+ img.style.transform = `perspective(1000px)
302
+ rotateY(${dx * 40}deg)
303
303
  rotateX(${-dy * 40}deg)`;
304
304
  },
305
305
  'stopMove': (e) => {
@@ -317,12 +317,21 @@ const MockGetConfiguration = async (logger) => {
317
317
  'foobar': {
318
318
  value: [{
319
319
  size: 'desktop',
320
- values: [{
320
+ values: [
321
+ {
322
+ type: 'Video',
323
+ width: 320,
324
+ height: 240,
325
+ zoneId: 'foobar',
326
+ maxDuration: 30
327
+ },
328
+ {
321
329
  type: 'Banner',
322
330
  width: 4,
323
331
  height: 1,
324
- zoneId: 'foobar'
325
- }]
332
+ zoneId: 'foobar',
333
+ }
334
+ ]
326
335
  }]
327
336
  }
328
337
  },
@@ -1 +1 @@
1
- {"version":3,"file":"Configuration.js","sourceRoot":"../@surfside-ads-core-mock/","sources":["mock/Configuration.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Configuration.js","sourceRoot":"../@surfside-ads-core-mock/","sources":["mock/Configuration.ts"],"names":[],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  export const VersionInfo = {
2
- 'buildBranch': 'master',
3
- 'buildHash': '70fb1c8',
4
- 'buildVer': '0.2.0'
2
+ 'buildBranch': 'HEAD',
3
+ 'buildHash': '0ff9dfa',
4
+ 'buildVer': '0.3.0-0ff9dfa7.0'
5
5
  };
6
6
  //# sourceMappingURL=BuildInfo.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"BuildInfo.js","sourceRoot":"../@surfside-ads-core-mock/","sources":["BuildInfo.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG;IACvB,aAAa,EAAE,QAAQ;IACvB,WAAW,EAAE,SAAS;IACtB,UAAU,EAAE,OAAO;CACtB,CAAC"}
1
+ {"version":3,"file":"BuildInfo.js","sourceRoot":"../@surfside-ads-core-mock/","sources":["BuildInfo.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG;IACvB,aAAa,EAAE,MAAM;IACrB,WAAW,EAAE,SAAS;IACtB,UAAU,EAAE,kBAAkB;CACjC,CAAC"}