Skip to content

Commit

Permalink
add organisations section
Browse files Browse the repository at this point in the history
  • Loading branch information
itsnotrisky committed Sep 14, 2016
1 parent 0f8cdae commit 1453e3a
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/actions/sectionAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import educationData from '../data/education';
import projectsData from '../data/projects';
import volunteerData from '../data/volunteer';
import softSkillsData from '../data/soft-skills';
import organisationsData from '../data/organisations';

export const importData = (section, data) => {
return {
Expand Down Expand Up @@ -31,6 +32,9 @@ export const loadData = (section) => {
case "SOFT_SKILLS":
return softSkillsData
break;
case "ORGANISATIONS":
return organisationsData
break;
}
})()
return (dispatch) => {
Expand Down
1 change: 1 addition & 0 deletions src/components/MainComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class MainComponent extends Component {
<SectionWrapper title="Projects" id="projects" const="PROJECTS" />
<SectionWrapper title="Volunteer" id="volunteer" const="VOLUNTEER" />
<SectionWrapper title="Soft Skills" id="soft-skills" const="SOFT_SKILLS" />
<SectionWrapper title="Organisations" id="organisations" const="ORGANISATIONS" />
</div>
<div className="col-lg-4">
<Sidebar />
Expand Down
5 changes: 5 additions & 0 deletions src/components/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ class Sidebar extends Component {
Soft Skills
</a>
</li>
<li className="nav-item">
<a className="nav-link" href="#organisations">
Organisations
</a>
</li>
</ul>
</nav>
</div>
Expand Down
36 changes: 36 additions & 0 deletions src/data/organisations.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
[
{
"title": "PIC for Internet Radio",
"subTitle": "Indonesian Students Association in Australia",
"date": "2015 - 2016",
"descriptions":
[
"Working internally to setup and maintain the infrastructure for internet Radio PPIA.",
"Brainstorming with the announcers to prepare creative programs for each weekly live session."
],
"links":
[
{
"type": "website",
"url": "http://ppi-australia.org/"
}
]
},
{
"title": "Head of Internal Affair Department",
"subTitle": "Informatics Students Association",
"date": "2010 - 2011",
"descriptions":
[
"To and from students, the department was responsible to organize monthly discussion forum to gain students’ aspirations and deliver academic information and upcoming events.",
"Being the head of department acknowledged organizational and leadership and responsible for its members’ progression and performance to achieve its main objectives."
],
"links":
[
{
"type": "website",
"url": "http://hmtc.if.its.ac.id/"
}
]
}
]

0 comments on commit 1453e3a

Please sign in to comment.