example/assets/js/components/emptyTodoError.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import h3 from "../h3.js";
import store from "../store.js";
export default function EmptyTodoError(data, actions) {
const emptyTodoErrorClass = store.get('displayEmptyTodoError') ? "" : ".hidden";
const clearError = () => {
store.dispatch('error/clear');
store.dispatch('error/update');
}
return h3(`div#empty-todo-error.error${emptyTodoErrorClass}`, [
h3("span.error-message", ["Please enter a non-empty todo item."]),
h3(
"span.dismiss-error",
{
onclick: clearError,
},
"✘"
),
]);
}
|