Skip to content
  • Unlock Pro
  • Log in with GitHub
Solution
Submitted over 2 years ago

Kanban App with Svelte, TailwindCSS, Storybook

storybook, svelte, tailwind-css, vite, typescript
Alexander Morse•610
@Sakeran
A solution to the Kanban task management web app challenge
View live sitePreview (opens in new tab)View codeCode (opens in new tab)

Solution retrospective


This will be my last Frontend Mentor project for a while, so I wanted to make this app as complete as possible, given the one-month deadline I set for myself. That is, it was my aim to not only implement the design according to the specification, but also to create a robust library of composable, testable components, and a suite of unit- and E2E-tests to ensure every part of the app worked exactly according to design. Accessibility was going to be a major focus from the start, with regular manual testing across various devices and ATs. I also had some more features in mind: board-sharing and collaboration with other users, and custom SSR, and a camera feature for generating todos, and…

Yeah, that was last month. The end result that came rattling over the finish line earlier today is very much scaled back from my starting goal - my ambitions steadily eroded as development went on. Much of this came down to my insistence on implementing nearly all of the functionality by hand, some of which I’d never encountered before and needed to spend time researching. Annoyingly, my initial vision was probably achievable if I’d been more willing to rely on external libraries from the start, rather than picking them up out of necessity later on. But then, borrowing third-party, black-box code has always seemed slightly against the spirit of these challenges to me.

Anyway. The majority of my development time went toward the component library I mentioned earlier, and I was able to build out almost all of the front-end in Storybook. The resulting component library has been put online over here, and it’s probably the piece of this project that I’m most proud of. It’s at least 90% functional and probably won’t catch fire. Here I was able to make good on at least some of my “composable and testable” goals, since Storybook makes it easy to test in isolation, and I made some use of its Interactions feature to catch a lot of low-level UI bugs that I would have otherwise missed.

In the end, though, Component-Driven Development ended up taking more of my time than I expected, leaving less than half of my time remaining to do everything else. It was around this point that I realized I probably wasn’t going to implement every feature that I wanted to. Unfortunately, signs of this time crunch are definitely present in the final code, which was implemented very quickly and often with only brief manual testing for correctness. All this left me with an application that I can’t really consider as anything more than a prototype; it meets all of the project requirements, but not to any standard I would consider acceptable.

Regrettably, I don’t have infinite free time, so this is where development on the Kanban app ends for me. If I were to redo this at some point, there are two things in particular I would probably do differently. First, as I mentioned above, I’d want to more carefully consider which pieces of the app I intended to implement myself, and which pieces were preferable/necessary to offload to some third-party library. Custom logic is fun and educational, but it is slow. Secondly, I would have started the development process by formalizing the back-end and model/data layer, rather than jumping straight into components. Building components from the bottom-up in isolation was a good experience, but not knowing where my data would come from from led to me making some mistakes that cost time to fix later on.

I could write a ton more about this project, but even the interesting stuff above has gone on for a while. For a final project, this wasn’t everything I’d hoped it would be. But I could have done a lot worse.

Code
Select a file

Please log in to post a comment

Log in with GitHub

Community feedback

No feedback yet. Be the first to give feedback on Alexander Morse's solution.

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord
Frontend Mentor logo

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

How does the accessibility report work?

When a solution is submitted, we use axe-core to run an automated audit of your code.

This picks out common accessibility issues like not using semantic HTML and not having proper heading hierarchies, among others.

This automated audit is fairly surface level, so we encourage to you review the project and code in more detail with accessibility best practices in mind.

How does the CSS report work?

When a solution is submitted, we use stylelint to run an automated check on the CSS code.

We've added some of our own linting rules based on recommended best practices. These rules are prefixed with frontend-mentor/ which you'll see at the top of each issue in the report.

The report will audit 1st-party linked stylesheets, and styles within <style> tags.

How does the HTML validation report work?

When a solution is submitted, we use html-validate to run an automated check on the HTML code.

The report picks out common HTML issues such as not using headings within section elements and incorrect nesting of elements, among others.

Note that the report can pick up “invalid” attributes, which some frameworks automatically add to the HTML. These attributes are crucial for how the frameworks function, although they’re technically not valid HTML. As such, some projects can show up with many HTML validation errors, which are benign and are a necessary part of the framework.