-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: When adding an item
to a list
, Append or Prepend? #discuss
#408
Comments
hey! I think that the decision needs to be influenced by how the PrependingPros
Cons
AppendingPros
Cons
Considering we could implement sorting mechanisms and manual reordering, it's possible that these cons/pros will change and even be solved. Given this context, my personal preference is appending but with manual reordering being implemented in mind so the But interesting question indeed! |
I agree with the points risen by @panoramix360 . Perhaps it's because I'm now used to it but I like the I think |
There is no doubt in my mind that my preference would be to I agree with the points raised and this is a great question, but I also think a lot has to be said for familiarity and expected behaviours. The vast majority of applications that people will already be using prepend tasks/notes/content and show 'newest first'. Task lists are the obvious ones as you mentioned @nelsonic, but also Apple Notes is a good example of this and all social media. My personal thoughts are that |
@panoramix360 thanks for your insightful feedback as always. 👌 But as we migrate the interface/experience more toward capturing "rich text" see: #141 (comment) we want the @LuchoTurtle agree that we're used to How
|
Note to anyone reading this in the future: we aren't building a "clone" or "copy" of However, as a business strategy, there's nothing "wrong" with copying a built-in To be clear, As soon as we have |
Very soon we're going to allow
people
to additems
tolist
. #356 (included in #345)So the question is: should an
item
be added tostart
of the list i.e. prepend?or should it be tacked onto the
end
of thelist
i.e. append?Currently the default behaviour is to prepend an
item
to thelist
such that the newestitem
is first:IMO: this "makes sense" because as soon as the
person
has more than a handful ofitems
,they would have to scroll to find the latest one ... 💭
However this only makes sense in the world where we are building a "Todo List" ...
Which, we are not. The "Todo List" is just one of the features we are building.
I actually think it makes more sense for the
item
to be appended to thelist
and for the interface to scroll to keep that latest
item
in the viewport.I'm very keen to hear/read your thoughts on this ... 🙏 💭
The text was updated successfully, but these errors were encountered: