Skip to content

Commit

Permalink
feat(m): add <SM> (motion) component (#370)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiaking committed Nov 7, 2023
1 parent 1dc9233 commit 9782ffc
Show file tree
Hide file tree
Showing 7 changed files with 426 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ function sidebar(): DefaultTheme.SidebarItem[] {
{ text: 'SInputTextarea', link: '/components/input-textarea' },
{ text: 'SInputYMD', link: '/components/input-ymd' },
{ text: 'SLink', link: '/components/link' },
{ text: 'SM', link: '/components/m' },
{ text: 'SPill', link: '/components/pill' },
{ text: 'SState', link: '/components/state' },
{ text: 'STable', link: '/components/table' },
Expand Down
222 changes: 222 additions & 0 deletions docs/components/m.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,222 @@
# SM <Badge text="3.2.0" />

`<SM>`, where "M" stands for "Motion", allows element to animate when it enters or leaves the viewport. See in action on [Histoire](https://story.sefirot.globalbrains.com/story/stories-components-sm-01-playground-story-vue).

## Overview

Use this component to add subtle animations to the element when it enters or leaves the viewport. It is meant to be used on marketing heavy sites, such as corporate website. Good example being [XLIMIT Website](https://xlimit.globalbrains.com/).

Most of the time, avoid using this component on web apps. It makes the app feel more sluggish than it should be, especially once users are familiar with the app.

## Import

```ts
import SM from '@globalbrain/sefirot/lib/components/SM.vue'
import SMFade from '@globalbrain/sefirot/lib/components/SMFade.vue'
```

## Usage

`<SM>` takes a single slot, and it will apply the animation to the wrapper element, which is `<SM>` it self. Define properties that needs to animate. These values are initial value where the animation starts from. All properties will be animated to the element's default value, e.g. `1` for `opacity`.

```vue-html
<!-- This component will transtition opacity from 0 to 1. -->
<SM opacity="0">
Lorem ipsum...
</SM>
```

See [Props section](#props) for all available properties.

### Using preset components

You may also use preset components that comes with predefined properties. All preset components are prefixed with `SM`.

For example, `<SMFade>` is a preset component that animates `opacity` from `0` to `1`.

```vue-html
<SMFade>
Lorem ipsum...
</SMFade>
```

See [Preset components section](#preset-components) for all available preset components.

## Preset components

All presets components extends all `<SM>` props. The only difference is that preset components have default value set for some of the props.

### `<SMFade>`

The preset component that animates `opacity` from `0` to `1`.

```vue-html
<SMFade>
Lorem ipsum...
</SMFade>
```

## Props

These are the props for `<SM>`. All preset components such as `<SMFade>` extends these props but with different default values. See [Preset components section](#preset-components) for how each preset components defines their defaults.

```ts
interface Props {
as?: string
x?: string
y?: string
opacity?: string | number
duration?: string
delay?: string
once?: boolean
}
```

### `:as`

Defines element tag for the button.

```ts
interface Props {
// @default 'div'
as?: string
}
```

```vue-html
<SM as="p">
...
</SM>
```

### `:x`

Sets the initial value of `transform: translateX()`.

```ts
interface Props {
// @default '0'
x?: string
}
```

```vue-html
<SM x="8px">
...
</SM>
```

### `:y`

Sets the initial value of `transform: translateY()`.

```ts
interface Props {
// @default '0'
y?: string
}
```

```vue-html
<SM y="8px">
...
</SM>
```

### `:opacity`

Sets the initial value of `opacity`.

```ts
interface Props {
// @default 1
opacity?: string | number
}
```

```vue-html
<SM opacity="0">
...
</SM>
```

### `:duration`

The duration of the whole animation. Sets `transition-duration` CSS property.

```ts
interface Props {
// @default '0.75s'
duration?: string
}
```

```vue-html
<SM opacity="0" duration="1s">
...
</SM>
```

### `:delay`

Delays the animation until given time when the element enters the viewport. Sets `transition-delay` CSS property.

```ts
interface Props {
// @default '0s'
delay?: string
}
```

```vue-html
<SM opacity="0" delay="0.5s">
...
</SM>
```

### `:once`

Whether animation should run everytime the element enters the viewport. If set to `true`, the animation will only run once. When set to `false` animation will play when the element also leaves the viewport.

It is defaults to `true` and it is recommended to keep it that way. Having to animate elements while user scroll back the already scrolled area may result in frastrating result.

```ts
interface Props {
// @default true
once?: boolean
}
```

```vue-html
<SM opacity="0" :once="false">
...
</SM>
```

## Slots

### `#default`

`<SM>` will render any passed slot as is. Note that the transition animation is applied to root element, not to children.

```ts
interface SlotProps {
on: boolean
}
```

```vue-html
<SM opacity="0">
<p>Lorem ipsum...</p>
</SM>
```

The slot prop `:on` is `true` when the element is in the viewport. You may use this to apply different styles to the child component to create more complex animations.

```vue-html
<SM opacity="0" v-slot="{ on }">
<div :class="{ 'advanced-animation': on }">
...
</div>
</SM>
```
56 changes: 56 additions & 0 deletions lib/components/SM.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<script setup lang="ts">
import { useIntersectionObserver } from '@vueuse/core'
import { ref } from 'vue'
export interface Props {
as?: string
x?: string
y?: string
opacity?: string | number
duration?: string
delay?: string
once?: boolean
}
const props = withDefaults(defineProps<Props>(), {
as: 'div',
x: '0',
y: '0',
opacity: 1,
duration: '0.75s',
delay: '0s',
once: true
})
const target = ref<HTMLElement | null>(null)
const on = ref(false)
const { stop } = useIntersectionObserver(target, ([{ isIntersecting }]) => {
on.value = isIntersecting
if (on.value && props.once) {
stop()
}
})
</script>

<template>
<component :is="as" class="SM" :class="{ on }" ref="target">
<slot :on="on" />
</component>
</template>

<style scoped lang="postcss">
.SM {
position: relative;
opacity: v-bind(opacity);
transform: translate(v-bind(x), v-bind(y));
transition: opacity, transform;
transition-duration: v-bind(duration);
transition-delay: v-bind(delay);
}
.SM.on {
opacity: 1;
transform: translate(0, 0);
}
</style>
13 changes: 13 additions & 0 deletions lib/components/SMFade.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<script setup lang="ts">
import SM, { type Props } from './SM.vue'
withDefaults(defineProps<Props>(), {
opacity: 0
})
</script>

<template>
<SM class="SMFade" v-bind="$props" v-slot="{ on }">
<slot :on="on" />
</SM>
</template>
66 changes: 66 additions & 0 deletions stories/components/SM.01_Playground.story.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<script setup lang="ts">
import SM from 'sefirot/components/SM.vue'
const title = 'Components / SM / 01. Playground'
const docs = '/components/m'
function state() {
return {
opacity: 0,
x: '16px',
y: '0',
duration: '0.75s',
delay: '0s',
once: true
}
}
</script>

<template>
<Story :title="title" :init-state="state" source="Not available" auto-props-disabled>
<template #controls="{ state }">
<HstText
title="opacity"
v-model="state.opacity"
/>
<HstText
title="x"
v-model="state.x"
/>
<HstText
title="y"
v-model="state.y"
/>
<HstText
title="duration"
v-model="state.duration"
/>
<HstText
title="delay"
v-model="state.delay"
/>
<HstCheckbox
title="once"
v-model="state.once"
/>
</template>

<template #default="{ state }">
<Board :title="title" :docs="docs">
<div>Scroll down to see animation.</div>
<div v-for="i in [...Array(5).keys()]" :key="i" class="py-256">
<SM
:opacity="state.opacity"
:x="state.x"
:y="state.y"
:duration="state.duration"
:delay="state.delay"
:once="state.once"
>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</SM>
</div>
</Board>
</template>
</Story>
</template>

0 comments on commit 9782ffc

Please sign in to comment.