• Stars
    star
    1,744
  • Rank 26,012 (Top 0.6 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created about 2 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

🛰 Shared component across routes with animations


Vue Starport

Shared Vue component across routes with animations

NPM version

Live Demo

English | įŽ€äŊ“中文



Why?

It's quite common you might have a same component used in different routes (pages) with a bit different sizes and positions. Sometimes you might want to animate them when user navigates between routes to provide a smooth UX. While such animation is common to be seen in native apps, it's could be a bit challenging to do it in Web.

Vue's component structure is presented as a tree, and the child components are in different branches with their own instances. Meaning when users navigate between routes, the components are not shared across routes.

By that means you can't directly animate the changes because they are in two different instances. The good news is, there is a technique called FLIP to enumerate the transitions between them.

However, FLIP only solves the problem of transitions, the components are still not the same. During the navigation, the internal state of the component will lost.

Thus I started this new approach Starport to experiment with a better solution to fit this requirement.

How?

So since we can't share the components across different branches in the component tree, we could actually hoist them to the root so they become independent from the routes.

To allow each page to still have control of the components, we introduced a Proxy component to present the expected size and position of that component. The proxy will pass the props and position information to the actual component and let it "fly over" the proxy with animations.

When the transition ends and it arrived to the expected position, it will then "land down" to the actual component using the <Teleport/> component.

With this "landing" mechanism, the DOM tree will be preserved as what you will have with the original tree structure. When navigating to another route, the component then will "lift off" back to the floating state, "fly" to the new proxy's position and "land" again.

This is very similar to Terran's Buildings in StarCraft (able to leave the ground and fly to new locations). It's also the inspiration source of the project name Starport.

Install

⚗ī¸ Experimental

npm i vue-starport

Vue Starport only works for Vue 3

Usage

Add <StarportCarrier> component from vue-starport to your root component (app.vue). All <Starport> usage should be inside <StarportCarrier> component.

<script setup>
import { StarportCarrier } from 'vue-starport'
</script>

<template>
  <StarportCarrier> <!-- here -->
    <RouterView />
  </StarportCarrier>
</template>

In routes, wrap the component with the <Starport> component.

<!-- PageA.vue -->
<script setup>
import { Starport } from 'vue-starport'
</script>

<template>
  <div>
    <!-- ... -->
    <Starport port="my-id" style="height:400px"> 
      <MyComponent :prop="value"/>
    </Starport>
  </div>
</template>

On the other page, we do the same thing with the same port id to identify the instance.

<!-- PageB.vue -->
<script setup>
import { Starport } from 'vue-starport'
</script>

<template>
  <div>
    <!-- ... -->
    <Starport port="my-id" style="height:600px">
      <MyComponent :prop="value"/>
    </Starport>
  </div>
</template>

Note that you might need to apply some styles to <Starport> to make it have a defined size indicating the area for the "floating starcraft" to land.

Checkout the Playground for more examples.

Register Components Globally

// main.ts
import StarportPlugin from 'vue-starport'

app.use(StarportPlugin())

And then you can use Starport and StarportCarrier components without importing.

Keep Alive

By default, when navigating to a page without a corresponding <Starport> proxy to land, the component will be destroyed. If you want to keep the component alive even when it's not presented in the current route, you can set keepAlive to true for that specific instance.

<Starport keep-alive port="my-id">
  <MyComponent />
</Starport>

To configure it globally, you can pass options to the plugin:

// main.ts
import StarportPlugin from 'vue-starport'

app.use(StarportPlugin({ keepAlive: true }))

Debug

To debug what happens during the transition, you can add the follow CSS to highlight the parts

[data-starport-craft] {
  background: #0805;
}
[data-starport-proxy]:not([data-starport-landed]) {
  background: #8005;
}

Special Thanks

Thanks to @hangsman who helped to provide the initial solution of proper teleport the element and made this idea valid. Also thanks to the viewers of my live-streaming on Bilibili, those who spend time with me to working on this idea and provided useful feedback during the live.

You can check the recordings of my live-streams (in Chinese), where I wrote this project from scratch.

äŊ å¯äģĨåœ¨å“”å“Šå“”å“Šč§‚įœ‹æˆ‘厞įŽ°æ­¤éĄšį›Žįš„ į›´æ’­åŊ•åƒã€‚

Sponsors

License

MIT License Š 2022 Anthony Fu

More Repositories

1

vitesse

🏕 Opinionated Vite + Vue Starter Template
TypeScript
8,522
star
2

ni

💡 Use the right package manager
TypeScript
4,527
star
3

icones

⚡ī¸ Icon Explorer with Instant searching, powered by Iconify
Vue
4,525
star
4

unplugin-vue-components

📲 On-demand components auto importing for Vue
TypeScript
3,011
star
5

unocss

The instant on-demand atomic CSS engine.
TypeScript
2,990
star
6

unplugin-icons

🤹 Access thousands of icons as components on-demand universally.
TypeScript
2,793
star
7

vitesse-webext

⚡ī¸ WebExtension Vite Starter Template
TypeScript
2,581
star
8

unplugin-auto-import

Auto import APIs on-demand for Vite, Webpack and Rollup
TypeScript
2,307
star
9

vscode-file-nesting-config

Config of File Nesting for VS Code
JavaScript
2,132
star
10

vscode-settings

My VS Code settings and extensions
1,739
star
11

eslint-config

Anthony's ESLint config presets
JavaScript
1,605
star
12

vitesse-nuxt3

Vitesse for Nuxt 3 🏔💚⚡ī¸
TypeScript
1,510
star
13

shikiji

A syntax highlighter based on TextMate grammars. ESM rewrite of shiki, with more features and capabilities.
TypeScript
1,483
star
14

reactivue

🙊 Use Vue Composition API in React components
TypeScript
1,352
star
15

taze

đŸĨĻ A modern cli tool that keeps your deps fresh
TypeScript
1,233
star
16

vite-ssg

Static site generation for Vue 3 on Vite
TypeScript
1,198
star
17

handle

A Chinese Hanzi variation of Wordle - æą‰å­— Wordle
TypeScript
1,194
star
18

case-police

🚨 Make the case correct, PLEASE!
TypeScript
1,098
star
19

vite-plugin-inspect

Inspect the intermediate state of Vite plugins
Vue
1,009
star
20

qrcode-toolkit

Anthony's QR Code Toolkit for AI generated QR Codes
Vue
1,008
star
21

use

Things I am using
946
star
22

vitesse-lite

â›ēī¸ Lightweight version of Vitesse
TypeScript
901
star
23

drauu

Headless SVG-based drawboard in browser.
TypeScript
817
star
24

broz

A simple, frameless browser for screenshots
JavaScript
745
star
25

iroiro

Beautiful Colors Lookup in CLI
TypeScript
735
star
26

retypewriter

Replay the steps of your changes at ease.
TypeScript
715
star
27

live-draw

A tool allows you to draw on screen real-time.
C#
640
star
28

changelogithub

Generate changelog for GitHub
TypeScript
613
star
29

sd-webui-qrcode-toolkit

Anthony's QR Toolkit for Stable Diffusion WebUI
JavaScript
604
star
30

vscode-smart-clicks

Smart selection with double clicks for VS Code.
TypeScript
601
star
31

vite-plugin-md

Markdown with Vue for Vite
TypeScript
580
star
32

unplugin-vue2-script-setup

💡 Bring `<script setup>` to Vue 2.
TypeScript
567
star
33

eslint-flat-config-viewer

A visual tool to help you view and understand your ESLint Flat config.
Vue
557
star
34

sponsorkit

💖 Toolkit for generating sponsors images 😄
TypeScript
550
star
35

unconfig

A universal solution for loading configurations.
TypeScript
524
star
36

utils

Collection of common JavaScript / TypeScript utils
TypeScript
493
star
37

100

My 100-day project of exploring design, compform, and new things.
Vue
491
star
38

v-lazy-show

Compile-time directive to lazy initialize v-show for Vue
TypeScript
480
star
39

antfu.me

My personal website
Markdown
463
star
40

vue-reuse-template

Define and reuse Vue template inside the component scope.
TypeScript
440
star
41

raycast-multi-translate

A Raycast extension that translates text to multiple languages at once
TypeScript
431
star
42

vite-node

Vite as Node.js runtime
JavaScript
428
star
43

vscode-browse-lite

🚀 An embedded browser in VS Code
TypeScript
425
star
44

vscode-vite

One step faster for Vite in VS Code ⚡ī¸
TypeScript
404
star
45

vscode-theme-vitesse

🏕 Vitesse theme for VS Code
TypeScript
395
star
46

starter-ts

Starter template for TypeScript library
TypeScript
386
star
47

vue-template-promise

Template as Promise in Vue
TypeScript
376
star
48

vue-global-api

Use Vue Composition API globally
TypeScript
331
star
49

vue-router-better-scroller

Enhanced scroll behavior for Vue Router
TypeScript
321
star
50

starter-vscode

Starter template for VS Code Extension
TypeScript
299
star
51

vscode-iconify

🙂 Iconify IntelliSense for VS Code
TypeScript
294
star
52

1990-script

Make your GitHub history back to 1990
Shell
293
star
53

p

Toolkit for managing multiple promises
TypeScript
284
star
54

qr-scanner-wechat

QR Code scanner in JS with Open CV and WeChat's Algorithm
JavaScript
281
star
55

wenyan-lang-vscode

æ–‡č¨€ Wenyan Lang for VS Code
TypeScript
277
star
56

fsxx

File system in zx style
JavaScript
262
star
57

birpc

Message-based two-way remote procedure call.
TypeScript
245
star
58

pnpm-patch-i

A better and interactive pnpm patch
TypeScript
243
star
59

vue-minesweeper

A tiny minesweeper clone in Vue 3
TypeScript
242
star
60

contribute

Contribution guide for my projects
231
star
61

purge-icons

🎐 Bundles icons on demand
TypeScript
229
star
62

vscode-open-in-github-button

Add a button to go to the GitHub on the status bar.
TypeScript
223
star
63

github-doorcat

đŸ˜ŧ Supercharges GitHub navbar for fast navigation [WIP]
TypeScript
214
star
64

vscode-goto-alias

Go to Definition following alias redirections.
TypeScript
211
star
65

nuxt-server-fn

Server functions in client for Nuxt 3
TypeScript
194
star
66

refined-github-notifications

UserScript that enhances the GitHub Notifications
JavaScript
194
star
67

prism-theme-vars

A customizable Prism.js theme using CSS variables
CSS
178
star
68

what-time

What time works for you?
Vue
177
star
69

esbuild-node-loader

Transpile TypeScript to ESM with Node.js loader.
JavaScript
176
star
70

vitesse-nuxt-bridge

🏕 Vitesse experience for Nuxt 2 and Vue 2
Vue
174
star
71

talks

Slides & code for my talks
Vue
170
star
72

userscript-clean-twitter

Bring back the peace on Twitter
JavaScript
170
star
73

fs-spy

Monitoring fs accessing for Node process
TypeScript
166
star
74

vscode-icons-carbon

Carbon Visual Studio Code product icon theme
TypeScript
166
star
75

magic-string-stack

magic-string with the capability of committing changes.
TypeScript
165
star
76

vite-plugin-glob

The design experiment for import.meta.glob from Vite.
TypeScript
164
star
77

eslint-plugin-command

Comment-as-command for one-off codemod with ESLint.
TypeScript
163
star
78

vite-plugin-optimize-persist

Persist dynamically analyzed dependencies optimization
TypeScript
155
star
79

diff-match-patch-es

ESM and TypeScript rewrite of Google's diff-match-patch for JavaScript
TypeScript
150
star
80

v-dollar

jQuery-like Vue Reactivity API
TypeScript
146
star
81

eslint-ts-patch

Support loading eslint.config.mjs and eslint.config.ts as flat config files for ESLint.
JavaScript
146
star
82

eslint-typegen

Generate types from ESLint rule schemas, with auto-completion and type-checking for rule options.
TypeScript
144
star
83

.github

The default community health files for all my repos on GitHub
143
star
84

p5i

p5.js, but with more friendly instance mode APIs
TypeScript
139
star
85

markdown-it-github-alerts

Support GitHub-style alerts for markdown-it
TypeScript
132
star
86

magic-string-extra

Extended magic-string with extra utilities
TypeScript
131
star
87

export-size

Analysis bundle cost for each export of a package
TypeScript
130
star
88

local-pkg

Get information on local packages.
TypeScript
126
star
89

vite-plugin-restart

Custom files/globs to restart Vite server
TypeScript
124
star
90

pkg-exports

Get exports of an local npm package.
TypeScript
116
star
91

install-pkg

Install package programmatically.
TypeScript
114
star
92

deploy-check

WIP, Prevent runtime errors earlier in CI
TypeScript
113
star
93

qr-verify

A CLI to verify scannable QR Code in batch
TypeScript
106
star
94

issue-up

Mirror issues to the upstream repos
TypeScript
104
star
95

unplugin-starter

Starter template for unplugin
TypeScript
100
star
96

windicss-runtime-dom

đŸĒ„ Enables Windi CSS for any site with one-line code without any build tools
TypeScript
100
star
97

rex

📑 Transform texts with RegExp like a Pro.
Vue
98
star
98

vscode-auto-npx

Auto resolving local Node.js binaries in VS Code terminal.
TypeScript
96
star
99

vite-plugin-remote-assets

Bundles your assets from remote urls with your app
TypeScript
94
star
100

markdown-it-mdc

MDC (Markdown Components) syntax for markdown-it.
TypeScript
92
star