Update default album list view

- Add random view type
- Default from newest -> random
- Change default refetching behavior to 1hr cache, no stale
- Add manual refresh button
This commit is contained in:
jeffvli
2021-09-24 06:28:04 -07:00
parent 669f6abd71
commit bdb9278e8d
3 changed files with 38 additions and 14 deletions

View File

@@ -110,3 +110,11 @@ export const AddPlaylistButton = ({ ...rest }) => {
</StyledIconButton>
);
};
export const RefreshButton = ({ ...rest }) => {
return (
<StyledIconButton icon={<Icon icon="refresh2" />} tabIndex={0} {...rest}>
Refresh
</StyledIconButton>
);
};