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

feat: Use new search endpoint in FE and add search filter operation selection #1623

Merged
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
957c859
almost there
allisonsuarez Nov 19, 2021
9a133d6
almost done
allisonsuarez Nov 23, 2021
25b855b
FE search API correctly requests search service and responds, need to…
allisonsuarez Dec 1, 2021
fb4a504
correct mappings for resource results
allisonsuarez Dec 1, 2021
6a93b16
SEARCH IS FUNCTIONAL WITH NEW API
allisonsuarez Dec 2, 2021
480e7e7
cleanup
allisonsuarez Dec 3, 2021
88704f8
Majority of the work done for filter operation selection using new se…
kristenarmes Dec 16, 2021
507f2d3
Fixing resource specific search with filters and clear filters behavior
kristenarmes Dec 17, 2021
cc32985
Fixing js tests and betterer issues
kristenarmes Dec 18, 2021
1b05099
Fixing python test and lint/betterer
kristenarmes Dec 20, 2021
cca232b
Betterer improvements/test fixes
kristenarmes Dec 20, 2021
852817c
removed v0 because it is not needed or accesible anymore, and added u…
allisonsuarez Dec 20, 2021
06c33b2
Merge branch 'search-filter-operation-selection' of github.com:kriste…
allisonsuarez Dec 20, 2021
91d7b02
a bit of cleanup from utils, not done yet
allisonsuarez Dec 20, 2021
39ad099
lint fixes
allisonsuarez Dec 21, 2021
89bbd90
lint
allisonsuarez Dec 21, 2021
20fe151
test _transform_filters
allisonsuarez Dec 21, 2021
0c1fc6d
lint
allisonsuarez Dec 21, 2021
f0c35a3
Adding description and timestamp to dashboard mapping and adding js t…
kristenarmes Dec 21, 2021
32d5963
Addressing PR comments
kristenarmes Dec 21, 2021
7fac169
lint
kristenarmes Dec 21, 2021
e91866d
Verified that badge is primitive string type during search, cleaned u…
kristenarmes Dec 21, 2021
7467d0c
Changing the name of the config that optionally restricts filter oper…
kristenarmes Dec 22, 2021
b84387a
If a filter term is deleted, remove the category from the filter stat…
kristenarmes Dec 22, 2021
344fe03
Bumping major FE version
kristenarmes Dec 22, 2021
8eb9856
Using destructuring instead of delete for removing empty filter
kristenarmes Dec 22, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions frontend/amundsen_application/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,22 @@
import os
import sys

from flask import Flask, Blueprint
from flask import Blueprint, Flask
from flask_restful import Api

from amundsen_application.deprecations import process_deprecations
from amundsen_application.api import init_routes
from amundsen_application.api.v0 import blueprint
from amundsen_application.api.announcements.v0 import announcements_blueprint
from amundsen_application.api.issue.issue import IssueAPI, IssuesAPI
from amundsen_application.api.log.v0 import log_blueprint
from amundsen_application.api.mail.v0 import mail_blueprint
from amundsen_application.api.metadata.v0 import metadata_blueprint
from amundsen_application.api.preview.dashboard.v0 import \
dashboard_preview_blueprint
from amundsen_application.api.preview.v0 import preview_blueprint
from amundsen_application.api.quality.v0 import quality_blueprint
from amundsen_application.api.search.v0 import search_blueprint
from amundsen_application.api.preview.dashboard.v0 import dashboard_preview_blueprint
from amundsen_application.api.issue.issue import IssueAPI, IssuesAPI
from amundsen_application.api.search.v1 import search_blueprint
from amundsen_application.api.v0 import blueprint
from amundsen_application.deprecations import process_deprecations

# For customized flask use below arguments to override.

Expand Down
358 changes: 0 additions & 358 deletions frontend/amundsen_application/api/search/v0.py

This file was deleted.

Loading