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

UI: Add phase 1 search #8175

Merged
merged 24 commits into from
Jun 19, 2020
Merged

UI: Add phase 1 search #8175

merged 24 commits into from
Jun 19, 2020

Conversation

backspace
Copy link
Contributor

@backspace backspace commented Jun 16, 2020

This is scavenging of #7720 that doesn’t use the search endpoint. It introduces a DataCaches service so recently-updated collections don’t need to be requeried within a time period (currently a minute) or based on the current route.

A GIF of keyboard usage:
keyboard-search

I’m submitting it for review with a known bug regarding the use of the escape key while searching. There’s a sort of intermediate state where the field appears to be active but there’s no insertion caret to actually search, pressing enter causes it to become an editable field. I was able to use some manipulation in openOnClickOrTab to skip that intermediate state when entering the field but I couldn’t quite figure out how to also skip it when pressing escape. I think something will be possible with run.later or the like but in the interest of having this be part of the beta, I’m grudgingly accepting this UX annoyance.

escape-behaviour

There’s also a not-quite-bug but less-efficient aspect to the collection caching, which I have noted as a TODO.

This is an ungainly integration with the searchable mixin 😳
I’d prefer for this to be covered by automated tests but
it seems like it only half-works… the placeholder in
the field disappears with the use of keyDown but the
field doesn’t look active. Actually pressing / does
work though.
@github-actions
Copy link

github-actions bot commented Jun 16, 2020

Ember Asset Size action

As of e4e7c78

Files that got Bigger 🚨:

File raw gzip
nomad-ui.js +36.9 kB +4.38 kB
nomad-ui.css +1.92 kB +251 B

Files that stayed the same size 🤷‍:

File raw gzip
auto-import-fastboot.js 0 B 0 B
vendor.js 0 B 0 B
vendor.css 0 B 0 B

@github-actions
Copy link

github-actions bot commented Jun 16, 2020

Ember Test Audit comparison

master e4e7c78 change
passes 1354 1402 +48
failures 0 0 0
flaky 0 0 0
duration 4m 41s 505ms 5m 12s 878ms +31s 373ms

Has it always been that errors are silently swallowed?
Mysterious
With the expanded try, I found that the reason for search
only working once was that it was required to use set for
these properties, I guess because they’re used by
computed properties.
This is still unwieldly but maybe a bit more sensible now.
I’ve adapted the listener from @DingoEatingFuzz’s keyboard event-
handling here, obviating the need for ember-keyboard:
https://github.com/hashicorp/nomad/pull/8177/files#diff-eb4d61e1e080830b844012c6617c6fa2

The filtering to prevent stealing events from input fields
is adapted from here:
https://stackoverflow.com/a/4171758
This still means a query will be sent for every search, but
if we’re in a route we know has a watched collection, the
cached collection will be used.
Since the container now has align-items: center, this is
no longer needed.
This isn’t perfect as it only updates the last-fetched time
of a watched collection when a search is performed. It also
has the cache duration as 5s which is probably too short.
collectionLastFetched = {};

async fetch(modelName) {
const modelNameToRoute = {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe this could be dynamically calculated by examining routes with watchers but that seemed like overkill for this small use.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree. This quick little mapping does the job just fine.

@backspace backspace marked this pull request as ready for review June 18, 2020 19:58
Copy link
Contributor

@DingoEatingFuzz DingoEatingFuzz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So happy to see this come together! The designs for it have been gathering dust for long enough.

It'll be nice to get the namespace bug fixed for the beta but not at the expense of this missing the beta altogether, so maybe that should be a follow up PR? I'll leave that up to you.

const itemModelName = model.constructor.modelName;

if (itemModelName === 'job') {
this.router.transitionTo('jobs.job', model.name);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think if this includes the namespace query param then the second bug I noticed goes away. I believe this is already being done in the allocation row template?

@alias('dataSource.searchString') searchTerm;

fuzzySearchEnabled = true;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a nice concise way to separate out search strategies for different types ✨

collectionLastFetched = {};

async fetch(modelName) {
const modelNameToRoute = {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree. This quick little mapping does the job just fine.

const clock = sinon.useFakeTimers({
now: new Date(),
shouldAdvanceTime: true,
});
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice! I've always wanted to use this somewhere.


assert.notOk(PageLayout.navbar.search.field.isPresent);
});
});
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💯 good test coverage.

@backspace backspace added this to the 0.12.0-beta1 milestone Jun 19, 2020
@backspace
Copy link
Contributor Author

A GIF of the “search focus blackhole” @DingoEatingFuzz encountered in Chrome:

search-focus-blackhole

@github-actions
Copy link

github-actions bot commented Jan 2, 2023

I'm going to lock this pull request because it has been closed for 120 days ⏳. This helps our maintainers find and focus on the active contributions.
If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jan 2, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants