Skip to content

Commit e451e2d

Browse files
committed
vgd-2379-completed-on-sdk-side
1 parent 010c702 commit e451e2d

File tree

4 files changed

+145
-4
lines changed

4 files changed

+145
-4
lines changed

Gruntfile.js

+23-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = function (grunt) {
2323
expand: true,
2424
flatten: true,
2525
cwd: "./",
26-
src: ["index.html", "blocked.html"],
26+
src: ["index.html", "blocked.html", "deleted.html"],
2727
dest: "./lib/"
2828
},
2929
legacy: {
@@ -101,6 +101,10 @@ module.exports = function (grunt) {
101101
blocked: {
102102
src: "blocked/blocked.js",
103103
dest: "lib/blocked.js"
104+
},
105+
deleted: {
106+
src: "deleted/deleted.js",
107+
dest: "lib/deleted.js"
104108
}
105109
},
106110

@@ -136,6 +140,10 @@ module.exports = function (grunt) {
136140
blocked: {
137141
src: "lib/blocked.js",
138142
dest: "lib/blocked.min.js"
143+
},
144+
deleted: {
145+
src: "lib/deleted.js",
146+
dest: "lib/deleted.min.js"
139147
}
140148
},
141149

@@ -152,7 +160,7 @@ module.exports = function (grunt) {
152160
tasks: ["browserify", "uglify", "duration"]
153161
},
154162
html: {
155-
files: ["index.html", "blocked.html"]
163+
files: ["index.html", "blocked.html", "deleted.html"]
156164
},
157165
grunt: {
158166
files: ["gruntfile.js"]
@@ -165,7 +173,7 @@ module.exports = function (grunt) {
165173
*/
166174
browserSync: {
167175
bsFiles: {
168-
src: ["lib/", "index.html", "blocked.html"]
176+
src: ["lib/", "index.html", "blocked.html", "deleted.html"]
169177
},
170178
options: {
171179
server: "./",
@@ -262,6 +270,18 @@ module.exports = function (grunt) {
262270
grunt.task.run(tasksArray);
263271
}
264272
);
273+
grunt.registerTask(
274+
"deleted",
275+
"Build and optimize the deleted js.",
276+
function () {
277+
const tasksArray = [
278+
"browserify:deleted",
279+
"uglify:deleted",
280+
"duration"
281+
];
282+
grunt.task.run(tasksArray);
283+
}
284+
);
265285
grunt.registerTask("deploy", "Upload the build files.", function () {
266286
const project = grunt.option("project"), // vooxe-gamedistribution
267287
bucket = grunt.option("bucket"), // gd-sdk-html5

deleted.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>Deleted</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
6+
</head>
7+
<body>
8+
9+
<script type="application/javascript">
10+
(function (d, s, id) {
11+
var js, fjs = d.getElementsByTagName(s)[0];
12+
if (d.getElementById(id)) return;
13+
js = d.createElement(s);
14+
js.id = id;
15+
//js.src = "https://html5.api.gamedistribution.com/deleted.min.js";
16+
js.src = "https://html5.api.gamedistribution.com/deleted.min.js";
17+
fjs.parentNode.insertBefore(js, fjs);
18+
}(document, 'script', 'gamedistribution-jssdkdeleted'));
19+
</script>
20+
21+
</body>
22+
</html>

deleted/deleted.js

+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
let instance = null;
2+
3+
/**
4+
* Promo
5+
*/
6+
class Deleted {
7+
/**
8+
* Constructor of SDK Deleted.
9+
* @return {*}
10+
*/
11+
constructor() {
12+
// Make this a singleton.
13+
if (instance) {
14+
return instance;
15+
} else {
16+
instance = this;
17+
}
18+
19+
// Set a version banner within the developer console.
20+
const banner = console.log(
21+
'%c %c %c This game was deleted, please remove it in your website... ',
22+
'background: #9854d8',
23+
'background: #6c2ca7', 'color: #fff; background: #450f78;',
24+
'background: #6c2ca7', 'background: #9854d8',
25+
'background: #c4161e; color: #fff;');
26+
/* eslint-disable */
27+
console.log.apply(console, banner);
28+
29+
this.options = {
30+
prefix: 'gdsdk-deleted__',
31+
};
32+
33+
this.container = null;
34+
35+
this.start();
36+
}
37+
38+
/**
39+
* start()
40+
* Starts the promo, which is usually called from an ad slot.
41+
*/
42+
start() {
43+
/* eslint-disable */
44+
const css = `
45+
.${this.options.prefix} {
46+
box-sizing: border-box;
47+
position: fixed;
48+
z-index: 666;
49+
top: 0;
50+
left: 0;
51+
width: 100%;
52+
height: 100%;
53+
padding: 40px;
54+
overflow: hidden;
55+
background: linear-gradient(0deg, #333, #000);
56+
}
57+
.${this.options.prefix} h1 {
58+
color: #fff;
59+
text-align: center;
60+
text-transform: uppercase;
61+
font-family: Helvetica, Arial, sans-serif;
62+
font-weight: bold;
63+
cursor: pointer;
64+
font-size: 18px;
65+
}
66+
`;
67+
68+
const html = `
69+
<h1>This game is offline/ inaccessible on this website</h1>
70+
`;
71+
72+
// Add our styles.
73+
const head = document.head || document.getElementsByTagName('head')[0];
74+
const style = document.createElement('style');
75+
style.type = 'text/css';
76+
style.appendChild(document.createTextNode(css));
77+
head.appendChild(style);
78+
79+
// Add our fonts.
80+
const font = document.createElement('link');
81+
font.type = 'text/css';
82+
font.rel = 'stylesheet';
83+
font.href = 'https://fonts.googleapis.com/css?family=Squada+One';
84+
head.appendChild(font);
85+
86+
// Add our markup.
87+
this.container = document.createElement('div');
88+
this.container.innerHTML = html;
89+
this.container.id = this.options.prefix;
90+
this.container.className = this.options.prefix;
91+
this.container.addEventListener('click', () => {
92+
window.open(this.options.url, '_blank');
93+
});
94+
const body = document.body || document.getElementsByTagName('body')[0];
95+
body.insertBefore(this.container, body.firstChild);
96+
}
97+
}
98+
99+
new Deleted();

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"url": "[email protected]:GameDistribution/GD-HTML5.git"
1515
},
1616
"dependencies": {
17-
"@bygd/gd-sdk-pes": "1.7.39"
17+
"@bygd/gd-sdk-pes": "1.7.42"
1818
},
1919
"devDependencies": {
2020
"@babel/core": "^7.11.6",

0 commit comments

Comments
 (0)