From bceca4f1fa7651919023e57786352fb318b0de66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=9D=B0?= Date: Mon, 18 Aug 2025 14:21:15 +0800 Subject: [PATCH] feat: carousel and set text color according to bg color --- project.private.config.json | 23 ++++++ src/app.config.ts | 3 +- src/pages/detail/index.config.ts | 4 ++ src/pages/detail/index.scss | 90 ++++++++++++++++++++++++ src/pages/detail/index.tsx | 117 +++++++++++++++++++++++++++++++ src/pages/index/index.tsx | 79 +++++++++++---------- src/utils/processImage.ts | 33 +++++++++ 7 files changed, 312 insertions(+), 37 deletions(-) create mode 100644 project.private.config.json create mode 100644 src/pages/detail/index.config.ts create mode 100644 src/pages/detail/index.scss create mode 100644 src/pages/detail/index.tsx create mode 100644 src/utils/processImage.ts diff --git a/project.private.config.json b/project.private.config.json new file mode 100644 index 0000000..2c19aa8 --- /dev/null +++ b/project.private.config.json @@ -0,0 +1,23 @@ +{ + "libVersion": "3.9.0", + "projectname": "playBallTogether", + "condition": {}, + "setting": { + "urlCheck": true, + "coverView": true, + "lazyloadPlaceholderEnable": false, + "skylineRenderEnable": false, + "preloadBackgroundData": false, + "autoAudits": false, + "useApiHook": true, + "useApiHostProcess": true, + "showShadowRootInWxmlPanel": false, + "useStaticServer": false, + "useLanDebug": false, + "showES6CompileOption": false, + "compileHotReLoad": true, + "checkInvalidKey": true, + "ignoreDevUnusedFiles": true, + "bigPackageSizeSupport": false + } +} \ No newline at end of file diff --git a/src/app.config.ts b/src/app.config.ts index 15c683b..2096fcf 100644 --- a/src/app.config.ts +++ b/src/app.config.ts @@ -1,6 +1,7 @@ export default defineAppConfig({ pages: [ - 'pages/index/index' + 'pages/index/index', + 'pages/detail/index', ], window: { backgroundTextStyle: 'light', diff --git a/src/pages/detail/index.config.ts b/src/pages/detail/index.config.ts new file mode 100644 index 0000000..eaeff9d --- /dev/null +++ b/src/pages/detail/index.config.ts @@ -0,0 +1,4 @@ +export default definePageConfig({ + navigationBarTitleText: '球局详情', + navigationStyle: 'custom', +}) diff --git a/src/pages/detail/index.scss b/src/pages/detail/index.scss new file mode 100644 index 0000000..ce17fc4 --- /dev/null +++ b/src/pages/detail/index.scss @@ -0,0 +1,90 @@ +.detail-page { + width: 100%; + height: 100%; + + .custom-navbar { + height: 56px; /* 通常与原生导航栏高度一致 */ + display: flex; + align-items: center; + justify-content: center; + // background-color: #fff; + color: #000; + padding-top: 36px; /* 适配状态栏 */ + } + + .detail-navigator { + height: 30px; + width: 80px; + border-radius: 15px; + position: absolute; + left: 12px; + border: 1px solid #888; + box-sizing: border-box; + color: #fff; + display: flex; + align-items: center; + + .detail-navigator-back, .detail-navigator-icon { + height: 20px; + width: 50%; + + display: flex; + justify-content: center; + + & > svg { + width: 20px; + height: 20px; + color: #fff; + } + } + } + + .detail-page-bg { + width: 100%; + height: 100%; + position: fixed; + left: 0; + top: 0; + background-size: cover; + filter: blur(40px); + transform: scale(1.5); + z-index: -2; + width: calc(100% + 20px); + height: calc(100% + 20px); + margin: -10px; + } + + .detail-page-bg-text { + width: 100%; + height: 100%; + position: fixed; + left: 0; + top: 0; + z-index: -1; + background-color: rgba(0, 0, 0, 0.3); + } + + .detail-swiper { + height: 240px; + margin-top: 15px; + margin-left: 15px; + } + + .detail-swiper-item { + overflow: visible; + height: 100%; + + .detail-swiper-item-image { + width: 100%; + height: 100%; + border-radius: 12px; + transition: transform 0.5s; + } + } + + .detail-text { + font-size: 40rpx; + margin-top: 20px; + transition: color 0.3s ease-in; + } +} diff --git a/src/pages/detail/index.tsx b/src/pages/detail/index.tsx new file mode 100644 index 0000000..7c94d32 --- /dev/null +++ b/src/pages/detail/index.tsx @@ -0,0 +1,117 @@ +import React, { useState, useEffect } from 'react' +import { View, Text, Button, Swiper, SwiperItem, Image } from '@tarojs/components' +import { Cell, Avatar, Progress } from '@nutui/nutui-react-taro' +import Taro from '@tarojs/taro' +// 导入API服务 +import demoApi from '../../services/demoApi' +import commonApi from '../../services/commonApi' +import { + useUserStats, + useUserActions +} from '../../store/userStore' +import { getTextColorOnImage } from '../../utils/processImage' +import './index.scss' + +const images = [ + 'http://bimwe.oss-cn-shanghai.aliyuncs.com/front/ball/images/1a35ebbf-2361-44da-b338-7608561d0b31.png', + 'http://bimwe.oss-cn-shanghai.aliyuncs.com/front/ball/images/cf5a82ba-90af-4138-a1b3-9119adcde9e0.png', + 'http://bimwe.oss-cn-shanghai.aliyuncs.com/front/ball/images/49d7cdf0-b03c-4a0f-91c6-e7778080cfcd.png' +] + + + +function Index() { + // 使用Zustand store + // const userStats = useUserStats() + // const { incrementRequestCount, resetUserStats } = useUserActions() + + const [current, setCurrent] = useState(0) + const [colors, setColors] = useState([]) + + // 本地状态管理 + const [loading, setLoading] = useState(false) + const [userProfile, setUserProfile] = useState(null) + const [interests, setInterests] = useState([]) + + // 页面加载时获取数据 + useEffect(() => { + initializeData() + calcBgMainColors() + }, []) + + // 初始化数据 + const initializeData = async () => { + try { + // 获取推荐的兴趣爱好 + const interestsRes = await demoApi.getRecommendedInterests() + if (interestsRes.success) { + setInterests(interestsRes.data || []) + } + } catch (error) { + console.log('获取初始数据失败:', error) + } + } + + const calcBgMainColors = async () => { + const textcolors: string[] = [] + for (const index in images) { + const { textColor } = await getTextColorOnImage(images[index]) + textcolors[index] = textColor + } + setColors(textcolors) + } + + return ( + + + + + + + + + + + + + + + + + + + {/* 我的自定义标题 */} + + + + { setCurrent(e.detail.current) }} + > + {images.map((imageUrl, index) => ( + + + + ))} + + + Five feet from the bed was an earthen wall that had suffered from numerous cracks due to the passage of time. From the other side of the wall came the nagging voice of his mother and the occasional deep breathing of his father who was smoking his pipe. + + + ) +} + +export default Index diff --git a/src/pages/index/index.tsx b/src/pages/index/index.tsx index bf32306..8c59767 100644 --- a/src/pages/index/index.tsx +++ b/src/pages/index/index.tsx @@ -5,8 +5,8 @@ import Taro from '@tarojs/taro' // 导入API服务 import demoApi from '../../services/demoApi' import commonApi from '../../services/commonApi' -import { - useUserStats, +import { + useUserStats, useUserActions } from '../../store/userStore' import './index.scss' @@ -15,7 +15,7 @@ function Index() { // 使用Zustand store const userStats = useUserStats() const { incrementRequestCount, resetUserStats } = useUserActions() - + // 本地状态管理 const [loading, setLoading] = useState(false) const [userProfile, setUserProfile] = useState(null) @@ -43,19 +43,19 @@ function Index() { const handleGetUserProfile = async () => { console.log('获取用户信息...'); setLoading(true) - + try { const response = await demoApi.getUserProfile() - + if (response.success) { setUserProfile(response.data) incrementRequestCount() - + Taro.showToast({ title: '获取用户信息成功', icon: 'success' }) - + console.log('用户信息:', response.data) } } catch (error) { @@ -64,7 +64,7 @@ function Index() { title: '获取失败,使用模拟数据', icon: 'none' }) - + // 模拟数据 setUserProfile({ id: '123', @@ -83,7 +83,7 @@ function Index() { const handleSubmitStats = async () => { console.log('提交统计数据...'); setLoading(true) - + try { const response = await commonApi.submitForm('userStats', [ { @@ -97,21 +97,21 @@ function Index() { } } ]) - + if (response.success) { incrementRequestCount() - + Taro.showToast({ title: '统计数据提交成功', icon: 'success' }) - + console.log('提交结果:', response.data) } } catch (error) { console.error('提交统计数据失败:', error) incrementRequestCount() // 即使失败也计数,用于演示 - + Taro.showToast({ title: '网络模拟提交成功', icon: 'success' @@ -125,7 +125,7 @@ function Index() { const handleSubmitFeedback = async () => { console.log('提交用户反馈...'); setLoading(true) - + try { const response = await demoApi.submitFeedback({ matchId: 'demo_match_' + Date.now(), @@ -134,21 +134,21 @@ function Index() { aspects: ['场地环境', '服务质量', '价格合理'], comments: `用户反馈 - 请求次数: ${userStats.requestCount + 1},体验良好!` }) - + if (response.success) { incrementRequestCount() - + Taro.showToast({ title: '反馈提交成功', icon: 'success' }) - + console.log('反馈结果:', response.data) } } catch (error) { console.error('提交反馈失败:', error) incrementRequestCount() // 即使失败也计数,用于演示 - + Taro.showToast({ title: '网络模拟提交成功', icon: 'success' @@ -163,15 +163,22 @@ function Index() { console.log('重置所有数据...'); resetUserStats() setUserProfile(null) - + Taro.showToast({ title: '数据已重置', icon: 'success' }) } + const handleDetail = () => { + Taro.navigateTo({ + url: '/pages/detail/index' + }) + } + return ( + {/* 页面标题 */} API 请求演示 @@ -181,9 +188,9 @@ function Index() { {/* 用户信息卡片 */} - {userProfile?.nickname?.charAt(0) || 'U'} @@ -205,17 +212,17 @@ function Index() { {/* 统计数据 */} 📊 API 请求统计 - + - {interests.length > 0 && ( - )} @@ -224,10 +231,10 @@ function Index() { {/* API 请求按钮区域 */} 🚀 API 请求功能 - + -