TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

What if your domain model could validate the UI for free?

27 pointsby gcantialmost 11 years ago

4 comments

bshimminalmost 11 years ago
The tcomb library seems to do quite a lot, some of which might be sort of useful, but the example supplied here doesn&#x27;t really seem to support why you might use it. The code in fact just seems weird to me: if you&#x27;re having to use a try&#x2F;catch to do some really basic form validation, then obviously that&#x27;s horribly wrong... but the example below, under &quot;Further Reading&quot;, which is (I think?) proposed as the better solution, doesn&#x27;t really seem any different from how you might go about solving this problem were you not to use any library at all, except you wouldn&#x27;t have the struct stuff. Very unconvincing, if you ask me.<p>Contracts.js is quite a different approach, maybe even to an orthogonal problem, but perhaps is more interesting: <a href="https://github.com/disnet/contracts.js" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;disnet&#x2F;contracts.js</a>
couchandalmost 11 years ago
I think this looks pretty cool; I like how simple and general the last validation function is. If you&#x27;re generating the UI from the model all the better (it looks like there&#x27;s a note on this front at the bottom of the tcomb.js readme). This would be remarkably easy to do with React, and it all could be abstracted into a simple configuration framework.<p>Looks like there&#x27;s a typo in the last example: you probably want to use the Struct param in the fetch function rather than explicitly creating a User.<p>Seems like the makings of something like Bootstrap for domain models here. Neat.
评论 #8168650 未加载
评论 #8169158 未加载
marcosdumayalmost 11 years ago
&gt; What if your domain model could validate the UI for free?<p>Then your domain modeling language will be as detailed and error prone as the UI designing language, and completely unsuitable for the task. As the article exemplifies.<p>Abstraction and detail are at odds against each other. You simply can not have both.<p>Also, why verify the domain description? You must check that the UI fits the problem, not a short description of it.
keithnoizualmost 11 years ago
What if you could sell your one measly old cow for three magic beans. ;)