-
Notifications
You must be signed in to change notification settings - Fork 342
/
app.js
179 lines (154 loc) · 7.42 KB
/
app.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
$(document).ready(function() {
// Create a variable for the container to hold the emoji cards.
const emojiCardContainer = document.getElementById("emojis");
// Create a variable for the emoji cards.
let emojiCard = "";
// Combine the array of objects from the movies.js, musicals.js and tv.js files into one array of objects.
const emojiItems = emojiMovies.concat(emojiTv, emojiMusicals);
// Run the random order function below on the data inside data folder in the musicals.js, tv.js and movies.js files. This will display the cards in a random order on the page every time the page is refreshed.
shuffle(emojiItems);
// Create a function to build a link for each emoji card. This function will take in the title and year of a show/movie as well as the IMDB url and return an anchor tag that will link to the IMDB page with the link text being the title of the show/movie.
function generateTitle(title, year, itemLink) {
const titleElement = "<h3>" + title + " (" + year + ")</h3>";
if (itemLink) {
return (
"<a title='Go to website' href='" +
itemLink +
"' target='_blank'>" +
titleElement +
"</a>"
);
}
return titleElement;
}
// Loop through the data from the data folder and insert parts of the data into HTML. On each loop, we are appending a new card with the HTML below.
for (let i in emojiItems) {
// create variables for each key from the Emoji Card that we want to display.
const type = emojiItems[i].type;
const emojiImgs = emojiItems[i].emojiImgs;
const year = emojiItems[i].year;
const title = emojiItems[i].title;
const itemLink = emojiItems[i].itemLink;
// Add each variable from above to a template literal string (indicated by the backtick (`)) to build the HTML for the Emoji Card. This is also where we are calling the generateTitle function created above to build the anchor tag.
emojiCard +=
"<div class='emoji-card' data-filter='" +
type +
"'><div class='hint-container'><i class='fas fa-question-circle'></i><p class='hint'><span class='type'>" +
type +
"</span></p></div><div class='emoji-images'>" +
emojiImgs +
"</div><div class='emoji-card-title hide-card'>" +
generateTitle(title, year, itemLink) +
"</div></div>";
}
// Append the emoji card variable, which has all of the emoji cards to the initial variable we created that was for the container to hold the cards.
emojiCardContainer.innerHTML = emojiCard;
// Run Twemoji to change all emojis to Twitter emojis.
twemoji.parse(document.body);
// Add the count of number of shows/movies to the footer.
document.getElementsByClassName("counter")[0].innerHTML = emojiItems.length;
// Display movies and show in a random order, the random order will refresh on page reload. This function is used above before the cards are rendered on the page.
function shuffle(array) {
var currentIndex = array.length,
temporaryValue,
randomIndex;
while (currentIndex !== 0) {
randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex -= 1;
temporaryValue = array[currentIndex];
array[currentIndex] = array[randomIndex];
array[randomIndex] = temporaryValue;
}
return array;
}
// The code that runs the filter buttons at the top of the page. This currently allows users to filter by 'type' (ie musical, movie or tv show).
$("#filters button").each(function () {
$(this).on("click", function () {
const filtertag = $(this).attr("data-filter");
$("#message").hide();
$("div.emoji-card-title").addClass("hide-card");
if (filtertag == "view-all") {
// If the user clicks on view all, show all cards.
$("div.emoji-card").show();
} else if (
// If the user clicks on movies, musicals or tv shows, show the cards that fall into that category and hide all cards that do not fall into that category.
$("div.emoji-card[data-filter='" + filtertag + "']").length > 0
) {
$("div.emoji-card").show();
$("div.emoji-card:not([data-filter='" + filtertag + "'])").hide();
} else {
// If there are no cards that match the filter, display a message that says that there are no cards for that category.
$("div.emoji-card").hide();
$("#message").show();
$("#message").html(
"<p>There are no " + filtertag + " cards on this page. 🙁</p>"
);
}
});
});
// Reveal the movie or show title when the user clicks on the emojis.
const emojiImages = document.getElementsByClassName("emoji-images");
function toggleCard(event) {
event.currentTarget.nextElementSibling.classList.toggle("hide-card");
}
Array.from(emojiImages).forEach(function (element) {
element.addEventListener("click", toggleCard);
});
// Display a hint (type ie tv, movie or musical) when hovering over the question mark.
$("#emojis").on("mouseover", ".hint-container", function () {
$(this).find(".hint").addClass("hint-reveal");
});
// Hide hint (type ie tv, movie or musical) when the user stops hovering over the question mark.
$("#emojis").on("mouseleave", ".hint-container", function () {
$(this).find(".hint").removeClass("hint-reveal");
});
// Toggle to expand or hide all of the movie/show names by clicking an icon
$(".btn-reveal-all").click(function () {
$(this).toggleClass(["revealed"]);
const emojis = $("#emojis").find(".emoji-card-title");
if ($(this).hasClass("revealed")) {
emojis.removeClass("hide-card");
} else {
emojis.addClass("hide-card");
}
let title = $(this).attr("title");
title =
title.search(/reveal/i) === -1
? title.replace(/hide/i, "Reveal")
: title.replace(/reveal/i, "Hide");
$(this).attr("title", title);
$(this).find("i").toggleClass(["fa-eye", "fa-eye-slash"]);
});
//Add a secret code to the project that will trigger a fun animation. If a user types in the word 'emojis' while on the website, emojis will start falling briefly.
//Create an array to store the keys that the user types.
const keysPressed = [];
// Store the secret code that the user needs to type to start the animation.
const code = "emojis";
// Select the secret code element by id which by default is hidden on the page.
const secretCode = document.getElementById("secret-code");
//Create the function that will run when the user types the correct code.
function showEmojis() {
//Create a list of emojis to show in the animation.
const favEmojis = ["💖","⭐️","😂","💫","🥳","🙃","🥰","🦄","🌼","🎁","💜","✨"];
let animatedEmoji = "";
//Build the HTML to display each emoji.
favEmojis.forEach(function (emoji) {
animatedEmoji += '<div class="emoji-img">' + emoji + "</div>";
});
//Add the HTML for each emoji to the page.
secretCode.innerHTML = animatedEmoji;
//Change each emoji to Twitter emojis.
twemoji.parse(secretCode);
//Display the entire secret code container. The animation is coming from CSS.
secretCode.classList.add("show");
}
//Add an event listener to watch for what keys the user presses.
window.addEventListener("keyup", (e) => {
//Add each letter the user presses to the keysPressed array.
keysPressed.push(e.key);
//Check if the secret code is included in the array and if so run the show Emojis function.
if (keysPressed.join("").includes(code)) {
showEmojis();
}
});
});