adamlbarrett.bsky.social
BigAB
The button with the text "submit", though a known design anti-pattern, is so common that people have no problem with it, but it is still a good example of how thinking of the implementation works its way forward to the User Experience
UI Events
User Interactions
System Actions
{}
class Cart {
addProduct(product, quantity = 1) {/*...*/}
removeProduct(product) {/*...*/}
changeQuantity(product, quantity) {/*...*/}
addPromotionCode(code) {/*...*/}
subscribe(callback) {/*...*/}
get data() {/*...*/}
}
When designing modules try and remember the 80/20 rule of design. Cover the most common actions with direct functions or methods, but possible allow for more complicated actions too
export function addCourseToSchedule {
/*..*/
}
export function beginCourse {
/*..*/
}
export function abandonCourse {
/*..*/
}
export function singUpForWaitingList {
/*..*/
}
adamlbarrett.bsky.social
BigAB