-
Notifications
You must be signed in to change notification settings - Fork 332
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
fix(timeline.setoptions): make editability hierachy & settings behave correctly #700
base: master
Are you sure you want to change the base?
Conversation
I'm afraid I don' agree with this Pr. This will break the behavior intended as explained in the comments of the issue #662 (comment). If you still think this should be addressed, let's continue the thread in the issue itself. EDIT: I will look in to this PR more in depth |
Hi @yotamberk , this PR has matured significantly & I believe addresses the root cause of the behaviour complained of in #662 . It's ready for review |
a0db322
to
693d164
Compare
// TODO: in timeline.js 5.0, we should change this to not reset options from the timeline configuration. | ||
// Basically just remove the next line... | ||
this.editable = {}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the only change I'm uncertain about - Though this change is overdue, fixing this bug technically constitutes a breaking change, & possibly should be deferred until a major release?
pointItem.setParent(parent); | ||
pointItem.redraw(); | ||
assert.equal(pointItem.editable.updateTime, true); | ||
assert.equal(pointItem.editable.updateGroup, undefined); | ||
assert.equal(pointItem.editable.remove, undefined); | ||
assert.equal(pointItem.editable.updateGroup, true); | ||
assert.equal(pointItem.editable.remove, true); | ||
}); | ||
|
||
it('an editable: {updateTime} override item (with boolean option false)', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These test cases were modified to match changes made at https://github.com/visjs/vis-timeline/pull/700/files#r504386157
@yotamberk can you please review this again when you get the chance? |
cecb52d
to
527a56a
Compare
527a56a
to
0bd846d
Compare
Squash of: * fix(options.editable): propagate {editable: true} to overrideItems * fix(options): don't propagate editable=bool to editable.overrideItems
When items are selected, _updateEditStatus() is called. This forces them to refresh their editabiltiy based on a combination of `item.data` and `item.options` (`item.options is ~= to itemset.options`)
0bd846d
to
f047750
Compare
f047750
to
50db9d1
Compare
…t clear previously set props
…or v5 The behaviour in question is that if an individual item editability option is set, and different global options are set- For example: ``` timeline.ItemSet.items[0].data.editable.remove = true timeline.setOptions({editable: {updateTime: true}}) //updateTime setting is ignored here, time isn't updatable. ``` The previous behaviour meant that if any item.data.editable properties were set, then any editable properties given by timeline.options.editable, but not set explicitly by item.data.editable would be unset.
4ad1c49
to
2fe516a
Compare
I will review it in the next few days |
Thank you very much |
Fixes #662
the following fiddle demonstrates the previous behaviour
Previously, when calling
timeline.setOptions({editable: true})
, per-item overriding would implicitly be disabled, meaning thattimeline.setOptions({editable: true})
appeared to do nothing.We saw apparently inconsistent behaviour between the following:
The commit that introduced this behaviour: b2560d0
I discuss this in further detail at #662 (comment)
I'm open to comment by maintainers - if you don't believe this is a bug that needs fixing, then I understand, but I believe that this behaviour is more intuitive.