Cupertino Pane for Vue 3
A Vue 3 Wrapper for Cupertino Library.
Installation
Actually kinda easy
How works
Example
Slot
The component just have one simple slot where you can easily put one or multiple components (by wrapping it in a template or wrap element like a div), doesn't have any special v-slots, any component or html element used will fallback into v-slot:default.
Props
props | type | example | comments |
---|---|---|---|
:drawerOptions ( optional ) | CupertinoSettings |
<v-cupertino :drawerOptions="yourSettingsObject"> |
The same as the Cupertinos Options; constraints you cannot override cupertino's callbacks even if you specified in the CupertinoSettings ' Object |
:entryAnimation ( optional ) | Boolean |
<v-cupertino :entryAnimation="Boolean"> |
Whether the drawer should present, destroy or hide with a smooth animation |
:entryComponent ( optional ) | Component |
<v-cupertino :entryComponent="Component"> |
The component itself use slots, but I think it would be faster to toggle between component from scripts instead of using v-if also components remember their state because are wrapped by <keep-alive> tag |
:isPresent | Boolean | <v-cupertino :entryComponent="Component"> |
Whether the component should be present or hide, when initialize; default: true |
Events
Note: Are the same hooks as the Cupertino pane but instead of camelCase are kebak-case and without the prefix on: @will-dismiss, @backdrop-tap...
events | return | comments |
---|---|---|
@did-dismiss | () => void |
|
@will-dismiss | () => void |
|
@did-present | () => cupertinoInstance |
Returns: the cupertino instance inside the component when the drawer is already visible, this is useful when you need to have access to the instance once is visible |
@will-present | () => cupertinoInstance |
Returns: the cupertino instance inside the component when the drawer will be visible, this is useful when you need to have access to the instance before is visible |
@drag-start | () => number |
Returns: the property y from the method getBoundingClientRect() that belongs to the DOMRect |
@drag | () => number |
Returns: the property y from the method getBoundingClientRect() that belongs to the DOMRect |
@drag-end | () => number |
Returns: the property y from the method getBoundingClientRect() that belongs to the DOMRect |
@backdrop-tap | () => void |
|
@transition-start | () => void |
|
@transition-end | () => void |
How to get access to the public method from the Cupertino Instance inside the component
<v-cupertino />
There are actually three ways to get the instance from <v-cupertino />
component from its parent container:
- refs
- From the instance returned by @did-present event
- From the instance returned by @will-present event
Getting the instance with refs
Sample code
Getting the instance from @did-present or @will-present event
Sample code
Using public methods
Here an overview of all the public methods
Using the refs example to access public methods