image.png

flatMenuKeys
[“/dashboard”, “/dashboard/analysis”, “/dashboard/analysis/realtime”, “/dashboard/analysis/offline”, “/list”]

paths [“/list”]

  1. export function getMenuMatchKeys (flatMenuKeys, paths) {
  2. return paths.reduce((matchKeys, path) => {
  3. const filterPath = flatMenuKeys.filter(item => {
  4. return pathToRegexp(item).test(path)
  5. })
  6. return matchKeys.concat(filterPath)
  7. }, []);
  8. }

pathToRegexp(item)

image.png