react-icons/ai#AiFillPlusCircle JavaScript Examples
The following examples show how to use
react-icons/ai#AiFillPlusCircle.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: styles.js From plataforma-sabia with MIT License | 5 votes |
PositiveIcon = styled(AiFillPlusCircle).attrs(({ theme: { colors, sizes } }) => ({
color: colors.secondary,
size: `${sizes.mediumIcon}rem`,
}))``
Example #2
Source File: TaskInput.js From fokus with GNU General Public License v3.0 | 4 votes |
export default function TaskInput() {
const defaultTime = useSelector((s) => s.settings.defaultTime);
const defaultLabel = useSelector((s) => s.settings.defaultLabel);
const [task, setTask] = useState("");
const [time, setTime] = useState(defaultTime);
const [generateFeedbackForTask, setGenerateFeedbackForTask] = useState(undefined);
const [generateFeedbackForTime, setGenerateFeedbackForTime] = useState(undefined);
const [isInputValid,setInputValid] = useState(false);
let taskContentInputRef, taskTimeInputRef;
const meta = useSelector((s) => s.tasks.meta);
const labels = useSelector((s) => s.tasks.labels);
const dispatch = useDispatch();
function submitTask(e) {
if (e.key === "Enter" && task.trim().length >= 1 && isInputValid) {
let temp = task.trim().split(" ");
// add a max time limit
let taskTime = time;
let label = defaultLabel;
if (temp.length !== 1) {
if (!isNaN(parseInt(temp[temp.length - 1]))) {
taskTime = parseInt(temp.pop());
} else if (temp[temp.length - 1][0] === "#" && temp[temp.length - 1].length > 1 && "wpfmeWPFME".includes(temp[temp.length - 1][1])) {
let userLabel = temp[temp.length - 1].substring(1).toLowerCase();
let found = false;
for (let validLabel in labels) {
found = validLabel.includes(userLabel);
console.log(userLabel, validLabel);
if (found) {
label = validLabel;
temp.pop();
break;
}
}
}
}
temp = temp.join(" ");
let newTask = {
id: Math.floor(Math.random() * 10000),
globalKey: meta.globalKey,
content: temp,
time: taskTime,
remainingTime: taskTime,
isRunning: false,
isCompleted: false,
createdAt: new Date().toISOString(),
label: label,
};
if (meta.focussedTaskIndex !== -1) dispatch(focusOnTask(meta.focussedTaskIndex + 1));
dispatch(create(newTask));
dispatch(incrementGlobalKey());
if (label !== null) dispatch(updateLabelCount({ oldLabel: null, newLabel: label }));
setTask("");
setTime(defaultTime);
taskContentInputRef.value = "";
taskTimeInputRef.value = "";
taskContentInputRef.focus();
}
}
const debouncedGenerateInputFeedback = useCallback(
debounce((task, time) => {
if (task !== undefined) setGenerateFeedbackForTask(task);
if (time !== undefined) setGenerateFeedbackForTime(time);
}, 150),
[]
);
function onTaskInputChangeHandler(task) {
setTask(task);
debouncedGenerateInputFeedback(task, undefined);
}
function onTimeInputChangeHandler(time) {
setTime(time);
debouncedGenerateInputFeedback(undefined, time);
}
// improve logic - both onKeyDown and onChange executing - combining will be better.
return (
<>
<TaskInputContainer>
<TaskContentInputDiv>
<AiFillPlusCircle onClick={() => taskContentInputRef.focus()} />
<TaskContentInputField
type="text"
placeholder="i have to focus on ..."
ref={(el) => (taskContentInputRef = el)}
onChange={(e) => onTaskInputChangeHandler(e.target.value)}
onKeyDown={submitTask}
/>
</TaskContentInputDiv>
<TaskTimeInputDiv>
<AiFillClockCircle onClick={() => taskTimeInputRef.focus()} />
<TaskTimeInputField
type="number"
placeholder={defaultTime}
ref={(el) => (taskTimeInputRef = el)}
onChange={(e) => onTimeInputChangeHandler(e.target.value)}
onKeyDown={submitTask}
/>
<span>mins</span>
</TaskTimeInputDiv>
</TaskInputContainer>
<TaskFeedback task={generateFeedbackForTask} time={generateFeedbackForTime} setInputValid={setInputValid}/>
</>
);
}