Skip to content
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

Open
wants to merge 10 commits into
base: master
Choose a base branch
from

Conversation

strazto
Copy link
Contributor

@strazto strazto commented Oct 1, 2020

Fixes #662

the following fiddle demonstrates the previous behaviour

Previously, when calling timeline.setOptions({editable: true}), per-item overriding would implicitly be disabled, meaning that timeline.setOptions({editable: true}) appeared to do nothing.

We saw apparently inconsistent behaviour between the following:

options = {editable: true};

var t1 = new vis.Timeline(container1, items, options);
// Items in t1 are editable


var t2 = new vis.Timeline(container1, items, {});
t2.setOptions(options);

// items in t2 are not editable

t2.setOptions({editable: {overrideItems: true}});
// items in t2 are only now editable

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.

@yotamberk
Copy link
Member

yotamberk commented Oct 3, 2020

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

@yotamberk yotamberk closed this Oct 3, 2020
@yotamberk yotamberk reopened this Oct 3, 2020
@strazto
Copy link
Contributor Author

strazto commented Oct 12, 2020

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

@strazto strazto force-pushed the editable_retroactive branch from a0db322 to 693d164 Compare October 12, 2020 14:53
@strazto strazto marked this pull request as draft October 14, 2020 00:14
@strazto strazto marked this pull request as ready for review October 14, 2020 00:15
@strazto strazto changed the title Using timeline.setOptions({editable: true}) overrides editability for all items. fix(timeline.setoptions): editability hierachy now behaves correctly Oct 14, 2020
@strazto strazto changed the title fix(timeline.setoptions): editability hierachy now behaves correctly fix(timeline.setoptions): make editability hierachy & settings behave correctly Oct 14, 2020
Comment on lines -549 to -551
// 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 = {};
Copy link
Contributor Author

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?

Comment on lines 186 to 193
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)', () => {
Copy link
Contributor Author

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

@strazto
Copy link
Contributor Author

strazto commented Oct 24, 2020

@yotamberk can you please review this again when you get the chance?

@strazto strazto force-pushed the editable_retroactive branch 2 times, most recently from cecb52d to 527a56a Compare October 24, 2020 02:51
@strazto strazto force-pushed the editable_retroactive branch from 527a56a to 0bd846d Compare October 24, 2020 02:57
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`)
@strazto strazto force-pushed the editable_retroactive branch from 0bd846d to f047750 Compare October 24, 2020 02:59
@strazto strazto force-pushed the editable_retroactive branch from f047750 to 50db9d1 Compare October 24, 2020 03:02
…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.
@strazto strazto force-pushed the editable_retroactive branch 2 times, most recently from 4ad1c49 to 2fe516a Compare October 24, 2020 03:17
@yotamberk
Copy link
Member

I will review it in the next few days

@strazto
Copy link
Contributor Author

strazto commented Oct 24, 2020

Thank you very much

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Bug: When setting "editable:true" after initialization, items that were added previously are not editable
3 participants