I am currently on the process of moving a large Drupal commerce website from drupal 7 to drupal 8.
One of the biggest issues I have come up against so far is the lack of D8 versions of well used modules, the main one being Menu Token.
I need this to create a custom menu in the User account area of the website with links to orders. I need to beable to include the current user ID in the url:
user/user id/orders
Is there a way of doing this without the Menu Token module?
One way to deal with it, until the menu token module is ready for 8 is to make the redirect yourself. You can do that by implementing an EventSubscriber. This makes it possible to make the token replacement and redirect the response - ie if your menu path is /user/{user}/orders you replace {user} with current user id and redirect the response.
Your event subscriber could look something like this: