Settings
Settings is a popup menu that contains options to configure the player and media playback. Just like the controls, Vime comes with both a control to open/close the settings menu, and the menu itself out of the box for common settings such as playback rate, quality and captions. Like we did in the Controls guide, we'll first look at how to extend the default settings, and then how we can go about creating our own. Let's start with extending the default settings...
info
See the DefaultSettings component documentation for more information on what properties you can pass in.
- HTML
- React
- Vue
- Svelte
- Stencil
- Angular
How do we now go about either extending the default settings or building our own? If we look
at the Components > UI > Settings
section in the sidebar (on your left), we'll see there are
a collection of components for this exact job. The basic settings menu hierarchy is as follows:
- Menu: wraps together all menu items and submenus. It's also
responsible for handling keyboard navigation.
- MenuItem: multi-purpose interactable element in the menu.
- Submenu: used to organize the menu by grouping related
sections/options together. It usually contains a radio group but you can pass in anything
via the default slot.
- MenuRadioGroup: groups together radio buttons
to describe a set of related options.
- MenuRadio: represents a single option in a radio group.
- MenuRadioGroup: groups together radio buttons
to describe a set of related options.
Refer to the links for more information on each component. From here it's basically like playing with lego blocks and putting them together as you like. We have the following starting points when building out our settings:
- We extend the DefaultSettings component which handles how the menu is presented on mobile/desktop, and it comes with common settings such as changing the playback rate, quality and captions.
- We start with the Settings component which handles how the menu is presented on mobile/desktop, and we build out all the options inside the menu ourselves.
- We start with Menu component for a more bare bones approach. We're responsible for how the menu is presented, and for connecting it to a controller who'll open and close it.
Now you might be wondering at this point how we go about opening/closing the menu? The
Settings component has a method called setController
for setting
the element who'll be responsible for opening/closing it. The
SettingsControl component that comes with Vime automatically
finds and sets itself as the controller on the Settings component. This means if you're using the
third option above of your own menu, then you'll be responsible for connecting together the controller
(whether it's the SettingsControl or your own), and the component responsible for presenting the menu.
Okay let's play with some of these components in the following example to see how they look and feel...
- HTML
- React
- Vue
- Svelte
- Stencil
- Angular
Glorious! Here's the result π₯ ...
tip
Click the cogwheel in the lower control bar to open the settings.
Hopefully by this point you have a good understanding of how you can build your own settings. In summary, there are many ways we can choose to start building it, and Vime provides a collection of components as building blocks to help us. As usual, the examples provided are simple and it's up to you how far you take it. In addition, remember if none of the predefined components meet your requirements, you can always create your own as we saw in the UI guide. Happy building π₯³
π Β Let's move onto styling!