2014-01-03 13:32:13 -05:00
View = require ' views/kinds/RootView '
template = require ' templates/account/profile '
User = require ' models/User '
2014-06-07 14:45:49 -04:00
{ me } = require ' lib/auth '
2014-04-10 17:59:32 -04:00
JobProfileContactView = require ' views/modal/job_profile_contact_modal '
2014-06-01 19:45:19 -04:00
JobProfileView = require ' views/account/job_profile_view '
forms = require ' lib/forms '
2014-01-03 13:32:13 -05:00
module.exports = class ProfileView extends View
id: " profile-view "
template: template
2014-06-07 14:45:49 -04:00
subscriptions:
' linkedin-loaded ' : ' onLinkedInLoaded '
2014-04-07 20:58:02 -04:00
events:
2014-05-31 01:12:44 -04:00
' click # toggle-editing ' : ' toggleEditing '
2014-06-07 14:45:49 -04:00
' click # importLinkedIn ' : ' importLinkedIn '
2014-06-01 01:09:41 -04:00
' click # toggle-job-profile-active ' : ' toggleJobProfileActive '
2014-04-07 20:58:02 -04:00
' click # toggle-job-profile-approved ' : ' toggleJobProfileApproved '
2014-05-01 20:36:49 -04:00
' click save-notes-button ' : ' onJobProfileNotesChanged '
2014-04-10 17:59:32 -04:00
' click # contact-candidate ' : ' onContactCandidate '
2014-04-25 19:57:42 -04:00
' click # enter-espionage-mode ' : ' enterEspionageMode '
2014-05-31 01:12:44 -04:00
' click .editable-profile .profile-photo ' : ' onEditProfilePhoto '
2014-06-01 01:09:41 -04:00
' click .editable-profile .project-image ' : ' onEditProjectImage '
2014-05-31 01:12:44 -04:00
' click .editable-profile .editable-display ' : ' onEditSection '
' click .editable-profile .save-section ' : ' onSaveSection '
' click .editable-profile .glyphicon-remove ' : ' onCancelSectionEdit '
' change .editable-profile .editable-array input ' : ' onEditArray '
2014-06-01 01:09:41 -04:00
' keyup .editable-profile .editable-array input ' : ' onEditArray '
' click .editable-profile a ' : ' onClickLinkWhileEditing '
2014-04-07 20:58:02 -04:00
2014-01-03 13:32:13 -05:00
constructor: (options, @userID) ->
2014-06-01 19:45:19 -04:00
@ userID ? = me . id
2014-04-07 20:58:02 -04:00
@onJobProfileNotesChanged = _ . debounce @ onJobProfileNotesChanged , 1000
2014-06-07 14:45:49 -04:00
@authorizedWithLinkedIn = IN ? . User ? . isAuthorized ( )
@linkedInLoaded = Boolean ( IN . parse )
@waitingForLinkedIn = false
window . contractCallback = =>
@authorizedWithLinkedIn = IN ? . User ? . isAuthorized ( )
@ render ( )
2014-01-03 13:32:13 -05:00
super options
2014-06-01 01:09:41 -04:00
@uploadFilePath = " db/user/ #{ @ userID } "
2014-06-01 19:45:19 -04:00
@highlightedContainers = [ ]
2014-04-09 19:46:44 -04:00
if @ userID is me . id
@user = me
2014-05-07 16:56:10 -04:00
else if me . isAdmin ( ) or " employer " in me . get ( ' permissions ' )
2014-04-09 19:46:44 -04:00
@user = User . getByID ( @ userID )
2014-04-29 18:12:50 -04:00
@ user . fetch ( )
@ listenTo @ user , " sync " , =>
@ render ( )
2014-06-01 19:45:19 -04:00
else
@user = User . getByID ( @ userID )
2014-01-03 13:32:13 -05:00
2014-06-07 14:45:49 -04:00
onLinkedInLoaded: =>
@linkedinLoaded = true
if @ waitingForLinkedIn
@ renderLinkedInButton ( )
renderLinkedInButton: =>
IN . parse ( )
afterInsert: ->
super ( )
linkedInButtonParentElement = document . getElementById ( " linkedInAuthButton " )
if linkedInButtonParentElement
if @ linkedinLoaded
@ renderLinkedInButton ( )
else
@waitingForLinkedIn = true
importLinkedIn: =>
2014-06-08 20:38:02 -04:00
overwriteConfirm = confirm ( " Importing LinkedIn data will overwrite your current work experience, skills, name, descriptions, and education. Continue? " )
unless overwriteConfirm then return
2014-06-07 14:45:49 -04:00
application . linkedinHandler . getProfileData (err, profileData) =>
console . log profileData
@ processLinkedInProfileData profileData , ->
2014-06-08 20:38:02 -04:00
jobProfileSchema: -> @ user . schema ( ) . properties . jobProfile . properties
2014-06-07 14:45:49 -04:00
processLinkedInProfileData: (p, cb) ->
#handle formatted-name
2014-06-08 20:38:02 -04:00
currentJobProfile = @ user . get ( ' jobProfile ' )
2014-06-08 21:15:16 -04:00
oldJobProfile = _ . cloneDeep ( currentJobProfile )
2014-06-08 20:38:02 -04:00
jobProfileSchema = @ user . schema ( ) . properties . jobProfile . properties
2014-06-07 14:45:49 -04:00
if p [ " formattedName " ] ? and p [ " formattedName " ] isnt " private "
2014-06-08 20:38:02 -04:00
nameMaxLength = jobProfileSchema . name . maxLength
currentJobProfile.name = p [ " formattedName " ] . slice ( 0 , nameMaxLength )
2014-06-07 14:45:49 -04:00
if p [ " skills " ] ? [ " values " ] . length
skillNames = [ ]
2014-06-08 20:38:02 -04:00
skillMaxLength = jobProfileSchema . skills . items . maxLength
2014-06-07 14:45:49 -04:00
for skill in p . skills . values
2014-06-08 20:38:02 -04:00
skillNames . push skill . skill . name . slice ( 0 , skillMaxLength )
2014-06-07 14:45:49 -04:00
currentJobProfile.skills = skillNames
if p [ " headline " ]
2014-06-08 20:38:02 -04:00
shortDescriptionMaxLength = jobProfileSchema . shortDescription . maxLength
currentJobProfile.shortDescription = p [ " headline " ] . slice ( 0 , shortDescriptionMaxLength )
2014-06-07 14:45:49 -04:00
if p [ " summary " ]
2014-06-08 20:38:02 -04:00
longDescriptionMaxLength = jobProfileSchema . longDescription . maxLength
currentJobProfile.longDescription = p . summary . slice ( 0 , longDescriptionMaxLength )
2014-06-07 14:45:49 -04:00
if p [ " positions " ] ? [ " values " ] ? . length
newWorks = [ ]
2014-06-08 20:38:02 -04:00
workSchema = jobProfileSchema . work . items . properties
2014-06-07 14:45:49 -04:00
for position in p [ " positions " ] [ " values " ]
workObj = { }
2014-06-08 20:38:02 -04:00
descriptionMaxLength = workSchema . description . maxLength
workObj.description = position . summary ? . slice ( 0 , descriptionMaxLength )
workObj . description ? = " "
if position . startDate ? . year ?
2014-06-07 14:45:49 -04:00
workObj.duration = " #{ position . startDate . year } - "
if ( not position . endDate ? . year ) or ( position . endDate ? . year and position . endDate ? . year > ( new Date ( ) . getFullYear ( ) ) )
workObj . duration += " present "
else
workObj . duration += position . endDate . year
else
workObj.duration = " "
2014-06-08 20:38:02 -04:00
durationMaxLength = workSchema . duration . maxLength
workObj.duration = workObj . duration . slice ( 0 , durationMaxLength )
employerMaxLength = workSchema . employer . maxLength
2014-06-07 14:45:49 -04:00
workObj.employer = position . company ? . name ? " "
2014-06-08 20:38:02 -04:00
workObj.employer = workObj . employer . slice ( 0 , employerMaxLength )
2014-06-07 14:45:49 -04:00
workObj.role = position . title ? " "
2014-06-08 20:38:02 -04:00
roleMaxLength = workSchema . role . maxLength
workObj.role = workObj . role . slice ( 0 , roleMaxLength )
2014-06-07 14:45:49 -04:00
newWorks . push workObj
currentJobProfile.work = newWorks
if p [ " educations " ] ? [ " values " ] ? . length
newEducation = [ ]
2014-06-08 20:38:02 -04:00
eduSchema = jobProfileSchema . education . items . properties
2014-06-07 14:45:49 -04:00
for education in p [ " educations " ] [ " values " ]
educationObject = { }
educationObject.degree = education . degree ? " Studied "
2014-06-08 21:15:16 -04:00
2014-06-08 20:38:02 -04:00
if education . startDate ? . year ?
2014-06-07 14:45:49 -04:00
educationObject.duration = " #{ education . startDate . year } - "
if ( not education . endDate ? . year ) or ( education . endDate ? . year and education . endDate ? . year > ( new Date ( ) . getFullYear ( ) ) )
educationObject . duration += " present "
if educationObject . degree is " Studied "
educationObject.degree = " Studying "
else
educationObject . duration += education . endDate . year
2014-06-08 20:38:02 -04:00
else
educationObject.duration = " "
2014-06-08 21:15:16 -04:00
if education . fieldOfStudy
if educationObject . degree is " Studied " or educationObject . degree is " Studying "
educationObject . degree += " #{ education . fieldOfStudy } "
else
educationObject . degree += " in #{ education . fieldOfStudy } "
educationObject.degree = educationObject . degree . slice ( 0 , eduSchema . degree . maxLength )
2014-06-08 20:38:02 -04:00
educationObject.duration = educationObject . duration . slice ( 0 , eduSchema . duration . maxLength )
2014-06-07 14:45:49 -04:00
educationObject.school = education . schoolName ? " "
2014-06-08 20:38:02 -04:00
educationObject.school = educationObject . school . slice ( 0 , eduSchema . school . maxLength )
2014-06-07 14:45:49 -04:00
educationObject.description = " "
newEducation . push educationObject
currentJobProfile.education = newEducation
2014-06-08 21:15:16 -04:00
if p [ " publicProfileUrl " ]
#search for linkedin link
links = currentJobProfile . links
alreadyHasLinkedIn = false
for link in links
if link . link . toLowerCase ( ) . indexOf ( " linkedin " ) > - 1
alreadyHasLinkedIn = true
break
unless alreadyHasLinkedIn
newLink =
link: p [ " publicProfileUrl " ]
name: " LinkedIn "
currentJobProfile . links . push newLink
@ user . set ( ' jobProfile ' , currentJobProfile )
2014-06-08 20:38:02 -04:00
validationErrors = @ user . validate ( )
if validationErrors
2014-06-08 21:15:16 -04:00
@ user . set ( ' jobProfile ' , oldJobProfile )
return alert ( " Please notify team@codecombat.com! There were validation errors from the LinkedIn import: #{ JSON . stringify validationErrors } " )
2014-06-08 20:38:02 -04:00
else
@ render ( )
2014-06-07 14:45:49 -04:00
2014-01-03 13:32:13 -05:00
getRenderData: ->
context = super ( )
2014-06-07 14:45:49 -04:00
context.linkedInAuthorized = @ authorizedWithLinkedIn
2014-06-01 19:45:19 -04:00
context.jobProfileSchema = me . schema ( ) . properties . jobProfile
unless jobProfile = @ user . get ' jobProfile '
jobProfile = { }
for prop , schema of context . jobProfileSchema . properties
jobProfile [ prop ] = _ . clone schema . default if schema . default ?
2014-06-04 17:38:57 -04:00
for prop in context . jobProfileSchema . required
jobProfile [ prop ] ? = { string: ' ' , boolean: false , number: 0 , integer: 0 , array: [ ] } [ context . jobProfileSchema . properties [ prop ] . type ]
2014-06-01 19:45:19 -04:00
@ user . set ' jobProfile ' , jobProfile
jobProfile . name ? = ( @ user . get ( ' firstName ' ) + ' ' + @ user . get ( ' lastName ' ) ) . trim ( ) if @ user . get ( ' firstName ' )
context.profile = jobProfile
2014-04-09 19:46:44 -04:00
context.user = @ user
context.myProfile = @ user . id is context . me . id
2014-06-07 02:31:19 -04:00
context.allowedToViewJobProfile = me . isAdmin ( ) or " employer " in me . get ( ' permissions ' ) or ( context . myProfile && ! me . get ( ' anonymous ' ) )
context.allowedToEditJobProfile = me . isAdmin ( ) or ( context . myProfile && ! me . get ( ' anonymous ' ) )
2014-06-01 14:45:01 -04:00
context.profileApproved = @ user . get ' jobProfileApproved '
2014-06-01 01:09:41 -04:00
context.progress = @ progress ? @ updateProgress ( )
@ editing ? = context . progress < 0.8
2014-05-31 01:12:44 -04:00
context.editing = @ editing
2014-04-07 18:21:05 -04:00
context.marked = marked
context.moment = moment
2014-04-09 16:14:52 -04:00
context.iconForLink = @ iconForLink
2014-06-01 01:09:41 -04:00
if links = jobProfile . links
2014-04-09 16:14:52 -04:00
links = ( $ . extend ( true , { } , link ) for link in links )
link.icon = @ iconForLink link for link in links
context.profileLinks = _ . sortBy links , (link) -> not link . icon # icons first
2014-01-03 13:32:13 -05:00
context
2014-04-07 20:58:02 -04:00
afterRender: ->
super ( )
2014-05-31 01:12:44 -04:00
unless @ user . get ( ' jobProfile ' ) ? . projects ? . length or @ editing
2014-04-10 20:54:28 -04:00
@ $el . find ( ' .right-column ' ) . hide ( )
@ $el . find ( ' .middle-column ' ) . addClass ( ' double-column ' )
2014-05-31 01:12:44 -04:00
unless @ editing
@ $el . find ( ' .editable-display ' ) . attr ( ' title ' , ' ' )
2014-06-01 19:45:19 -04:00
@ initializeAutocomplete ( )
2014-06-07 02:31:19 -04:00
highlightNext = @ highlightNext ? true
2014-06-01 19:45:19 -04:00
justSavedSection = @ $el . find ( ' # ' + @ justSavedSectionID ) . addClass " just-saved "
_ . defer =>
@progress = @ updateProgress highlightNext
_ . delay ->
justSavedSection . removeClass " just-saved " , duration: 1500 , easing: ' easeOutQuad '
, 500
initializeAutocomplete: (container) ->
( container ? @ $el ) . find ( ' input[data-autocomplete] ' ) . each ->
$ ( @ ) . autocomplete ( source: JobProfileView [ $ ( @ ) . data ( ' autocomplete ' ) ] , minLength: parseInt ( $ ( @ ) . data ( ' autocomplete-min-length ' ) ) , delay: 0 , autoFocus: true )
2014-04-07 20:58:02 -04:00
2014-05-31 01:12:44 -04:00
toggleEditing: ->
@editing = not @ editing
@ render ( )
2014-06-08 20:38:02 -04:00
IN . parse ( )
2014-05-31 01:12:44 -04:00
2014-04-07 20:58:02 -04:00
toggleJobProfileApproved: ->
2014-06-04 17:38:57 -04:00
return unless me . isAdmin ( )
2014-04-07 20:58:02 -04:00
approved = not @ user . get ' jobProfileApproved '
@ user . set ' jobProfileApproved ' , approved
2014-06-01 14:45:01 -04:00
res = @ user . save { jobProfileApproved: approved } , { patch: true }
res . success (model, response, options) => @ render ( )
2014-04-07 20:58:02 -04:00
2014-06-01 01:09:41 -04:00
toggleJobProfileActive: ->
active = not @ user . get ( ' jobProfile ' ) . active
@ user . get ( ' jobProfile ' ) . active = active
@ saveEdits ( )
2014-04-25 19:57:42 -04:00
enterEspionageMode: ->
postData = emailLower: @ user . get ( ' email ' ) . toLowerCase ( ) , usernameLower: @ user . get ( ' name ' ) . toLowerCase ( )
$ . ajax
type: " POST " ,
url: " /auth/spy "
data: postData
success: @ espionageSuccess
espionageSuccess: (model) ->
window . location . reload ( )
2014-04-07 20:58:02 -04:00
onJobProfileNotesChanged: (e) =>
notes = @ $el . find ( " # job-profile-notes " ) . val ( )
@ user . set ' jobProfileNotes ' , notes
2014-06-01 14:45:01 -04:00
@ user . save { jobProfileNotes: notes } , { patch: true }
2014-04-09 16:14:52 -04:00
iconForLink: (link) ->
icons = [
2014-04-23 14:26:20 -04:00
{ icon: ' facebook ' , name: ' Facebook ' , domain: /facebook\.com/ , match: /facebook/i }
{ icon: ' twitter ' , name: ' Twitter ' , domain: /twitter\.com/ , match: /twitter/i }
{ icon: ' github ' , name: ' GitHub ' , domain: /github\.(com|io)/ , match: /github/i }
{ icon: ' gplus ' , name: ' Google Plus ' , domain: /plus\.google\.com/ , match: /(google|^g).?(\+|plus)/i }
{ icon: ' linkedin ' , name: ' LinkedIn ' , domain: /linkedin\.com/ , match: /(google|^g).?(\+|plus)/i }
2014-04-09 16:14:52 -04:00
]
for icon in icons
if ( link . name . search ( icon . match ) isnt - 1 ) or ( link . link . search ( icon . domain ) isnt - 1 )
icon.url = " /images/pages/account/profile/icon_ #{ icon . icon } .png "
return icon
null
2014-04-10 17:59:32 -04:00
onContactCandidate: (e) ->
@ openModalView new JobProfileContactView recipientID: @ user . id
2014-05-31 01:12:44 -04:00
2014-06-01 19:45:19 -04:00
showErrors: (errors) ->
section = @ $el . find ' .saving '
console . error " Couldn ' t save because of validation errors: " , errors
section . removeClass ' saving '
forms . clearFormAlerts section
# This is pretty lame, since we don't easily match which field had the error like forms.applyErrorsToForm can.
section . find ( ' form ' ) . addClass ( ' has-error ' ) . find ( ' .save-section ' ) . before ( $ ( " <span class= ' help-block error-help-block ' > #{ errors [ 0 ] . message } </span> " ) )
saveEdits: (highlightNext) ->
errors = @ user . validate ( )
return @ showErrors errors if errors
2014-05-31 01:12:44 -04:00
jobProfile = @ user . get ( ' jobProfile ' )
jobProfile.updated = ( new Date ( ) ) . toISOString ( )
@ user . set ' jobProfile ' , jobProfile
return unless res = @ user . save ( )
2014-06-01 19:45:19 -04:00
res . error =>
return if @ destroyed
@ showErrors [ message: res . responseText ]
2014-05-31 01:12:44 -04:00
res . success (model, response, options) =>
2014-06-01 19:45:19 -04:00
return if @ destroyed
@justSavedSectionID = @ $el . find ( ' .editable-section.saving ' ) . removeClass ( ' saving ' ) . attr ( ' id ' )
@highlightNext = highlightNext
2014-05-31 01:12:44 -04:00
@ render ( )
2014-06-01 19:45:19 -04:00
@highlightNext = false
@justSavedSectionID = null
2014-05-31 01:12:44 -04:00
onEditProfilePhoto: (e) ->
2014-06-01 01:09:41 -04:00
onSaving = =>
@ $el . find ( ' .profile-photo ' ) . addClass ( ' saving ' )
onSaved = (uploadingPath) =>
@ user . get ( ' jobProfile ' ) . photoURL = uploadingPath
@ saveEdits ( )
filepicker . pick { mimetypes: ' image/* ' } , @ onImageChosen ( onSaving , onSaved )
onEditProjectImage: (e) ->
img = $ ( e . target )
onSaving = =>
img . addClass ( ' saving ' )
onSaved = (uploadingPath) =>
img . parent ( ) . find ( ' input ' ) . val ( uploadingPath )
img . css ( ' background-image ' , " url( ' /file/ #{ uploadingPath } ' ) " )
img . removeClass ( ' saving ' )
filepicker . pick { mimetypes: ' image/* ' } , @ onImageChosen ( onSaving , onSaved )
formatImagePostData: (inkBlob) ->
url: inkBlob . url , filename: inkBlob . filename , mimetype: inkBlob . mimetype , path: @ uploadFilePath , force: true
onImageChosen: (onSaving, onSaved) ->
(inkBlob) =>
onSaving ( )
uploadingPath = [ @ uploadFilePath , inkBlob . filename ] . join ( ' / ' )
$ . ajax ' /file ' , type: ' POST ' , data: @ formatImagePostData ( inkBlob ) , success: @ onImageUploaded ( onSaved , uploadingPath )
onImageUploaded: (onSaved, uploadingPath) ->
(e) =>
onSaved uploadingPath
2014-05-31 01:12:44 -04:00
onEditSection: (e) ->
2014-06-07 02:31:19 -04:00
@ $el . find ( ' .emphasized ' ) . removeClass ( ' emphasized ' )
2014-06-01 19:45:19 -04:00
section = $ ( e . target ) . closest ( ' .editable-section ' ) . removeClass ' deemphasized '
section . find ( ' .editable-form ' ) . show ( ) . find ( ' select, input, textarea ' ) . first ( ) . focus ( )
2014-05-31 01:12:44 -04:00
section . find ( ' .editable-display ' ) . hide ( )
@ $el . find ( ' .editable-section ' ) . not ( section ) . addClass ' deemphasized '
column = section . closest ( ' .full-height-column ' )
@ $el . find ( ' .full-height-column ' ) . not ( column ) . addClass ' deemphasized '
onCancelSectionEdit: (e) ->
@ render ( )
onSaveSection: (e) ->
e . preventDefault ( )
section = $ ( e . target ) . closest ( ' .editable-section ' )
2014-06-01 01:09:41 -04:00
form = $ ( e . target ) . closest ( ' form ' )
2014-05-31 01:12:44 -04:00
isEmpty = @ arrayItemIsEmpty
2014-06-01 01:09:41 -04:00
section . find ( ' .array-item ' ) . each ->
2014-05-31 01:12:44 -04:00
$ ( @ ) . remove ( ) if isEmpty @
resetOnce = false # We have to clear out arrays if we're going to redo them
2014-06-01 01:09:41 -04:00
serialized = form . serializeArray ( )
jobProfile = @ user . get ' jobProfile '
rootPropertiesSeen = { }
for field in serialized
2014-05-31 01:12:44 -04:00
keyChain = @ extractFieldKeyChain field . name
value = @ extractFieldValue keyChain [ 0 ] , field . value
2014-06-01 01:09:41 -04:00
parent = jobProfile
2014-05-31 01:12:44 -04:00
for key , i in keyChain
2014-06-01 01:09:41 -04:00
rootPropertiesSeen [ key ] = true unless i
2014-05-31 01:12:44 -04:00
break if i is keyChain . length - 1
child = parent [ key ]
if _ . isArray ( child ) and not resetOnce
child = parent [ key ] = [ ]
resetOnce = true
else unless child ?
child = parent [ key ] = { }
parent = child
2014-06-01 19:45:19 -04:00
if key is ' link ' and keyChain [ 0 ] is ' projects ' and not value
delete parent [ key ]
else
parent [ key ] = value
2014-06-01 01:09:41 -04:00
form . find ( ' .editable-array ' ) . each ->
key = $ ( @ ) . data ( ' property ' )
unless rootPropertiesSeen [ key ]
jobProfile [ key ] = [ ]
if section . hasClass ( ' projects-container ' ) and not section . find ( ' .array-item ' ) . length
jobProfile.projects = [ ]
2014-05-31 01:12:44 -04:00
section . addClass ' saving '
2014-06-01 19:45:19 -04:00
@ saveEdits true
2014-05-31 01:12:44 -04:00
extractFieldKeyChain: (key) ->
# "root[projects][0][name]" -> ["projects", "0", "name"]
key . replace ( /^root/ , ' ' ) . replace ( /\[(.*?)\]/g , ' .$1 ' ) . replace ( /^\./ , ' ' ) . split ( /\./ )
extractFieldValue: (key, value) ->
switch key
when ' active ' then Boolean value
2014-06-01 01:09:41 -04:00
when ' experience ' then parseInt value or ' 0 '
2014-05-31 01:12:44 -04:00
else value
arrayItemIsEmpty: (arrayItem) ->
2014-06-01 01:09:41 -04:00
for input in $ ( arrayItem ) . find ( ' input[type!=hidden], textarea ' )
return false if $ ( input ) . val ( ) . trim ( )
2014-05-31 01:12:44 -04:00
true
onEditArray: (e) ->
2014-06-01 01:09:41 -04:00
# We make sure there's always an empty array item at the end for the user to add to, deleting interstitial empties.
2014-05-31 01:12:44 -04:00
array = $ ( e . target ) . closest ( ' .editable-array ' )
arrayItems = array . find ( ' .array-item ' )
toRemove = [ ]
for arrayItem , index in arrayItems
empty = @ arrayItemIsEmpty arrayItem
if index is arrayItems . length - 1
lastEmpty = empty
2014-06-01 01:09:41 -04:00
else if empty and not $ ( arrayItem ) . find ( ' input:focus, textarea:focus ' ) . length
2014-05-31 01:12:44 -04:00
toRemove . unshift index
$ ( arrayItems [ emptyIndex ] ) . remove ( ) for emptyIndex in toRemove
unless lastEmpty
2014-06-01 19:45:19 -04:00
clone = $ ( arrayItem ) . clone ( false )
2014-05-31 01:12:44 -04:00
clone . find ( ' input ' ) . each -> $ ( @ ) . val ( ' ' )
2014-06-01 01:09:41 -04:00
clone . find ( ' textarea ' ) . each -> $ ( @ ) . text ( ' ' )
2014-05-31 01:12:44 -04:00
array . append clone
2014-06-01 19:45:19 -04:00
@ initializeAutocomplete clone
2014-05-31 01:12:44 -04:00
for arrayItem , index in array . find ( ' .array-item ' )
2014-06-01 01:09:41 -04:00
for input in $ ( arrayItem ) . find ( ' input, textarea ' )
2014-05-31 01:12:44 -04:00
$ ( input ) . attr ( ' name ' , $ ( input ) . attr ( ' name ' ) . replace ( /\[\d+\]/ , " [ #{ index } ] " ) )
2014-06-01 01:09:41 -04:00
onClickLinkWhileEditing: (e) ->
e . preventDefault ( )
2014-06-01 19:45:19 -04:00
updateProgress: (highlightNext) ->
2014-06-01 01:09:41 -04:00
completed = 0
totalWeight = 0
next = null
for metric in metrics = @ getProgressMetrics ( )
done = metric . fn ( )
completed += metric . weight if done
totalWeight += metric . weight
2014-06-01 19:45:19 -04:00
next = metric unless next or done
2014-06-01 01:09:41 -04:00
progress = Math . round 100 * completed / totalWeight
bar = @ $el . find ( ' .profile-completion-progress .progress-bar ' )
bar . css ' width ' , " #{ progress } % "
2014-06-07 02:31:19 -04:00
if next
text = " "
t = $ . i18n . t
2014-06-01 19:45:19 -04:00
text = " #{ progress } % #{ t ' account_profile.complete ' } . #{ t ' account_profile.next ' } : #{ next . name } "
2014-06-07 02:31:19 -04:00
bar . parent ( ) . show ( ) . find ( ' .progress-text ' ) . text text
if highlightNext and next ? . container and not ( next . container in @ highlightedContainers )
@ highlightedContainers . push next . container
@ $el . find ( next . container ) . addClass ' emphasized '
#@onEditSection target: next.container
#$('#page-container').scrollTop 0
else
bar . parent ( ) . hide ( )
2014-06-01 01:09:41 -04:00
completed / totalWeight
getProgressMetrics: ->
schema = me . schema ( ) . properties . jobProfile
2014-06-01 14:45:01 -04:00
jobProfile = @ user . get ( ' jobProfile ' ) ? { }
2014-06-01 01:09:41 -04:00
exists = (field) -> -> jobProfile [ field ]
modified = (field) -> -> jobProfile [ field ] and jobProfile [ field ] isnt schema . properties [ field ] . default
listStarted = (field, subfields) -> -> jobProfile [ field ] ? . length and _ . every subfields , (subfield) -> jobProfile [ field ] [ 0 ] [ subfield ]
2014-06-01 19:45:19 -04:00
t = $ . i18n . t
2014-06-01 01:09:41 -04:00
@progressMetrics = [
2014-06-01 19:45:19 -04:00
{ name: t ( ' account_profile.next_name ' ) , weight: 1 , container: ' # name-container ' , fn: modified ' name ' }
{ name: t ( ' account_profile.next_short_description ' ) , weight: 2 , container: ' # short-description-container ' , fn: modified ' shortDescription ' }
{ name: t ( ' account_profile.next_skills ' ) , weight: 2 , container: ' # skills-container ' , fn: -> jobProfile . skills ? . length >= 5 }
{ name: t ( ' account_profile.next_long_description ' ) , weight: 3 , container: ' # long-description-container ' , fn: modified ' longDescription ' }
{ name: t ( ' account_profile.next_work ' ) , weight: 3 , container: ' # work-container ' , fn: listStarted ' work ' , [ ' role ' , ' employer ' ] }
{ name: t ( ' account_profile.next_education ' ) , weight: 3 , container: ' # education-container ' , fn: listStarted ' education ' , [ ' degree ' , ' school ' ] }
{ name: t ( ' account_profile.next_projects ' ) , weight: 3 , container: ' # projects-container ' , fn: listStarted ' projects ' , [ ' name ' ] }
2014-06-07 02:31:19 -04:00
{ name: t ( ' account_profile.next_city ' ) , weight: 1 , container: ' # basic-info-container ' , fn: modified ' city ' }
{ name: t ( ' account_profile.next_country ' ) , weight: 0 , container: ' # basic-info-container ' , fn: exists ' country ' }
2014-06-01 19:45:19 -04:00
{ name: t ( ' account_profile.next_links ' ) , weight: 2 , container: ' # links-container ' , fn: listStarted ' links ' , [ ' link ' , ' name ' ] }
{ name: t ( ' account_profile.next_photo ' ) , weight: 2 , container: ' # profile-photo-container ' , fn: modified ' photoURL ' }
{ name: t ( ' account_profile.next_active ' ) , weight: 1 , fn: modified ' active ' }
2014-06-01 01:09:41 -04:00
]