-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
207 lines (177 loc) · 6.2 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
const overview = document.getElementById("overview");
const navTags = document.querySelectorAll(".header__nav-ul--li");
const categories = {};
const photographerDisplay = {};
const url = window.location.href;
// --------------------------------------------------------- //
// ------------------- NAVIGATION FOCUS -------------------- //
// --------------------------------------------------------- //
// manage focus inside navigation and add filter functionality
for (let i = 0; i < navTags.length; i++) {
// add filter functionality to navigation, mouse and keyboard
navTags[i].addEventListener("click", filterFunction);
navTags[i].addEventListener("keydown", (e) => {
if (e.key === "Enter") {
filterFunction(e);
}
});
}
// --------------------------------------------------------- //
// -------------------- FILTER FUNCTION -------------------- //
// --------------------------------------------------------- //
function filterFunction(e) {
let target;
{
if (e.type === "click") {
target = e.target;
} else if (e.type === "keydown") {
target = e.target.firstElementChild;
}
}
let filterName = target.getAttribute("data-name");
let filterState = target.getAttribute("data-state");
if (filterState === "inactive") {
navTags.forEach((tag) => {
tag.setAttribute("data-state", "inactive");
tag.setAttribute("aria-current", "false");
});
target.setAttribute("data-state", "active");
target.setAttribute("aria-current", "true");
for (let person of Object.keys(categories)) {
let DOMElement = document.getElementById(person);
if (categories[person].includes(filterName)) {
DOMElement.style.display = "flex";
} else {
DOMElement.style.display = "none";
}
}
} else {
target.setAttribute("data-state", "inactive");
target.removeAttribute("aria-current");
// target.setAttribute("aria-selected", "false");
for (let person of Object.keys(categories)) {
let DOMElement = document.getElementById(person);
DOMElement.style.display = "flex";
}
}
}
// --------------------------------------------------------- //
// ------------------- PHOTOGRAPHER INFO ------------------- //
// --------------------------------------------------------- //
// get data from json
async function getData() {
try {
const data = await fetch("./data.json");
const parsedData = await data.json();
const photographers = parsedData.photographers;
console.log(photographers);
return photographers;
} catch (e) {
console.error(e);
}
}
// build page content
async function buildPageContent() {
const data = await getData();
buildOverview(data);
}
// build tags in phtographer tiles
function buildTags(array) {
let tags = document.createElement("ul");
tags.className = "photographer__tags";
tags.addEventListener("click", filterFunction);
tags.addEventListener("keydown", (e) => {
if (e.key === "Enter") {
filterFunction(e);
}
});
for (let i = 0; i < array.length; i++) {
// create tag list element
let tag = document.createElement("li");
if (array[i] === "sport") {
tag.textContent = "#sports";
} else {
tag.textContent = `#${array[i]}`;
}
tag.className = "photographer__tag";
tag.setAttribute("data-name", array[i]);
tag.setAttribute("data-state", "inactive");
tag.setAttribute("role", "link");
tag.setAttribute("tabindex", "0");
// create span element
let srOnlySpan = document.createElement("span");
srOnlySpan.textContent = "Tag";
srOnlySpan.className = "sr-only";
// append all
tag.appendChild(srOnlySpan);
tags.appendChild(tag);
}
return tags;
}
// function to build overview tiles for each photographer
// and the categories object (id and tags) for filter functionality
function buildOverview(data) {
for (let i = 0; i < data.length; i++) {
let person = data[i];
// scan person.tags array for sport tag and replace with sports
if (person.tags.includes("sport")) {
person.tags.splice(person.tags.indexOf("sport"), 1, "sports");
}
// populate photographerCategories object
categories[`${person.id}`] = person.tags;
photographerDisplay[`${person.id}`] = "display";
// create photographer tile
let tile = document.createElement("article");
tile.className = "photographer";
tile.id = `${person.id}`;
// create clickable image and headline wrapped in anchor tag //
let link = document.createElement("a");
link.className = "photographer__link";
// set aria-label to person name
link.setAttribute("aria-label", person.name);
// create href attribute
link.href = `./pages/${person.name.replace(/ /g, "_")}_${person.id}.html`;
// create image
let img = document.createElement("img");
link.appendChild(img);
img.src = `./img/photographers/ID_Photos/${person.portrait}`;
// How to set empty alt attribute
img.setAttribute("alt", "");
img.className = "photographer__img";
// create name
let name = document.createElement("h2");
name.textContent = person.name;
name.className = "photographer__name";
link.appendChild(name);
// create location
let location = document.createElement("p");
location.textContent = `${person.city}, ${person.country}`;
location.className = "photographer__location";
//create tagline
let tagline = document.createElement("p");
tagline.textContent = person.tagline;
tagline.className = "photographer__tagline";
// create price
let price = document.createElement("p");
price.textContent = `$${person.price}/day`;
price.className = "photographer__price";
// create tags
let tags = buildTags(person.tags);
//append all to DOM
overview.appendChild(tile);
tile.appendChild(link);
tile.appendChild(location);
tile.appendChild(tagline);
tile.appendChild(price);
tile.appendChild(tags);
}
// if url contains parameter, set filter to parameter
if (url.includes("?")) {
const urlPara = url.substring(url.indexOf("?") + 1);
if (urlPara) {
document.querySelector(`[data-name=${urlPara}]`).click();
document.querySelector(`[data-name=${urlPara}]`).parentNode.focus();
}
}
}
buildPageContent();