@montoyland/radial-menu
v0.0.1
Published
A Web Component
Downloads
10
Readme
Radial Menu
Note: Here the component is pictured in its open state. Clicking its center toggles the visibility of the menu items.
Aim
A common strategy for responsive websites is to collapse the menu bar into a 'hamburger menu' which then offers a menu that slides into view. This is often clunky and disorienting. This component offers a solution that is unobtrusive and gives control over its location to the user.
Web Component
This is a Web Component , which means it is framework agnostic and therefore has no dependencies on any library or framework. It runs entirely on web standards which means it can be used stand-alone in the broswer or integrated into the framework of library of your choice (such as Angular or React).
Because they are closer to the metal, web-components are more performant compared to their runtime-dependent counterparts.
Features
The radial menu implements the following features:
- Dynamic Menu
- The radial menu dynamically resizes itself according to the number of objects passed to it.
- Colored Sections
- Each menu item can have its background color set independent of its neighbors.
- Center Thumb
- The center touch target can have its color set.
- Draggable
- Position the menu anywhere on the page.
- Its location is saved to local storage so that it will appear in the last used location
Usage
- Import the module into your index.html
<script type="module" src="/build/radial-menu.esm.js"></script>
<script nomodule src="/build/radial-menu.js"></script>>
- Create the custom tag setting its properties
<radial-menu
menu-items="[]"
font-color="#fff"
center-color="#0088cc"
size="120"
></radial-menu>
Note: If you do not wish to have the hamburger icon within a colored circle, set 'center-color' to 'none'
- Create a <script> tag alonside your component that describes the event callbacks you would like the component to handle, along with an array of menu items describing their color and label to display.
<script>
const handleAccountClicked = () => {
console.log('Account Clicked!');
};
const handleCartClicked = () => {
console.log('Cart Clicked!');
};
const handleProfileClicked = () => {
console.log('Profile Clicked!');
};
const handleOrdersClicked = () => {
console.log('Orders Clicked!');
};
const handleHomeClicked = () => {
console.log('Home Clicked!');
};
const radialMenuElement = document.querySelector('radial-menu');
radialMenuElement.menuItems = [
{ color: '#0088cc', label: 'Account', callback: handleAccountClicked },
{ color: '#0088cc', label: 'Cart', callback: handleCartClicked },
{ color: '#0088cc', label: 'Profile', callback: handleProfileClicked },
{ color: '#0088cc', label: 'Orders', callback: handleOrdersClicked },
{ color: '#0088cc', label: 'Home', callback: handleHomeClicked },
];
</script>
That's it!
How to Use Stencil
Stencil is also great for building entire apps. For that, use the stencil-app-starter instead.
Stencil
Stencil is a compiler for building fast web apps using Web Components.
Stencil combines the best concepts of the most popular frontend frameworks into a compile-time rather than run-time tool. Stencil takes TypeScript, JSX, a tiny virtual DOM layer, efficient one-way data binding, an asynchronous rendering pipeline (similar to React Fiber), and lazy-loading out of the box, and generates 100% standards-based Web Components that run in any browser supporting the Custom Elements v1 spec.
Stencil components are just Web Components, so they work in any major framework or with no framework at all.
Getting Started
To start building a new web component using Stencil, clone this repo to a new directory:
git clone https://github.com/ionic-team/stencil-component-starter.git my-component
cd my-component
git remote rm origin
and run:
npm install
npm start
To build the component for production, run:
npm run build
To run the unit tests for the components, run:
npm test
Need help? Check out our docs here.
Naming Components
When creating new component tags, we recommend not using stencil
in the component name (ex: <stencil-datepicker>
). This is because the generated component has little to nothing to do with Stencil; it's just a web component!
Instead, use a prefix that fits your company or any name for a group of related components. For example, all of the Ionic generated web components use the prefix ion
.
Using this component
There are three strategies we recommend for using web components built with Stencil.
The first step for all three of these strategies is to publish to NPM.
Script tag
- Put a script tag similar to this
<script src='https://unpkg.com/[email protected]/dist/my-component.esm.js'></script>
in the head of your index.html - Then you can use the element anywhere in your template, JSX, html etc
Node Modules
- Run
npm install my-component --save
- Put a script tag similar to this
<script src='node_modules/my-component/dist/my-component.esm.js'></script>
in the head of your index.html - Then you can use the element anywhere in your template, JSX, html etc
In a stencil-starter app
- Run
npm install my-component --save
- Add an import to the npm packages
import my-component;
- Then you can use the element anywhere in your template, JSX, html etc