Skip to content

WFES Base

AlterTobi edited this page Sep 29, 2021 · 22 revisions

Developer Documentation - Events and Data Structures

Events

Page Event since Description
home WFESHomePageLoaded 0.1 Wayfarer Home page (showcase) is loaded and datatructure are availabe
review WFESReviewPageLoaded 0.2 review candidate loaded
review WFESReviewDecisionSent 0.2 decision made and sent to Wayfarer server
profile WFESProfileLoaded 0.3 user profile loaded

usage example

...
function homePageLoaded() {
  // YOUR CODE HERE
}
window.addEventListener("WFESHomePageLoaded",homePageLoaded);
...

Data Structures

Please use developer console to inspect the variables since I only provide access to them.

Page Variable since Description
home window.wfes.showcase.list 0.1 lists the 3 showcase objects
review window.wfes.review.pageData 0.2 candidate data
review window.wfes.review.decision 0.2 candidate data and review decision made
profile window.wfes.profile 0.3 user profile data
Clone this wiki locally