Frontend: Task List Visual Improvements #2264
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "Elscrux/vikunja:feature/improved-task-lists"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This makes task lists (especially big ones) easier to read. I've set a margin so there is a distance between task items which makes them easier to stand out.
I've also changed the visuals of the checked elements (strikethrough + grey font color) so the unchecked ones stand out more. Note that this currently seems to be a big bugged outside of edit mode as
data-checked
doesn't seem to be updating correctly in this state which seems to be an issue that is already noted for the TipTap editor.I also wanted to add a feature to drag and drop task items to reorder them, but wasn't successful so far. If someone else could try it, that'd be great though!
Before:
After:
Task List Visual Improvementsto Frontend: Task List Visual ImprovementsHi Elscrux!
Thank you for creating a PR!
I've deployed the frontend changes of this PR on a preview environment under this URL: https://2264-feature-improved-task-lists--vikunja-frontend-preview.netlify.app
You can use this url to view the changes live and test them out.
You will need to manually connect this to an api running somewhere. The easiest to use is https://try.vikunja.io/.
This preview does not contain any changes made to the api, only the frontend.
Have a nice day!
Thanks!
@ -18,3 +18,3 @@
const pathSrc = fileURLToPath(new URL('./src', import.meta.url))
const pathSrc = fileURLToPath(new URL('./src', import.meta.url)).replaceAll('\\', '/')
👋 Hey @Elscrux:
out of interest: what was the replacement of '\' with '/' for?
This was required to make the build work locally on my machine. Otherwise the files couldn't be read apparently.
Thanks.
Was there a file path displayed that caused this error?
I'm asking because I remember that the path of some imported component contained
//
. I fixed that just recently (can't find commit right now, but if necessary I can look it up).I'm afraid I don't remember the error