-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
289 lines (254 loc) · 7.8 KB
/
script.js
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
function updateClock() {
var time = new Date();
var hours = time.getHours();
var minutes = time.getMinutes();
var suffix = "AM";
if (minutes < 10) {
// prefix 0
minutes = "0" + minutes;
}
if (hours === 0) {
hours = "12"
} else if (hours === 12) {
suffix = "PM";
} else if (hours > 12) {
hours = hours % 12;
suffix = "PM";
}
var currentTime = hours + ":" + minutes + " " + suffix;
$(".time").html(currentTime);
}
var getTopZIndex = function() {
var allDivs = $('.window');
var topZindex = 0;
var topDivId;
allDivs.each(function() {
var currentZindex = parseInt($(this).css('z-index'));
if (currentZindex > topZindex) {
topZindex = currentZindex;
topDivId = this.id;
}
});
return topZindex;
};
var openWindow = function(id) {
$("#" + id).show();
$("#" + id).css('z-index', getTopZIndex() + 1);
};
//Dynamically create start bar button and unhide program window already loaded in dom
var createProgram = function(id, title, imgUrl, url) {
$("#startbutton").after("<span class='program' id='start-bar-" + id + "' >" + title + "</span>");
$("#start-bar-" + id).css('background-image', 'url(' + imgUrl + ')');
var content = '<div class="window ui-widget" id="' + id + '">' +
'<div class="window-inner">' +
'<div class="window-header"><img class="window-header-icon" src="' + imgUrl + '" />' +
'<p>' + title + '</p>' +
' <div class="window-icon close" ></div>' +
' <div class="window-icon maximise" ></div>' +
' <div class="window-icon minimise" ></div>' +
'</div>' +
'<div class="window-content" id="' + id + '-content">' +
'<iframe width="100%" height="100%" src="' + url + '" frameborder="0" allowfullscreen></iframe>'
'</div>' +
'</div>' +
'</div>';
$(".desktop").after(content);
$(".window").draggable({
handle: ".window-header",
cursor: "move",
containment: "window",
stack: ".window"
});
$(".window").resizable({
handles: "n, e, s, w, ne, se, sw, nw",
minHeight: 250,
minWidth: 350
});
// Prevent windows from moving on sibling being resized or closed
$(".window").css({
position: "absolute"
});
openWindow(id);
};
var isWindowMaximised = function(id) {
var targetId = $("#" + id);
console.log("desktop width " + $(window).width());
console.log("window width " + targetId.outerWidth());
if (targetId.outerWidth() < $(window).width()) {
return false;
} else //(targetId.outerWidth() $(window).width)
{
return true;
}
}
var isWindowOpen = function(id) {
if ($("#start-bar-" + id).length > 0) {
return true;
console.log("window open");
} else {
return false;
console.log("window does not exist");
}
};
var closeProgram = function(id) {
$("#start-bar-" + id).remove();
$("#" + id).remove();
};
var minimiseProgram = function(id) {
$("#start-bar" + id).toggleClass("focused");
};
var maximiseWindow = function(id) {
var targetId = $("#" + id);
var originalPos = {
left: targetId.position().left,
top: targetId.position().top,
width: targetId.width(),
height: targetId.height()
};
targetId.draggable("disable");
targetId.resizable("disable");
targetId.data("top", originalPos.top);
targetId.data("left", originalPos.left);
targetId.data("height", originalPos.height);
targetId.data("width", originalPos.width);
targetId.css({
top: 0,
left: 0,
width: $(window).width(),
height: $(window).height() - 38
});
};
var unMaximiseWindow = function(id) {
var targetId = $("#" + id);
targetId.draggable("enable");
targetId.resizable("enable");
targetId.css({
top: targetId.data("top"),
left: targetId.data("left"),
width: targetId.data("width"),
height: targetId.data("height")
})
}
var setIcon = function() {
if ($(this).data("icon")) {
var icon = $(this).data("icon");
$(this).css('background-image', "url(" + icon + ")");
} else {
console.log("no icon supplied")
}
}
$(document).ready(function() {
setInterval(updateClock(), 1000);
//start up music
var audio = new Audio('http://www.winhistory.de/more/winstart/ogg/win98.ogg');
//audio.play();
// toggle start menu
$("#startbutton").click(function() {
$("#startbutton").toggleClass("startbutton-on");
$('#menu').toggle();
});
// close start menu if desktop clicked
$(".desktop").click(function() {
// Depress windows start button animation
$("#startbutton").removeClass("startbutton-on");
// hide start menu
$('#menu').hide();
});
// bind event listeners to programs in task
$(".startbar").on("click", ".program", function(event) {
// identify program id that is currently clicked
var id = $(this).attr('id');
var windowId = id.substring(10);
console.log(windowId);
// is program window currently open?
if ($("#" + windowId).is(':visible')) {
// window is open
console.log(windowId + " is visible")
var z = getTopZIndex();
var windowZ = $("#" + windowId).css("z-index");
console.log(windowZ)
// is window top of stack on desktop?
if ($("#" + windowId).css("z-index") == z) {
// window is at the top
console.log(windowId + " is at top of stack")
// minimise window
$("#" + windowId).hide();
}
if ($("#" + windowId).css("z-index") < z) {
// window is open, but not at top.
console.log("else condition fired pepe show");
// bring window to front
openWindow(windowId);
}
} else {
// window is minimised, open window, bring to front of stack.
openWindow(windowId);
}
});
// bind closeProgram function to all windows.
$(document.body).on("click", ".close", function(event) {
var target = $(this).parent().parent().parent();
//console.log(target.attr('id'));
var targetId = target.attr('id');
closeProgram(targetId);
});
$(document.body).on("click", ".minimise", function(event) {
var target = $(this).parent().parent().parent();
console.log(target.attr('id'));
var targetId = target.attr('id');
$("#" + targetId).hide();
});
$(document.body).on("click", ".maximise", function(event) {
var target = $(this).parent().parent().parent();
var targetId = target.attr('id');
console.log(targetId);
if (!isWindowMaximised(targetId)) {
maximiseWindow(targetId);
console.log("maximising window");
} else if (isWindowMaximised(targetId)) {
unMaximiseWindow(targetId);
console.log("unmaximise window");
} else {
console.log("error");
}
});
// bring window to front of stack when clicked.
$(document.body).on("click", ".window", function(event) {
var target = $(this).attr('id');
var z = getTopZIndex();
$("#" + target).css("z-index", z + 1);
});
$("#menu").on("click", ".launch", function(event) {
console.log($(this).data("launch"));
var targetId = $(this).data("launch");
var title = $(this).data("title");
var imgUrl = $(this).data("icon");
var url = $(this).data("url");
if (!isWindowOpen(targetId)) {
createProgram(targetId, title, imgUrl, url);
$('#menu').hide();
$("#startbutton").removeClass("startbutton-on");
} else {
openWindow(targetId);
$('#menu').hide();
$("#startbutton").removeClass("startbutton-on");
console.log("program already exists... opening window")
}
});
$(".item").each(function() {
if ($(this).data("icon")) {
var icon = $(this).data("icon");
$(this).css('background-image', "url(" + icon + ")");
} else {
console.log("no icon supplied")
}
});
$(".dropdown-item").each(function() {
if ($(this).data("icon")) {
var icon = $(this).data("icon");
$(this).css('background-image', "url(" + icon + ")");
} else {
console.log("no icon supplied")
}
});
}); // end document ready