-
Notifications
You must be signed in to change notification settings - Fork 715
/
Copy pathApp.js
142 lines (133 loc) · 3.95 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
import React, { Component } from "react";
import $ from "jquery";
import "./App.scss";
import Header from "./components/Header";
import Footer from "./components/Footer";
import About from "./components/About";
import Experience from "./components/Experience";
import Projects from "./components/Projects";
import Skills from "./components/Skills";
class App extends Component {
constructor(props) {
super();
this.state = {
foo: "bar",
resumeData: {},
sharedData: {},
};
}
applyPickedLanguage(pickedLanguage, oppositeLangIconId) {
this.swapCurrentlyActiveLanguage(oppositeLangIconId);
document.documentElement.lang = pickedLanguage;
var resumePath =
document.documentElement.lang === window.$primaryLanguage
? `res_primaryLanguage.json`
: `res_secondaryLanguage.json`;
this.loadResumeFromPath(resumePath);
}
swapCurrentlyActiveLanguage(oppositeLangIconId) {
var pickedLangIconId =
oppositeLangIconId === window.$primaryLanguageIconId
? window.$secondaryLanguageIconId
: window.$primaryLanguageIconId;
document
.getElementById(oppositeLangIconId)
.removeAttribute("filter", "brightness(40%)");
document
.getElementById(pickedLangIconId)
.setAttribute("filter", "brightness(40%)");
}
componentDidMount() {
this.loadSharedData();
this.applyPickedLanguage(
window.$primaryLanguage,
window.$secondaryLanguageIconId
);
}
loadResumeFromPath(path) {
$.ajax({
url: path,
dataType: "json",
cache: false,
success: function (data) {
this.setState({ resumeData: data });
}.bind(this),
error: function (xhr, status, err) {
alert(err);
},
});
}
loadSharedData() {
$.ajax({
url: `portfolio_shared_data.json`,
dataType: "json",
cache: false,
success: function (data) {
this.setState({ sharedData: data });
document.title = `${this.state.sharedData.basic_info.name}`;
}.bind(this),
error: function (xhr, status, err) {
alert(err);
},
});
}
render() {
return (
<div>
<Header sharedData={this.state.sharedData.basic_info} />
<div className="col-md-12 mx-auto text-center language">
<div
onClick={() =>
this.applyPickedLanguage(
window.$primaryLanguage,
window.$secondaryLanguageIconId
)
}
style={{ display: "inline" }}
>
<span
className="iconify language-icon mr-5"
data-icon="twemoji-flag-for-flag-united-kingdom"
data-inline="false"
id={window.$primaryLanguageIconId}
></span>
</div>
<div
onClick={() =>
this.applyPickedLanguage(
window.$secondaryLanguage,
window.$primaryLanguageIconId
)
}
style={{ display: "inline" }}
>
<span
className="iconify language-icon"
data-icon="twemoji-flag-for-flag-poland"
data-inline="false"
id={window.$secondaryLanguageIconId}
></span>
</div>
</div>
<About
resumeBasicInfo={this.state.resumeData.basic_info}
sharedBasicInfo={this.state.sharedData.basic_info}
/>
<Projects
resumeProjects={this.state.resumeData.projects}
resumeBasicInfo={this.state.resumeData.basic_info}
/>
<Skills
sharedSkills={this.state.sharedData.skills}
resumeBasicInfo={this.state.resumeData.basic_info}
/>
<Experience
resumeExperience={this.state.resumeData.experience}
resumeBasicInfo={this.state.resumeData.basic_info}
/>
<Footer sharedBasicInfo={this.state.sharedData.basic_info} />
</div>
);
}
}
export default App;