mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-22 16:30:11 +00:00
Update FRESH<-->JRS converter.
This commit is contained in:
parent
201d96fe22
commit
9d459370ce
@ -14,6 +14,7 @@ FRESH to JSON Resume conversion routiens.
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
Convert from JSON Resume format to FRESH.
|
Convert from JSON Resume format to FRESH.
|
||||||
|
@method toFresh
|
||||||
*/
|
*/
|
||||||
toFRESH: function( src, foreign ) {
|
toFRESH: function( src, foreign ) {
|
||||||
|
|
||||||
@ -47,84 +48,14 @@ FRESH to JSON Resume conversion routiens.
|
|||||||
address: src.basics.location.address
|
address: src.basics.location.address
|
||||||
},
|
},
|
||||||
|
|
||||||
employment: {
|
employment: employment( src.work, true ),
|
||||||
history: src.work.map( function( job ) {
|
education: education( src.education, true),
|
||||||
return {
|
service: service( src.volunteer, true),
|
||||||
position: job.position,
|
|
||||||
employer: job.company,
|
|
||||||
summary: job.summary,
|
|
||||||
current: (!job.endDate || !job.endDate.trim() || job.endDate.trim().toLowerCase() === 'current') || undefined,
|
|
||||||
start: job.startDate,
|
|
||||||
end: job.endDate,
|
|
||||||
url: job.website,
|
|
||||||
keywords: "",
|
|
||||||
highlights: job.highlights
|
|
||||||
};
|
|
||||||
})
|
|
||||||
},
|
|
||||||
|
|
||||||
education: {
|
|
||||||
history: src.education.map(function(edu){
|
|
||||||
return {
|
|
||||||
institution: edu.institution,
|
|
||||||
start: edu.startDate,
|
|
||||||
end: edu.endDate,
|
|
||||||
grade: edu.gpa,
|
|
||||||
curriculum: edu.courses,
|
|
||||||
url: edu.website || edu.url || null,
|
|
||||||
summary: null,
|
|
||||||
area: edu.area,
|
|
||||||
studyType: edu.studyType
|
|
||||||
};
|
|
||||||
})
|
|
||||||
},
|
|
||||||
|
|
||||||
service: {
|
|
||||||
history: src.volunteer.map(function(vol) {
|
|
||||||
return {
|
|
||||||
type: 'volunteer',
|
|
||||||
position: vol.position,
|
|
||||||
organization: vol.organization,
|
|
||||||
start: vol.startDate,
|
|
||||||
end: vol.endDate,
|
|
||||||
url: vol.website,
|
|
||||||
summary: vol.summary,
|
|
||||||
highlights: vol.highlights
|
|
||||||
};
|
|
||||||
})
|
|
||||||
},
|
|
||||||
|
|
||||||
skills: skillsToFRESH( src.skills ),
|
skills: skillsToFRESH( src.skills ),
|
||||||
|
writing: writing( src.publications, true),
|
||||||
|
recognition: recognition( src.awards, true, foreign ),
|
||||||
|
social: social( src.basics.profiles, true ),
|
||||||
|
|
||||||
writing: src.publications.map(function(pub){
|
|
||||||
return {
|
|
||||||
title: pub.name,
|
|
||||||
flavor: undefined,
|
|
||||||
publisher: pub.publisher,
|
|
||||||
url: pub.website,
|
|
||||||
date: pub.releaseDate,
|
|
||||||
summary: pub.summary
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
|
|
||||||
recognition: src.awards.map(function(awd){
|
|
||||||
return {
|
|
||||||
title: awd.title,
|
|
||||||
date: awd.date,
|
|
||||||
summary: awd.summary,
|
|
||||||
from: awd.awarder,
|
|
||||||
url: null
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
|
|
||||||
social: src.basics.profiles.map(function(pro){
|
|
||||||
return {
|
|
||||||
label: pro.network,
|
|
||||||
network: pro.network,
|
|
||||||
url: pro.url,
|
|
||||||
user: pro.username
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
|
|
||||||
interests: src.interests,
|
interests: src.interests,
|
||||||
references: src.references,
|
references: src.references,
|
||||||
@ -160,75 +91,15 @@ FRESH to JSON Resume conversion routiens.
|
|||||||
countryCode: src.location.country,
|
countryCode: src.location.country,
|
||||||
region: src.location.region
|
region: src.location.region
|
||||||
},
|
},
|
||||||
profiles: src.social.map(function(soc){
|
profiles: social( src.social, false )
|
||||||
return {
|
|
||||||
network: soc.network,
|
|
||||||
username: soc.user,
|
|
||||||
url: soc.url
|
|
||||||
};
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
|
|
||||||
work: src.employment.history.map(function(emp){
|
work: employment( src.employment, false ),
|
||||||
return {
|
education: education( src.education, false ),
|
||||||
company: emp.employer,
|
skills: skillsToJRS( src.skills, false ),
|
||||||
website: emp.url,
|
volunteer: service( src.service, false ),
|
||||||
position: emp.position,
|
awards: recognition( src.recognition, false, foreign ),
|
||||||
startDate: emp.start,
|
publications: writing( src.writing, false ),
|
||||||
endDate: emp.end,
|
|
||||||
summary: emp.summary,
|
|
||||||
highlights: emp.highlights
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
|
|
||||||
education: src.education.history.map(function(edu){
|
|
||||||
return {
|
|
||||||
institution: edu.institution,
|
|
||||||
gpa: edu.grade,
|
|
||||||
courses: edu.curriculum,
|
|
||||||
startDate: edu.start,
|
|
||||||
endDate: edu.end,
|
|
||||||
area: edu.area,
|
|
||||||
studyType: edu.studyType
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
|
|
||||||
skills: skillsToJRS( src.skills ),
|
|
||||||
|
|
||||||
volunteer: src.service.history.map(function(srv){
|
|
||||||
return {
|
|
||||||
flavor: foreign ? srv.flavor : undefined,
|
|
||||||
organization: srv.organization,
|
|
||||||
position: srv.position,
|
|
||||||
startDate: srv.start,
|
|
||||||
endDate: srv.end,
|
|
||||||
website: srv.url,
|
|
||||||
summary: srv.summary,
|
|
||||||
highlights: srv.highlights
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
|
|
||||||
awards: src.recognition.map(function(awd){
|
|
||||||
return {
|
|
||||||
flavor: foreign ? awd.flavor : undefined,
|
|
||||||
url: foreign ? awd.url: undefined,
|
|
||||||
title: awd.title,
|
|
||||||
date: awd.date,
|
|
||||||
awarder: awd.from,
|
|
||||||
summary: awd.summary
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
|
|
||||||
publications: src.writing.map(function(pub){
|
|
||||||
return {
|
|
||||||
name: pub.title,
|
|
||||||
publisher: pub.publisher,
|
|
||||||
releaseDate: pub.date,
|
|
||||||
website: pub.url,
|
|
||||||
summary: pub.summary
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
|
|
||||||
interests: src.interests,
|
interests: src.interests,
|
||||||
references: src.references,
|
references: src.references,
|
||||||
samples: foreign ? src.samples : undefined,
|
samples: foreign ? src.samples : undefined,
|
||||||
@ -250,6 +121,186 @@ FRESH to JSON Resume conversion routiens.
|
|||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function employment( obj, direction ) {
|
||||||
|
if( !direction ) {
|
||||||
|
return obj && obj.history ?
|
||||||
|
obj.history.map(function(emp){
|
||||||
|
return {
|
||||||
|
company: emp.employer,
|
||||||
|
website: emp.url,
|
||||||
|
position: emp.position,
|
||||||
|
startDate: emp.start,
|
||||||
|
endDate: emp.end,
|
||||||
|
summary: emp.summary,
|
||||||
|
highlights: emp.highlights
|
||||||
|
};
|
||||||
|
}) : undefined;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return {
|
||||||
|
history: obj && obj.length ?
|
||||||
|
obj.map( function( job ) {
|
||||||
|
return {
|
||||||
|
position: job.position,
|
||||||
|
employer: job.company,
|
||||||
|
summary: job.summary,
|
||||||
|
current: (!job.endDate || !job.endDate.trim() || job.endDate.trim().toLowerCase() === 'current') || undefined,
|
||||||
|
start: job.startDate,
|
||||||
|
end: job.endDate,
|
||||||
|
url: job.website,
|
||||||
|
keywords: "",
|
||||||
|
highlights: job.highlights
|
||||||
|
};
|
||||||
|
}) : undefined
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function education( obj, direction ) {
|
||||||
|
if( direction ) {
|
||||||
|
return obj && obj.length ? {
|
||||||
|
history: obj.map(function(edu){
|
||||||
|
return {
|
||||||
|
institution: edu.institution,
|
||||||
|
start: edu.startDate,
|
||||||
|
end: edu.endDate,
|
||||||
|
grade: edu.gpa,
|
||||||
|
curriculum: edu.courses,
|
||||||
|
url: edu.website || edu.url || null,
|
||||||
|
summary: null,
|
||||||
|
area: edu.area,
|
||||||
|
studyType: edu.studyType
|
||||||
|
};
|
||||||
|
})
|
||||||
|
} : undefined;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return obj && obj.history ?
|
||||||
|
obj.history.map(function(edu){
|
||||||
|
return {
|
||||||
|
institution: edu.institution,
|
||||||
|
gpa: edu.grade,
|
||||||
|
courses: edu.curriculum,
|
||||||
|
startDate: edu.start,
|
||||||
|
endDate: edu.end,
|
||||||
|
area: edu.area,
|
||||||
|
studyType: edu.studyType
|
||||||
|
};
|
||||||
|
}) : undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function service( obj, direction, foreign ) {
|
||||||
|
if( direction ) {
|
||||||
|
return {
|
||||||
|
history: obj && obj.length ? obj.map(function(vol) {
|
||||||
|
return {
|
||||||
|
type: 'volunteer',
|
||||||
|
position: vol.position,
|
||||||
|
organization: vol.organization,
|
||||||
|
start: vol.startDate,
|
||||||
|
end: vol.endDate,
|
||||||
|
url: vol.website,
|
||||||
|
summary: vol.summary,
|
||||||
|
highlights: vol.highlights
|
||||||
|
};
|
||||||
|
}) : undefined
|
||||||
|
};
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return obj && obj.history ?
|
||||||
|
obj.history.map(function(srv){
|
||||||
|
return {
|
||||||
|
flavor: foreign ? srv.flavor : undefined,
|
||||||
|
organization: srv.organization,
|
||||||
|
position: srv.position,
|
||||||
|
startDate: srv.start,
|
||||||
|
endDate: srv.end,
|
||||||
|
website: srv.url,
|
||||||
|
summary: srv.summary,
|
||||||
|
highlights: srv.highlights
|
||||||
|
};
|
||||||
|
}) : undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function social( obj, direction ) {
|
||||||
|
if( direction ) {
|
||||||
|
return obj.map(function(pro){
|
||||||
|
return {
|
||||||
|
label: pro.network,
|
||||||
|
network: pro.network,
|
||||||
|
url: pro.url,
|
||||||
|
user: pro.username
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return obj.map( function( soc ) {
|
||||||
|
return {
|
||||||
|
network: soc.network,
|
||||||
|
username: soc.user,
|
||||||
|
url: soc.url
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function recognition( obj, direction, foreign ) {
|
||||||
|
if( direction ) {
|
||||||
|
return obj && obj.length ? obj.map(
|
||||||
|
function(awd){
|
||||||
|
return {
|
||||||
|
flavor: foreign ? awd.flavor : undefined,
|
||||||
|
url: foreign ? awd.url: undefined,
|
||||||
|
title: awd.title,
|
||||||
|
date: awd.date,
|
||||||
|
from: awd.awarder,
|
||||||
|
summary: awd.summary
|
||||||
|
};
|
||||||
|
}) : undefined;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return obj && obj.length ? obj.map(function(awd){
|
||||||
|
return {
|
||||||
|
flavor: foreign ? awd.flavor : undefined,
|
||||||
|
url: foreign ? awd.url: undefined,
|
||||||
|
title: awd.title,
|
||||||
|
date: awd.date,
|
||||||
|
awarder: awd.from,
|
||||||
|
summary: awd.summary
|
||||||
|
};
|
||||||
|
}) : undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function writing( obj, direction ) {
|
||||||
|
if( direction ) {
|
||||||
|
return obj.map(function( pub ) {
|
||||||
|
return {
|
||||||
|
title: pub.name,
|
||||||
|
flavor: undefined,
|
||||||
|
publisher: pub.publisher,
|
||||||
|
url: pub.website,
|
||||||
|
date: pub.releaseDate,
|
||||||
|
summary: pub.summary
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return obj && obj.length ? obj.map(function(pub){
|
||||||
|
return {
|
||||||
|
name: pub.title,
|
||||||
|
publisher: pub.publisher,
|
||||||
|
releaseDate: pub.date,
|
||||||
|
website: pub.url,
|
||||||
|
summary: pub.summary
|
||||||
|
};
|
||||||
|
}) : undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function skillsToFRESH( skills ) {
|
function skillsToFRESH( skills ) {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user