npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-app-effect

v1.0.4

Published

A template that simulates app page switching and caching effects

Downloads

17

Readme

vue-app-effect

实现模拟原生app页面切换效果和缓存效果的前端设计方案, 行为上模拟了app的操作模式,前进刷新,后退缓存,保存数据和页面状态。并且可以始终保存tab菜单页面的内容不会被路由切换清除。

使用前提

需要 vue 2.x , vue-router 2.x

库只是一个核心处理文件,页面结构和配置还需要参考 examples 文件夹中的结果进行搭建

注意:每个路由下的组件根节点都需要采用绝对定位的方式,不采用的话切换会有一定问题。

推荐:每个路由页面采用 vue-app-scroller 滚动插件来处理页面的滚动。可以不用自行处理路由切换后滚动条位置的问题。

也可以使用 -webkit-overflow-scrolling:touch 对固定容器进行溢出滚动的方式,使用这个需要自行处理滚动条位置问题,

在线演示

Demo演示示例

安装使用

$ npm install vue-app-effect -S

参数配置 options

import Vue from 'vue'
import router from './router' 
import VnodeCache from 'vue-app-effect'
// 参数配置
Vue.use(VnodeCache, {
  router,  // 必须
  tabbar: ['/bar1', '/bar2', '/bar3', '/bar4'], // 必须:
  common: '/common_route'
})

参数 必须:[ tabbar ] 导航菜单的路由名称建议带 / 。

参数 可选:[ common ] 可以添加一个公共路由,这个路由可以在任何地方都能打开。

监听事件 event

实例化 vue-app-effect 使用 this.$vueAppEffect.on() 进行事件监听。

每个一级路由下面都需要进行事件监听来处理前进和后退的结果。

data () {
  return {
    Direction:{
      type: '',
      isTabBar: true,
      transitionName: ''
    }
  }
},
created () {
  // 监听前进事件
  this.$vueAppEffect.on('forward', (direction) => {
    this.Direction = direction
    // direction = {type:'forward',isTabBar:false,transitionName: ''}
  })
  // 监听返回事件
  this.$vueAppEffect.on('reverse', (direction) => {
    this.Direction = direction
    // direction = {type:'reverse',isTabBar:false,transitionName: ''}
  })
}

数据缓存

实例化 vue-app-effect 之后可以使用 <vnode-cache></vnode-cache> 进行非导航菜单缓存管理,类似于 <keep-alive>

<template>
  <div id="app">
    <transition :name="Direction.transitionName" :css="!!Direction.type">
      <vnode-cache>
        <router-view id="router-view"></router-view>
      </vnode-cache>
    </transition>
    <TabBar v-show="Direction.isTabBar"></TabBar>
  </div>
</template>

在 tabbar 路由的子路由的容器下使用 <keep-alive> 进行导航页面的路由缓存。

<template>
  <div>
    <keep-alive>
      <router-view class="tab-router-view"></router-view>
    </keep-alive>
  </div>
</template>

具体配置参考 示例文件

动态路由实现多组件独立复用

在有些情况下需要不同路由打开同一个组件,而且在同一个组件中打开自己,这种情况下可以采用动态注册路由的方式

路由部分,将被需要复用的组件先读取,然后保存在可全局调用的地方。

import Router from 'vue-router'
// 需要被复用的组件
import Detail from '@/components/Detail/index'
// 每个动态注册的路由重复使用的页面组件。
Vue.prototype.repeatComponents = {
  Detail
}

实例化 vue-app-effect 后会得到一个 next 方法 使用 this.$vueAppEffect.next() 进行复用组件调用的跳转

methods:{
  goDetail (index, name) {
    this.$vueAppEffect.next({
      vm:this,                // 必传,当前的 this 
      path:`/movie/${index}`, // 必传,跳转的路由
      component:this.repeatComponents.Detail,  // 跳转到的组件,可以是保存的复用组件
      params:{ id: index, name: name }              // 传递的参数
    })
  }
}

实例化 vue-app-effect 后会得到一个 back 方法 使用 this.$vueAppEffect.back() 进行 回退操作,一般存在于头部

methods: {
    back () {
      this.$vueAppEffect.back(this)  // 只需要传入 this 
    }
  }