Skip to content

WFES Base

AlterTobi edited this page Dec 9, 2021 · 22 revisions

Developer Documentation - Events and Data Structures

Events

Page Event since Description
home WFESHomePageLoaded 0.1 Wayfarer Home page (showcase) is loaded
review WFESReviewPageLoaded 0.2 review candidate page loaded (all)
review WFESReviewPageNewLoaded 0.5 review loaded - new candidate
review WFESReviewPageEditLoaded 0.5 review loaded - title/location/description edit
review WFESReviewPagePhotoLoaded 0.5 review loaded - photo edit
review WFESReviewDecisionSent 0.2 decision made and sent to Wayfarer server
skip WFESReviewDecisionSent 0.2 candidate skipped
profile WFESProfileLoaded 0.3 user profile loaded
nominations WFESNominationListLoaded 0.4 nominations list loaded
nominations WFESNominationDetailLoaded 0.4 selected nomination loaded
--- WFESPropertiesLoaded 0.6 properties 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
review window.wfes.edit 0.6 information about types of edits
profile window.wfes.profile 0.3 user profile data
nominations window.wfes.nominations.list 0.4 list of nominations
nominations window.wfes.nominations.detail 0.4 details of selected nomination
--- window.wfes.properties 0.6 properties
messages window.wfes.messages 0.7 language strings
nominations window.wfes.nominations.canAppeal 0.8
nominations window.wfes.nominations.wayspots 0.8
Clone this wiki locally