- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想用 react-hooks 制作一个点状进度指示器。所以我有四个点表示进度。它从满到空,如果它是四个点,它是绿色的,三个黄色的,两个 - 红色的,一个是红色的。我想控制用 Prop 点亮的点的颜色和数量,并用 react-hooks 来完成。
我能找到的唯一接近它的是codepen上的“Dotted progress bar”,但它仍然与我想要的不同。
我希望输出是,如果我通过 0-25%,它只会点亮一个红色点,50-75% 黄色点亮等等。
我已经尝试了一段时间了,我尝试过的最远的是:
const OnGoingRequest = ({ image, name, profession, progress, color }) => {
const [dotColor, setDotColor] = useState('#c4c4dd')
if (progress > 0 && progress <= 25) {
setDotColor('red')
} else if (progress > 25) {
setDotColor('blue')
}
return (
<EachReview>
<UserContainer>
<UserImage src={image} />
<UserInfoContainer>
<UserName>{name} </UserName>
<UserProffession>{profession} </UserProffession>
</UserInfoContainer>
</UserContainer>
<ReviewStatusContainer>
<Box>
<Score />
<Bar>
<Progress progress={progress} color={dotColor} />
<Dot />
<Dot />
<Dot />
<Dot />
</Bar>
</Box>
<ReviewStatusReachout>REACHOUT AGAIN</ReviewStatusReachout>
</ReviewStatusContainer>
</EachReview>
)
}
export default OnGoingRequest
const EachReview = styled.div`
display: grid;
grid-template-columns: 2.5fr 1fr;
padding: 25px 20px 15px 20px;
`
const UserContainer = styled.div`
display: flex;
align-items: center;
`
const UserImage = styled.img``
const UserInfoContainer = styled.div`
display: flex;
flex-direction: column;
margin-left: 10px;
`
const UserName = styled.p`
font-family: SFUIDisplay-Regular;
font-size: 16px;
font-weight: 500;
font-stretch: normal;
font-style: normal;
line-height: 1.19;
letter-spacing: normal;
text-align: left;
color: #000000;
margin-bottom: 5px;
`
const UserProffession = styled.p`
font-family: SFUIDisplay-Regular;
font-size: 14px;
font-weight: 500;
font-stretch: normal;
font-style: normal;
line-height: 1.21;
letter-spacing: normal;
text-align: left;
color: #6b737d;
margin: 0;
`
const ReviewStatusContainer = styled.div`
display: flex;
align-items: center;
justify-content: space-between;
`
const ReviewStatusReachout = styled.p`
font-family: SFUIDisplay-Regular;
font-size: 12px;
font-weight: 500;
font-stretch: normal;
font-style: normal;
line-height: 1.17;
letter-spacing: normal;
text-transform: uppercase;
text-align: right;
color: #30aabc;
margin: 0;
`
const Box = styled.div`
width: 200px;
height: 150px;
background: #63a3e3;
text-align: center;
`
const Score = styled.div`
font-size: 48px;
line-height: 88px;
color: #fff;
}
`
const Bar = styled.div`
background: #c4c4dd;
position: relative;
height: 20px;
width: 80%;
margin: 0 auto;
text-align: left;
`
const Progress = styled.div`
position: absolute;
height: 100%;
transition: width 0.4s ease-in;
width: ${props => props.progress};
background-color: ${props => props.color};
z-index: 1;
`
const Dot = styled.div`
position: relative;
width: 5%;
height: 20px;
margin-left: 16%;
background-color: rgba(99, 163, 227, 1);
/* background-color: rgba(199,12,127,.8);*/
/*display: inline-block; */
float: left;
z-index: 2;
progress 作为 props 传递,我正在根据它进行检查,但我得到了太多重新渲染的错误。估计是返回前检查的缘故。
最佳答案
我找到了解决方案。我收到 1、2、3 或 4 作为 Prop ,我正在根据它进行渲染。
const OnGoingRequest = ({ image, name, profession, progress }) => {
return (
<EachReview>
<UserContainer>
<UserImage src={image} />
<UserInfoContainer>
<UserName>{name} </UserName>
<UserProffession>{profession} </UserProffession>
</UserInfoContainer>
</UserContainer>
<ReviewStatusContainer>
{
progress == 1 &&(
<DotsContainer>
<Dot color={'red'} />
</DotsContainer>)
}
{ progress === 2 && (
<DotsContainer>
<Dot color={'purple'} />
<Dot color={'purple'} />
</DotsContainer>
)
}
{
progress === 3 && (
<DotsContainer>
<Dot color={'yellow'} />
<Dot color={'yellow'} />
<Dot color={'yellow'} />
</DotsContainer>
)
}
{
progress == 4 && (
<DotsContainer>
<Dot color={'green'} />
<Dot color={'green'} />
<Dot color={'green'} />
<Dot color={'green'} />
</DotsContainer>)
}
<ReviewStatusReachout>REACHOUT AGAIN</ReviewStatusReachout>
</ReviewStatusContainer>
</EachReview>
)
}
export default OnGoingRequest
const EachReview = styled.div`
display: grid;
grid-template-columns: 1.5fr 1fr;
padding: 25px 20px 15px 20px;
`
const UserContainer = styled.div`
display: flex;
align-items: center;
`
const UserImage = styled.img``
const UserInfoContainer = styled.div`
display: flex;
flex-direction: column;
margin-left: 10px;
`
const UserName = styled.p`
font-family: SFUIDisplay-Regular;
font-size: 16px;
font-weight: 500;
font-stretch: normal;
font-style: normal;
line-height: 1.19;
letter-spacing: normal;
text-align: left;
color: #000000;
margin-bottom: 5px;
`
const UserProffession = styled.p`
font-family: SFUIDisplay-Regular;
font-size: 14px;
font-weight: 500;
font-stretch: normal;
font-style: normal;
line-height: 1.21;
letter-spacing: normal;
text-align: left;
color: #6b737d;
margin: 0;
`
const ReviewStatusContainer = styled.div`
display: flex;
align-items: center;
justify-content: space-between;
`
const ReviewStatusReachout = styled.p`
font-family: SFUIDisplay-Regular;
font-size: 12px;
font-weight: 500;
font-stretch: normal;
font-style: normal;
line-height: 1.17;
letter-spacing: normal;
text-transform: uppercase;
text-align: right;
color: #30aabc;
margin: 0;
`
const DotsContainer = styled.div`
background: #fff;
position: relative;
height: 20px;
margin: 0 10px 0 0;
text-align: left;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
justify-content: space-evenly;
align-items: center;
`
const Dot = styled.div`
position: relative;
width: 6px;
height: 6px;
border-radius: 50%;
background-color: ${props => props.color};
/*display: inline-block; */
float: left;
z-index: 2;
margin-right: 10px;
&:last-of-type{
margin-right: 0;
}
`
关于html - 如何使用 react Hook 制作点状进度指示器组件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58760713/
我创建了一个简单的钩子(Hook),我安装了它 SetWindowsHookEx(WH_CBT, addr, dll, 0); 完成后,我卸载 UnhookWindowsHookEx(0); 然后我可
我正在使用 React Hooks,当我用 mobx 的观察者包装我的组件时,我收到了这个错误。可能是什么问题?是否可以将 mobx 与 React Hooks 一起使用? import classn
我知道这个问题已经被回答过很多次了。我只是找不到解决我的问题的答案,让我相信,我要么是愚蠢的,要么是我的问题没有被解决,因为它比我更愚蠢。除此之外,这是我的问题: 我正在尝试创建一个功能组件,它从 r
我正在使用 React Navigation 的 useNavigation 钩子(Hook): 在 MyComponent.js 中: import { useNavigation } from "
我想在 gitlab 中使用预提交钩子(Hook)。我做的一切都像文档中一样:https://docs.gitlab.com/ce/administration/custom_hooks.html 在
我最近在和一些人谈论我正在编写的程序时听到了“hook”这个词。尽管我从对话中推断出钩子(Hook)是一种函数,但我不确定这个术语到底意味着什么。我搜索了定义,但找不到好的答案。有人可以让我了解这个术
我正在寻找一个在页面创建或页面更改后调用的钩子(Hook),例如“在导航中隐藏页面”、“停用页面”或“移动/删除页面“ 有人知道吗? 谢谢! 最佳答案 这些 Hook 位于 t3lib/class.t
我正在使用钩子(Hook)将新方法添加到 CalEventLocalServiceImpl 中... 我的代码是.. public class MyCalendarLocalServiceImpl e
编译器将所有 SCSS 文件编译为 STANDALONE(无 Rails)项目中的 CSS 后,我需要一个 Compass Hook 。 除了编辑“compiler.rb”(这不是好的解决方案,因为
我“.get”一个请求并像这样处理响应: resp = requests.get('url') resp = resp.text .. # do stuff with resp 阅读包的文档后,我看到
我们想在外部数据库中存储一些关于提交的元信息。在克隆或 checkout 期间,应引用此数据库,我们将元信息复制到克隆的存储库中的文件中。需要数据库而不是仅仅使用文件是为了索引和搜索等...... 我
我有一个 react 钩子(Hook)useDbReadTable,用于从接受tablename和query初始数据的数据库读取数据。它返回一个对象,除了数据库中的数据之外,还包含 isLoading
在下面的代码中,当我调用 _toggleSearch 时,我同时更新 2 个钩子(Hook)。 toggleSearchIsVisible 是一个简单的 bool 值,但是,setActiveFilt
问题 我想在可由用户添加的表单中实现输入字段的键/值对。 参见 animated gif on dynamic fields . 此外,我想在用户提交表单并再次显示页面时显示保存的数据。 参见 ani
当状态处于 Hook 状态时,它可能会变得陈旧并泄漏内存: function App() { const [greeting, setGreeting] = useState("hello");
const shouldHide = useHideOnScroll(); return shouldHide ? null : something useHideOnScroll 行为应该返回更新后
我正在使用 React-native,在其中,我有一个名为 useUser 的自定义 Hook,它使用 Auth.getUserInfro 方法从 AWS Amplify 获取用户信息,并且然后获取返
我正在添加一个 gitolite 更新 Hook 作为 VREF,并且想知道是否有办法将它应用于除 gitolite-admin 之外的所有存储库。 有一个更简单的方法而不是列出我想要应用 Hook
如何使用带有 react-apollo-hooks 的 2 个 graphql 查询,其中第二个查询取决于从第一个查询中检索到的参数? 我尝试使用如下所示的 2 个查询: const [o, setO
我是 hooks 的新手,到目前为止印象还不错,但是,如果我尝试在函数内部使用 hooks,它似乎会提示(无效的 hook 调用。Hooks can only be called inside o
我是一名优秀的程序员,十分优秀!