Easy to understand

Once a developer gets past the initial hurdle of understanding statecharts, understanding a component whose behaviour is encoded in a statechart is a lot easier than understanding a component that is not based on statecharts.

Traditional code

When trying to understand traditional components, you have no choice but to dive into the code. The code is a mix of behaviour and side effects, structured in various ways, be it functional, procedural or object oriented, callback-based or promise-based. Often the code looks something like this:

if (isValid && isEditable && isModified) {
  class = "dirty";
} else if (!isValid && isEditable && isModified) {
  class = "invalid";
} else if // and so on

Such code is present when determining what to do e.g. when a user clicked a button, or a HTTP response arrived, or some database reported an error.

Statecharts based code

When trying to understand a statechart based component, you have the choice of looking at a statechart, maybe even an image of it, to understand the behaviour in isolation. A statechart diagram might look something like this:

Valid, editable and modified states

With a little knowledge of statecharts, it’s clear that the two “booleans” unedited/edited and valid/invalid are independent, but both depend on being editable to have any meaning.

The remaining code (the actions, guards and activities) is easy to grasp too. Each is extracted to its own method:

function edited() {
  this.class = "edited";
}

The conditional logic has been tucked away in the state machine / statechart.

Put simply: There is a usable method to understand code that uses the statechart approach.

Diagrams

The original statechart paper by Harel described only a diagram and ways of depicting statecharts as pure drawings. It is a good idea to take whatever statechart representation there is, e.g. a JSON file or JavaScript object, and produce actual drawings of the coded statecharts as part of building the code. Luckily, there are tools and libraries that can do this. Think of it as a form of the Don’t Repeat Yourself rule: Keep a single authoritative representation of a piece of knowledge in the system (the statechart as a JSON file perhaps) and derive others from it (e.g. an SVG). When diagrams are included in this set of generated representations, it makes statecharts a lot easier to understand.

Sources

[It is] easier to show a statechart to a systems engineer, than a bunch of C code […] [helped people that] haven’t been with the […] project throughout the cycle

UML State Chart Autocoding, Eddie Benowitz, JPL

Code reviews for the modules constructed using a bottom-up approach were difficult and time consuming. Design and code reviews of the statechart modules were quick and effective because the software could be understood by reviewers.

Constructing the User Interface with Statecharts, Ian Horrocks, page 200