Blazor & WASM in combination to get statistics from Spotify API for performing the song analysis. With separate microservices for auth, Spotify, user data tracking, and application, connected through gRPC with Polly.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NavMenu.razor 991B

123456789101112131415161718192021222324252627282930313233343536
  1. <Bar Mode="BarMode.VerticalInline"
  2. CollapseMode="BarCollapseMode.Small"
  3. Breakpoint="Breakpoint.Desktop"
  4. NavigationBreakpoint="Breakpoint.Tablet"
  5. ThemeContrast="ThemeContrast.Dark"
  6. Background="Background.Body">
  7. <BarToggler/>
  8. <BarBrand>
  9. <BarItem>
  10. <BarLink To="">
  11. <img src="/spotify-icon-marilyn-scott-0.png" style="width: 32px; height: 32px; padding: 1px" />
  12. Spotify
  13. </BarLink>
  14. </BarItem>
  15. </BarBrand>
  16. <BarMenu>
  17. <BarStart>
  18. <BarItem>
  19. <BarLink To="">
  20. <BarIcon IconName="IconName.Dashboard" />
  21. Dashboard
  22. </BarLink>
  23. </BarItem>
  24. <BarItem>
  25. <BarLink To="/home">
  26. <BarIcon IconName="IconName.Home" />
  27. Home
  28. </BarLink>
  29. </BarItem>
  30. </BarStart>
  31. </BarMenu>
  32. </Bar>
  33. @code {
  34. }