Claude-skill-registry compose-hooks
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/compose-hooks" ~/.claude/skills/majiayu000-claude-skill-registry-compose-hooks && rm -rf "$T"
manifest:
skills/data/compose-hooks/SKILL.mdsource content
ComposeHooks 使用指南
ComposeHooks 是一个为 Jetpack Compose/Compose Multiplatform 设计的 Hooks 库,灵感来自 React Hooks 和 ahooks。
核心概念
所有
useXxx 函数都有对应的 rememberXxx 别名,选择你喜欢的命名风格。
快速参考
状态管理 Hooks
| Hook | 用途 | 示例 |
|---|---|---|
| 基础状态管理(推荐用 by 委托) | |
| 解构使用的状态管理(推荐) | |
| 布尔状态管理 | |
| Redux 风格状态管理 | |
| 不触发重组的引用 | |
| 列表状态管理 | |
| Map 状态管理 | |
副作用 Hooks
| Hook | 用途 | 示例 |
|---|---|---|
| 副作用处理 | |
| 组件挂载时执行 | |
| 组件卸载时执行 | |
| 跳过首次执行的 Effect | |
网络请求
| Hook | 用途 | 示例 |
|---|---|---|
| 网络请求管理 | |
工具 Hooks
| Hook | 用途 | 示例 |
|---|---|---|
| 防抖值 | |
| 节流值 | |
| 定时器 | |
| 延时执行 | |
| 撤销/重做 | |
详细参考
- 状态管理 Hooks: 见 references/state-hooks.md
- 副作用 Hooks: 见 references/effect-hooks.md
- 工具 Hooks: 见 references/utility-hooks.md
- 网络请求 Hooks: 见 references/request-hooks.md
- Table 相关 Hooks: 见 references/table-hooks.md
常见模式
1. 受控组件
// 推荐:使用 useGetState 解构 val (text, setText) = useGetState("") OutlinedTextField( value = text.value, onValueChange = setText, label = { Text("输入") } ) // 或使用 by 委托 var text by useState("") OutlinedTextField( value = text, onValueChange = { text = it }, label = { Text("输入") } )
2. 解决闭包问题(来自 UseStateExample.kt)
// 方式1: 使用 useGetState 函数式更新 val (state, setState) = useGetState("initial") LaunchedEffect(Unit) { repeat(10) { delay(1.seconds) setState { "$it." } // 函数式更新,避免闭包问题 } } // 方式2: 使用 by 委托 var byState by useState("initial") LaunchedEffect(Unit) { repeat(10) { delay(1.seconds) byState += "." // 直接修改,无闭包问题 } } // 方式3: 使用 useLatestRef val (state, setState) = useState("initial") val stateRef = useLatestRef(state) LaunchedEffect(Unit) { repeat(10) { delay(1.seconds) setState("${stateRef.current}.") // 通过 ref 获取最新值 } }
3. 网络请求(来自 Auto&Manual.kt)
// 自动请求 val (userInfoState, loadingState, errorState) = useRequest( requestFn = { NetApi.userInfo(it) }, optionsOf = { defaultParams = "junerver" // 自动请求必须设置默认参数 } ) val userInfo by userInfoState val loading by loadingState if (loading) { Text(text = "loading ...") } userInfo?.let { Text(text = it.toString()) } // 手动请求 val (repoInfoState, loadingState, errorState, request) = useRequest( requestFn = { it: Tuple2<String, String> -> NetApi.repoInfo(it.first, it.second) }, optionsOf = { manual = true defaultParams = tuple("junerver", "ComposeHooks") } ) TButton(text = "request") { request() }
4. Redux 风格状态管理(来自 UseReducerExample.kt)
// 定义 State 和 Action data class SimpleData(val name: String, val age: Int) sealed interface SimpleAction { data class ChangeName(val newName: String) : SimpleAction data object AgeIncrease : SimpleAction } // 定义 Reducer val simpleReducer: Reducer<SimpleData, SimpleAction> = { prevState, action -> when (action) { is SimpleAction.ChangeName -> prevState.copy(name = action.newName) is SimpleAction.AgeIncrease -> prevState.copy(age = prevState.age + 1) } } // 使用 val (state, dispatch) = useReducer( simpleReducer, initialState = SimpleData("default", 18), middlewares = arrayOf(logMiddleware()) ) TButton(text = "Change Name") { dispatch(SimpleAction.ChangeName("Alice")) } TButton(text = "Increase Age") { dispatch(SimpleAction.AgeIncrease) } Text(text = "State: ${state.value}")
5. 列表操作(来自 UseListExample.kt)
val listState = useList(1, 2, 3) // 操作方法 listState.add(4) // 添加 listState.add(0, 0) // 插入 listState.removeAt(0) // 删除 listState.removeLast() // 删除最后一个 listState[0] = 10 // 修改 listState.clear() // 清空 listState.shuffle() // 打乱 // 配合 useListReduce val sum by useListReduce(listState) { a, b -> a + b }
6. 防抖输入(来自 UseDebounceExample.kt)
var inputValue by useState("") val debouncedValue by useDebounce( value = inputValue, optionsOf = { wait = 500.milliseconds } ) OutlinedTextField( value = inputValue, onValueChange = { inputValue = it }, label = { Text("Type something...") } ) Text(text = "Debounced: $debouncedValue")