Closed
Bug 1000835
Opened 11 years ago
Closed 9 years ago
Make remove() eat an array of IDs for the DataStore interface
Categories
(Core :: DOM: Core & HTML, defect)
Core
DOM: Core & HTML
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: airpingu, Unassigned)
References
Details
get() can do this. Why not remove()? This can also make sure data records can be deleted transactionally.
Hope to align this to the W3C version at: http://airpingu.github.io/data-store-api/index.html
Comment 1•11 years ago
|
||
Promise remove(DataStoreKey... id, optional DOMString revisionId = "");
This is not a valid syntax for WebIDL. If we want to have an array, it must be:
Promise remove(sequence<DataStoreKey> id, optional DOMString revisionId = "");
but this doesn't follow what the get does.
Reporter | ||
Comment 2•11 years ago
|
||
So this is a webidl compiler issue?
Comment 3•11 years ago
|
||
(In reply to Gene Lian [:gene] (needinfo? encouraged) from comment #2)
> So this is a webidl compiler issue?
No, the problem is: if you call:
remove(1, 2, 'hello world');
how can the binding know if there are 3 ids (1, 2, 'hello world') or 2 ids (1, 2) and 1 revisionId ('hello world') ?
Reporter | ||
Comment 4•11 years ago
|
||
Oh! I see. Thanks for the clarification!
And I'm worrying about if we're forced to use |sequence<DataStoreKey> id| then the content has to call: |remove([1])| instead of |remove(1)| even if there is only one record to be removed. As you mentioned, it won't behave symmetrically like |get(1)|.
I start thinking "type..." is a bad design in general. It stops us adding optional parameters after it. Using "any" sounds more explicit. Platform can check its type (array or single element) to have different path. Just checked all of webidl. All the codes using "type..." is for the last argument.
Comment 5•11 years ago
|
||
(In reply to comment #4)
> Oh! I see. Thanks for the clarification!
>
> And I'm worrying about if we're forced to use |sequence<DataStoreKey> id| then
> the content has to call: |remove([1])| instead of |remove(1)| even if there is
> only one record to be removed. As you mentioned, it won't behave symmetrically
> like |get(1)|.
Yes, I don't think that would be an improvement.
> I start thinking "type..." is a bad design in general. It stops us adding
> optional parameters after it. Using "any" sounds more explicit. Platform can
> check its type (array or single element) to have different path. Just checked
> all of webidl. All the codes using "type..." is for the last argument.
This kind of feedback should go to public-script-coord. :-)
Updated•11 years ago
|
Keywords: dev-doc-needed
Updated•9 years ago
|
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → WONTFIX
Updated•9 years ago
|
Keywords: dev-doc-needed
Assignee | ||
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•