0.3.0 • Published 10 months ago
solid-alive v0.3.0
solid-alive
安装(install)
- pnpm add solid-alive / npm i solid-alive / yarn add solid-alive
描述(describe)
- 用于 solid 组件缓存,只测试过2级路由缓存
- AliveProvider
- include : 数组, 不传默认缓存所有, '/','/about', 当数据变少时, 会自动去删除少的数据缓存
- AliveComponent 不要在 有缓存 的组件中使用
在 useAlive
- removeAliveElements: 函数, 可传一个参数, 不传就删除所有缓存 : removeAliveElements('/home')
- onActivated
- onDeactivated
- aliveForzen: 暂时不响应 路由数据变化, aliveForzen()
子父 缓存/删除 问题
- 如果某组件下有子组件,在父的 aliveTransfer中, 第三个参数,为对象 写上子组件的唯一id: {children:'/childrenId','asf',...}
- 使用见下图, 也可用 removeAliveElements 删除
使用(use)
1 /index.tsx,AliveProvider将app 包裹
import { render } from 'solid-js/web'
import App from './App'
import { AliveProvider } from 'solid-alive'
const root = document.getElementById('root')
// include, 不传 默认缓存所有: include={['/','/about']}
// When the data decreases, the reduced cache data will be automatically deleted
render(() =>
<AliveProvider include={[]}>
<App />
</AliveProvider>
, root!)
2 /App.tsx ,在 solid-alive 中 有 aliveTransfer, 参数: JSX , id:string, children?:string..
import { Route, Router } from '@solidjs/router';
import { aliveTransfer } from 'solid-alive';
import Home from './views/Home';
import Client from './views/Client';
import About from './views/About';
import Team from './views/Blog/Team';
import Blog from './views/Blog';
import Single from './views/Blog/Single';
const HomeTransfer = aliveTransfer(Home, '/'),
AboutTsf = aliveTransfer(About, '/about'),
BlogTsf = aliveTransfer(Blog, '/blog', ['/contact', 'single']),
SingleTsf = aliveTransfer(Single,'single')
export default function App() {
return (
<Router>
{/* 这个Client 只是用于标签加跳转的,使用时可不用 */}
<Route component={Client}>
<Route component={Home} path={'/'} />
{/* 单个缓存 single */}
<Route component={AboutTsf} path={'/about'} />
{/* 父子 缓存 Parent Child Nesting */}
<Route component={BlogTsf} path={'/blog'}>
<Route component={SingleTsf} path={'single'} />
</Route>
</Route>
</Router>
);
}
3 父 /views/Blog/index.tsx
export default function Blog(props: any) {
return (
<div>
<h2>Blog</h2>
<div>{props.children}</div>
</div>
);
}
- 子 /views/Blog/Single/index.tsx 中
import { onActivated,onDeactivated,useAlive, AliveComponent } from "solid-alive"
export default function Single() {
const { removeAliveElements,aliveFrozen } = useAlive()
const click = () => {
removeAliveElements(['/about']) // delete '/about'; 删除 /about
// removeAliveElements() // delete all alive element; 会删除所有缓存的组件
}
//todo call 这个会被调用
onActivated(()=>{
console.log('Single-activeated-1')
})
//todo call 也会被调用
onActivated(()=>{
console.log('Single-activeated-2')
})
// 缓存离开,
onDeactivated(()=>{
console.log('Single-deactivated')
})
return (
<div>
<h2>Single</h2>
{ /** 这个 AliveComponent 最好是在 未缓存的组件 中使用, 不然生命周期不同步 */ }
<AliveComponent id={'home1'}>
<Home />
</AliveComponent>
<input type="text" style={{ border: '2px solid red' }} />
</div>
)
}
3 动态生成 路由
/** App.tsx */
import { createEffect, lazy, type Component } from 'solid-js'
import { Route, Router } from '@solidjs/router'
import { useAlive, aliveTransfer } from "solid-alive"
const modules = import.meta.glob<{ default: Component<any> }>([
'./views/**/**.tsx',
'./views/**.tsx'
])
const transferRouter = (data: MenuData[]) =>
data.flatMap(item => {
let module = modules[`./views${item.realPath}`]
if (!module) return []
const Transfer = aliveTransfer(
lazy(module),
item.path,
item.children?.map(item => item.path)
)
return (
<Route component={Transfer} path={item.path.split('/').at(-1)}>
{item.children ? transferRouter(item.children) : null}
</Route>
)
})
const App: Component = () => {
const { aliveFrozen } = useAlive()
const [data, setData] = createStore<MenuData[]>([])
const a: MenuData = {
id: 2,
text: 'ABOUT',
path: '/about',
realPath: '/About/index.tsx',
parentId: null,
}
const addRoute =()=>{
aliveFrozen() // 暂时不响应下面数据变化
setData(d => {
return [...d, a]
})
}
return (
<Router>
<Route component={Client}>
{/* treeData 将 data变成 树结构数据 */}
{transferRouter(treeData(data))}
</Route>
</Router>
)
}
export default App
0.3.0
10 months ago
0.2.1
12 months ago
0.2.0
12 months ago
0.2.7
11 months ago
0.2.6
11 months ago
0.2.9
10 months ago
0.2.8
11 months ago
0.1.9
12 months ago
0.2.2
11 months ago
0.2.5
11 months ago
0.1.0
1 year ago
0.1.2
1 year ago
0.1.1
1 year ago
0.1.8
1 year ago
0.0.9
1 year ago
0.1.7
1 year ago
0.0.8
1 year ago
0.1.4
1 year ago
0.1.3
1 year ago
0.1.6
1 year ago
0.1.5
1 year ago
0.0.7
1 year ago
0.0.5
1 year ago
0.0.4
1 year ago
0.0.6
1 year ago
0.0.1
1 year ago
0.0.3
1 year ago
0.0.2
1 year ago
0.2.4
1 year ago
0.2.3
1 year ago
2.0.3
1 year ago
2.0.2
1 year ago
2.0.1
1 year ago
1.0.4
1 year ago
1.0.3
1 year ago
1.0.2
1 year ago
1.0.1
1 year ago
1.0.0
1 year ago