Skip to content

Instantly share code, notes, and snippets.

@johnfriel
Last active January 7, 2020 04:07
Show Gist options
  • Select an option

  • Save johnfriel/477ee051c60a0d9d5126ff791cccb42f to your computer and use it in GitHub Desktop.

Select an option

Save johnfriel/477ee051c60a0d9d5126ff791cccb42f to your computer and use it in GitHub Desktop.
Rental and Purchase Lifecycle v3-0
Rental and Purchase Lifecycle v3-0
Potential Transaction
collectorStartTrial -> Trialing
collectorStartPurchasing -> Purchasing
collectorPurchase -> Purchased
Trialing
collectorReturn -> Potential Transaction
collectorStartPurchasing -> Purchasing
collectorPurchase -> Purchased
Purchasing
collectorReturn -> Potential Transaction
collectorFinishPurchasing -> Purchased
Purchased
function render(model){
let current_state_name = model.active_states[0].name;
return $("h1",
{style: {color: "darkBlue"}},
`The current state is: ${current_state_name}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment