-
Notifications
You must be signed in to change notification settings - Fork 885
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
Initial Drag and Drop plugin code #946
Initial Drag and Drop plugin code #946
Conversation
Signed-off-by: Ashwin Pc <[email protected]>
Awesome! Will check it out. Is there a historical reason why the plugin's name is wizard? Will it be obscure the purpose of the plugin? |
@kavilla Most of the PR is migrated over from a POC i built earlier where I called it "wizard". Since we havent settled on a final name for it and because "Drag and Drop" is not ideal name to name the interfaces in the mean time, I decided to stick with "wizard". We will anyways have to rename all the variables and interfaces in future, just saved the hassle of having to do it twice.
I dont think so, if anything, calling it "Drag and drop" might have that effect since that is just one of the features of this new experience. Also like i mentioned earlier, this is not the final name and can be treated similar to an internal name while we still deliberate on what to call it. |
Sure makes sense. From a review perspective what would be the goal of this PR since it's going into a feature branch. Looks like a good start. For me dark mode is a little bit hard to see and I believe we had an goal of not getting worse with mobile support. I know the side isn't rendering yet but I'm not sure if the view will show on a mobile screen. I guess thing to mention that I didn't see within the proposal (and maybe I should have mentioned there) what makes this a core plugin instead of an external plugin? |
<EuiEmptyPrompt | ||
iconType="visBarVertical" | ||
title={<h2>Welcome to the wizard!</h2>} | ||
body={<p>Drag some fileds onto the panel to visualize some data.</p>} |
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.
fileds
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.
Nice catch, will update
<section className="wizWorkspace"> | ||
<EuiFlexGroup className="wizCanvasControls"> | ||
<EuiFlexItem grow={false}> | ||
{/* TODO: This is the teporary view of the selected chard, should be replaced by dropdown */} |
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.
temporary
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.
Nice catch, will update
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.
nit: typos
The goal is this PR is visibility. Since it's going to eventually be merged into main, it will be easier to track the incremental progress as opposed to a single merge commit to main in future. Good callout on dark mode. I haven't prioritized it for this PR since the goal was just to migrate what we were work on into Dashboards. As for mobile support, I don't we're prioritizing that for the initial release. As for what makes this a core plugin and not an external plugin. The goal of this plugin is to eventually be the primary way to generate visualizations. So we would ideally like this to be included as a part of the core experience and not side loaded later. |
Signed-off-by: Ashwin Pc <[email protected]>
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.
Thanks for this massive change ;)
* Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]>
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.
Finally getting to this PR. Overall the approach looks good. I agree with Rocky about the wizard
naming not being ideal; have we made any headway with naming overall?
The other topic I'm interested in: what is our testing strategy? Can we start adding tests now while things are relatively simple before all features have been added and there's more complexity?
@@ -0,0 +1,129 @@ | |||
/* | |||
* SPDX-License-Identifier: Apache-2.0 |
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.
nit: this can be the new license header, right?
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 code is referenced from a similar function in visualize that has the modified header. You could argue that it is different enough to warrant the new header. But I was told that when in doubt it's better to be safe than sorry
@@ -0,0 +1,9 @@ | |||
.wizConfigPanel { | |||
background: #f0f1f3; |
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.
Is this color shared anywhere else?
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.
Not this version. I've since spoken to @btzeng and he had updated the colors to match the ones from eui. I'll be making that and some other UI fixes in a follow up PR
Not yet. @ahopp is on it though.
The next action item is adding tests. Didn't add them here because I want sure how much of this original architecture would change. All new features added from here should have tests and there is a separate issue to track adding tests to the existing code. |
* Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]>
* [Git] update PR template (#937) Update template to remove javadoc check box since we do not have any javadocs and include how to run the tests we use to verify the build. Signed-off-by: Kawika Avilla <[email protected]> * Add release notes for Dashboards 1.2.0 (#944) This is the backport PR for #944 Signed-off-by: Neumann <[email protected]> * Add versioned document support in OSD This is PR is to add versioned document support in OSD. 1. Add logic to pick up doc version from package.json and convert it to `latest` if we are on default `main` branch. 2. Refactor doc_link_service to have 3 urls groups: opensearch, opensearchDashboards, and noDocumentation. 3. Update dynamic versioned doc links and clean up unused urls 4. Fix known url bug #769 5. Add unit tests for doclinks branch name conversion Signed-off-by: Zuocheng Ding <[email protected]> * [Branding] prevent logging when config not set (#941) Out of the box, the rendering service will check the config and see the default value and log an info message saying that the branding config is invalid or not set. Everytime you refresh the browser you will get those log messages. This sets it to only log error messages if the user sets the branding config and it is invalid. Include using default messages. Signed-off-by: Kawika Avilla <[email protected]> * [Version] Increment to 2.0 (#973) Version bump from 1.2 to 2.0 Signed-off-by: Kawika Avilla <[email protected]> * Add Lychee Link Checker into OSD (#938) 1. Fix broken links in OSD 2. Generate lycheeexcude list to filter out false negative warnings from test files or external links 3. Add TODO items for internal unavaiable links 4. Integrate with doc link service change. 5. Standardize all opensearch url with `https://opensearch.org/` and add unavilable urls into noDocument list Signed-off-by: Zuocheng Ding <[email protected]> * Fix Lychee Link Checker Error (#1011) Signed-off-by: Zuocheng Ding <[email protected]> * [CI] Add tests to github workflow Add unit tests to github workflow and also creating a "bad apples" environment variable. Some unit tests just fail on the CI for hardware issues. They should be improved but step one will be calling out the bad apples. Also due to the flakiness we can cache the previous run results and only run the tests that failed. It's too random to catch with the bad apples mechanism. But still added the continue on error for unit tests because it takes so long to re-run on the CI. So instead if it does fail we automatically echo there was a failure and ask them to re-run. However, if we can get permission for a github action that can add a comment to the PR then we could automatically add to PR. Next step will be improving. Also needed to limit the amount of workers because otherwise the hardware can't handle well so then it will accidentally create conflicts. This means we get an accurate test run but it is slower on the CI. Included integration tests which worked out of the box. Included e2e tests as well but it the chrome driver for the application was different from github's chrome so to run it I just upgraded it for the test run. Not ideal, ideally we should probably set up a docker env and install the specific versions since we are now depending on github's virtual env and the dependencies they installed there. But at least this is a first pace. Signed-off-by: Kawika Avilla <[email protected]> * Add bwc tests for osd with bundle (#871) tests include the following cases: verify default page work verify advanced savings work verify filter and query work Disable eslint check Add eslint-disable comment Revise license content in plugins and support Simplify filter and query test modify test name and fix PR comment update license header and remove env files fix timestamp issue update eslint and license Particailly Resolved: opensearch-project/opensearch-build#705 Signed-off-by: Anan Zhuang <[email protected]> * Add more bwc tests for osd without bundles (#900) This PR adds the following bwc tests: 1) verify sample data work properly for bwc 2) verify timeline visualization work properly for bwc This PR also simplifies check_filter_and_query bwc test. It first removes Unique Visitors check because even fix the time interval, the number of unique visitors number is random. Then it simplifies this bwc test. add more tests in check_timeline and modify test names change one query content to make bwc tests more robust update license header add missing test and solve timestamp issue fix eslint and comments Partially Resolved: opensearch-project/opensearch-build#705 Signed-off-by: Anan Zhuang <[email protected]> * Add bwc test data for osd without bundle (#927) This PR contains 13 zipped bwc test data for osd without bundle. The data has been tested by osd-1.1 and osd-1.2. To use, here are the steps: 1)unzip the data to opensearch, for example: tar -xvf odfe-1.13.2.tar.gz You need to remove data folder first if there is one in opensearch 2)run opensearch: ./bin/opensearch 3)run dashboards: ./bin/opensearch-dashboards 4)run any cypress test Partically Resolved: opensearch-project/opensearch-build#705 Signed-off-by: Anan Zhuang <[email protected]> * Add bwc test data for osd with bundle (#940) This PR contains 13 zipped bwc test data for osd with bundle. The data has been tested by osd-1.1 and osd-1.2. To use, here are the steps: 1)unzip the data to opensearch, for example: tar -xvf odfe-1.13.2.tar.gz You need to remove data folder first if there is one in opensearch 2)run opensearch: ./bin/opensearch 3)run dashboards: ./bin/opensearch-dashboards 4)run any cypress test Besides the above manual process, we now offer a script in this PR: #931 To run bwc test using osd bundle data, use this command: ./cypress/bwctest-osd.sh -o /path/to/opensearch.tar.gz -d /path/to/opensearch-dashboards.tar.gz -b true Pls see more details in the above PR. fix data issue for eCommerse data resubmit data to fix timestamp issue Partically Resolved: opensearch-project/opensearch-build#705 Signed-off-by: Anan Zhuang <[email protected]> * Add more bwc tests for osd with bundles (#901) This PR adds the following bwc tests: 1)verify sample data work properly for bwc 2)verify timeline visualization work properly for bwc add more commands check in check_timeline and rename sample data check minimize the login time and make the tests more robust change query content to make bwc test more robust update license header solve timestamp issue fix comments and eslint Partically Resolved: opensearch-project/opensearch-build#705 Signed-off-by: Anan Zhuang <[email protected]> * [Backwards Compatibility] restore URL forwarding from legacy app Forwarding legacy app to the current format of the application. This enables the usage of stored URLs and other links that referenced the format of the application URL that mentioned the application name. Since we changed the URL forwarding we changed this value and released. So incase forks were made and depended on this legacy formatted reference of the application. It will still work. There are also references of the application. Issue resolved: #1013 Signed-off-by: Kawika Avilla <[email protected]> * [Link] Fix yarnpkg link error Issue: https://yarnpkg.com/latest.msi is unavailable now and will be rerouted to a 404 page. Add it to link checker allow list to unblock the PR process. Signed-off-by: Zuocheng Ding <[email protected]> * Use the OpenSearch Dashboards logo in the READMEs Signed-off-by: Tommy Markley <[email protected]> * Add .whitesource file to activate integration scan (#999) We already enable the access of WhiteSource integration with Github.com for this repo. However, the automatic PR of .whitesource is not created. We asked for the support from WhiteSource side and they suggested we could raise one by ourselves. This PR will also set the WhiteSource integration config mode to Local to be using the whitesource.config. Dashboards team can modify this configuration on their own to customize it. We are providing the one we had for all repos at this time. Issues Resolved opensearch-project/opensearch-build#721 * Add whitesource for to activate integration * Add links of documents for WhiteSource Signed-off-by: Zelin Hao <[email protected]> * [Build] remove legacy version check for plugin builds (#1029) Removes the SEMVAR check for external plugins. 7.9 is not relevant to the application. The semvar library was also preventing major.minor.patch.x which is the format from OpenSearch plugins. Related issue: #992 Signed-off-by: Kawika Avilla <[email protected]> * [Node 14] Upgrades Node version from 10.24.1 to 14.18.2 (#1028) * Addresses syntax changes between Node.js v10 and v14. * Bumps dependencies to address build/compatibility issues: * Bumps `@types/node` from v10.17.26 to v14.17.32 * Bumps `@elastic/good` from v8.1.1-kibana2 to v9.0.1-kibana3 * Bumps `react` from v16.12.0 to v16.14.0 * Bumps `@microsoft/api-documenter` from v7.7.2 to v7.13.65 * Bumps `@microsoft/api-extractor` from v7.7.0 to v7.18.17 * Bumps `@types/webpack` from v4.41.3 to v4.41.31 * Bumps `@types/webpack-env` from v1.15.2 to v1.16.3 * Bumps `sass-loader` from v8.0.2 to v10.2.0 * Bumps `lmdb-store` from v0.6.10 to v1.6.11 * Bumps `node-sass` from "sass/node-sass#v5" to v6.0.1 * Adds `--no-deprecation` flag for integration tests caused by `shot` which is a downstream dependency of `hapi`. * Skips flaky server metrics collector tests * The ServerMetricsCollector tests are flaky and rely on the existing v17 hapi library that Dashboards depends on. This will be upgraded for the 2.0 release along with the Node.js upgrade. (#1073) * Bumps react from 16.12 to 16.14 to resolve unmet peer dependencies, but we still need a resolution to remove the old version. * Adds transformIgnorePattern for weak-lru-cache and ordered-binary to fix unit test jest failures. * Refactors node cache to improve logging and separate databases Signed-off-by: Bishoy Boktor <[email protected]> Co-authored-by: Tommy Markley <[email protected]> Co-authored-by: Kawika Avilla <[email protected]> Co-authored-by: Ashwin Pc <[email protected]> * Add a script to run one command for all bwc tests (#931) Currently, even we have bwc tests and data, to run bwc, we need to copy and unzip data in opensearch, then run opensearch, dashboards and cypress. This script will add more automation to allow us use one command to run all the tests. Here is the cmd: ./scripts/bwctest-osd.sh -o /path/to/opensearch.tar.gz -d /path/to/opensearch-dashboards.tar.gz -v versions -b true/false -o is the path to the tested opensearch. Here we need to rename the folder to opensearch and zip it -d is the path to the tested opensearch-dashboards. Also need to rename the folder to opensearch-dashboards and zip it -v is the optional version para. You can specify one version or multiple versions like "odfe-1.1.0, osd-1.0.0". If no pass, it will run all the versions defined in the script. -b is the optional osd type para. If pass true, it will run osd bundle. If pass false, it will run osd vanilla. The default is false. update the usage section with new parameters add license header and move the script in scripts folder modify bwc test script: 1)use curl command to check the opensearch and dashboards status 2)create test groups to eliminate if clauses 3)modify var names 4)wrap each block into functions to make it more reusable 5)add more comments clean out usage on port 5601 add test command and modify checking logic fix license Partically Resolved: opensearch-project/opensearch-build#705 Signed-off-by: Anan Zhuang <[email protected]> * [Map] Remove hardcoded AWS paths Clean up temp aws paths in code base. Add a configurable flag `showRegionBlockedWarning` into map plugin level config file. Signed-off-by: Zuocheng Ding <[email protected]> * [Docs] remove invalid reference in CONVENTIONS.md (#1110) Removed missed reference in CONVENTIONS.md. Issue related: #1109 Signed-off-by: Kawika Avilla <[email protected]> * Upgrades babel, storybook, and postcss (#1104) * Upgrades dependencies to resolve react-dev-utils, browserslist, and postcss CVEs. * We have to stay on v6.3.x `@storybook` dependencies because of storybookjs/storybook#16837. 6.3.x still depends on older version of some of the `@babel` libraries. * The `autoprefixer` upgrade removes the browserslist warning during the build. * `css-loader`, `postcss-loader`, `postcss` upgrades were required to fix webpack errors. These upgrades contained a few breaking changes. * Minor version bumps to `react-router`, `react-router-dom`, and `styled-components` were done while troubleshooting bootstrap issues. Resolves #1055 Resolves #1094 Resolves #1095 Signed-off-by: Tommy Markley <[email protected]> * Bumps microsoft api-documenter and api-extractor (#1106) Resolves #1063 Signed-off-by: Tommy Markley <[email protected]> * Fixes incorrect license headers (#1131) Resolves #1130 Signed-off-by: Tommy Markley <[email protected]> * Fixes linting errors (#1115) Signed-off-by: Tommy Markley <[email protected]> * [Backwards Compatibility] update instructions in TESTING.md (#1030) fix PR comments Partially Resolved: opensearch-project/opensearch-build#705 Signed-off-by: Anan Zhuang <[email protected]> * [CI] upgrade to chromedriver 97 for github actions Github virtual env upgraded chrome: actions/runner-images#4861 Signed-off-by: Kawika Avilla <[email protected]> * Disable WhiteSource check fails on commits/PRs (#1149) * WhiteSource is not properly comparing scans against the latest changes in `main`. This prevents the need to override checks to merge PRs for those who don't have access (like the Dashboards Core members). * Cleans up the WhiteSource config file. We don't need gradle, maven, go, python, or ruby scans enabled. * Replaces the deprecated `ignoreSourceFiles` config with `fileSystemScan`. Resolves #1150 Signed-off-by: Tommy Markley <[email protected]> * Bump parse-link-header from 1.0.1 to 2.0.0 (#1108) Bumps [parse-link-header](https://github.com/thlorenz/parse-link-header) from 1.0.1 to 2.0.0. - [Release notes](https://github.com/thlorenz/parse-link-header/releases) - [Commits](thlorenz/parse-link-header@v1.0.1...v2.0.0) --- updated-dependencies: - dependency-name: parse-link-header dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Upgrades `hapi` from v17 to v20 (#1146) * Bumping 3 major versions ahead introduces many breaking changes. Hapi provides a detailed changelog: https://hapi.dev/resources/changelog * v18 notes: hapijs/hapi#3871 * v19 notes: hapijs/hapi#4017 * Bumps `raw-loader` from v3.1.0 to v4.0.2 to address a bootstrap warning. No breaking changes other than bumping Node.js to v10. * Removes the `--no-deprecation` flag for the integration tests since the newest version of hapi doesn't use the deprecated library. Resolves #1070 Resolves #1073 Resolves #1076 Resolves #1088 Resolves #1090 Signed-off-by: Tommy Markley <[email protected]> * [BUG] fix disableWelcomeScreen config (#1143) disableWelcomeScreen was erroneously removed from being exposed to browser (for testing purposes) and was not able to pass the config to disable the welcome screen showing. Issue: #1138 Signed-off-by: Kawika Avilla <[email protected]> * [Tests] configurable skip checksum verification (#1207) This enables configuring the skipping of checksum verification for integration and functional tests. The out-of-box experience enables tests to pull down an artifact of OpenSearch to run frontend tests against. However, if there was an issue with the publishing of the checksum, for example: opensearch-project/opensearch-build#1497 Then any CI for OpenSearch Dashboards is severely blocked. This lets the out-of-box experience get around this. This shouldn't be used permenantly and should be toggled off when no longer blocked. Issue resolved: #1205 Signed-off-by: Kawika Avilla <[email protected]> * Bump nanoid from 3.1.30 to 3.2.0 (#1173) Bumps [nanoid](https://github.com/ai/nanoid) from 3.1.30 to 3.2.0. - [Release notes](https://github.com/ai/nanoid/releases) - [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md) - [Commits](ai/nanoid@3.1.30...3.2.0) --- updated-dependencies: - dependency-name: nanoid dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Don't terminate the server on NodeDeprecationWarning (#1185) The last AWS SDK for Javascript that supports Node 10 (v3.45.0) emits a NodeDeprecationWarning to indicate that Node 10 is no longer supported. Without this workaround, this crashes the OSD server, so it becomes impossible to interact with other AWS services from within OSD (e.g., in a custom plugin) until the Node 14 upgrade is done. Signed-off-by: Thilo-Alexander Ginkel <[email protected]> * Removes KUI Generator and related dependencies (#1105) * KUI is deprecated and we will not be adding new components. * Removes all dependencies that are no longer used in the package. * Updates the README to reflect the deprecation path. * Removes the create and document component scripts as well as the remaining references to generator-kui. Resolves #1059 Resolves #1061 Signed-off-by: Tommy Markley <[email protected]> * Bump markdown-it from 10.0.0 to 12.3.2 (#1140) Bumps [markdown-it](https://github.com/markdown-it/markdown-it) from 10.0.0 to 12.3.2. - [Release notes](https://github.com/markdown-it/markdown-it/releases) - [Changelog](https://github.com/markdown-it/markdown-it/blob/master/CHANGELOG.md) - [Commits](markdown-it/markdown-it@10.0.0...12.3.2) --- updated-dependencies: - dependency-name: markdown-it dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix createStateContainerReactHelpers documentation (#1213) Issues Resolved: #1197 Signed-off-by: Thilo-Alexander Ginkel <[email protected]> * Bumps `node-fetch` from v2.6.1 to v2.6.7 (#1169) Resolves #1162 Signed-off-by: Tommy Markley <[email protected]> * Removes deprecated `request` and `@percy/agent` (#1113) * Addresses first set of dependencies that are upstream from `[email protected]`. There is more work to do but a webpack upgrade is required first. * Replaces usage of `request` in integration tests with `tough-cookie`. * `@percy/agent` is deprecated and is replaced by `@percy/cli`. * Bumps `follow-redirects` to address CVE. * Also removes unnecessary user management logic from functional tests. Resolves #1133 Incremental change towards addressing #1066 Signed-off-by: Tommy Markley <[email protected]> * [Bug] fix incorrect import for opensearch aggs (#1192) Incorrect import statement that was introduced here: #688 Verified other imports and the rest look fine. Issue: n/a Signed-off-by: Kawika Avilla <[email protected]> * Re-enable WhiteSource check fails on commits/PRs (#1226) * WhiteSource seems to have resolved the previous bug, and we are still able to merge even if the check fails. Signed-off-by: Tommy Markley <[email protected]> * Removes storybook package and related code (#1172) In order to address potential licensing issues as well as resolve related CVEs, all storybook code is removed. The storybook features have been broken since the fork and the work to fix everything was greater than removing it. Alternatives will be considered in the future. Resolves #1130 Resolves #1171 Signed-off-by: Tommy Markley <[email protected]> * Run build and test workflow on all branches (#1222) * Skips feature branches * Use the `.nvmrc` file for the `node` version instead of a hard-coded version. Resolves #1023 Signed-off-by: Tommy Markley <[email protected]> * Initial Drag and Drop plugin code (#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> Co-authored-by: Kawika Avilla <[email protected]> Co-authored-by: Sean Neumann <[email protected]> Co-authored-by: Zuocheng Ding <[email protected]> Co-authored-by: Anan <[email protected]> Co-authored-by: Tommy Markley <[email protected]> Co-authored-by: Zelin Hao <[email protected]> Co-authored-by: Bishoy Boktor <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thilo-Alexander Ginkel <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]>
* Initial Drag and Drop plugin code (#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]>
* [Chore] Moves Drag and Drop to new branch (#1400) * Initial Drag and Drop plugin code (#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> * [D&D] Type Service Contributions (#1402) * feat(Contributions): Simple working contributions Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Add new field from dropbox Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Working edit mode Signed-off-by: Ashwin Pc <[email protected]> * fix(Contributions): Fixes switching dropbox fields Signed-off-by: Ashwin Pc <[email protected]> * chore: Updates license headers Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Adds initial drag & drop validation Signed-off-by: Ashwin Pc <[email protected]> * feat(Dropbox): Allows multiple instances of the same field Signed-off-by: Ashwin Pc <[email protected]> * feat(Dropbox): Working reorder fields Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Working container contributions Signed-off-by: Ashwin Pc <[email protected]> * chore: clean up exports Signed-off-by: Ashwin Pc <[email protected]> * test(Contribution): Adds unit test `mergeArrays` Signed-off-by: Ashwin Pc <[email protected]> * test(TypeService): Adds plugin unit tests Signed-off-by: Ashwin Pc <[email protected]> * chore: remove redundant code Signed-off-by: Ashwin Pc <[email protected]> * test(Functional): Updates Chart types Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Refactor to use AggService and introduce metric visualization (#1734) * partial progress Signed-off-by: Ashwin Pc <[email protected]> * simle workign metric using aggShemas Signed-off-by: Ashwin Pc <[email protected]> * updated VisualizationTypeOptions to be a generic Signed-off-by: Ashwin Pc <[email protected]> * partially working metric style options Signed-off-by: Ashwin Pc <[email protected]> * all state objects are serializeable Signed-off-by: Ashwin Pc <[email protected]> * working delete and reorder Signed-off-by: Ashwin Pc <[email protected]> * chore: cleanup agg service changes Signed-off-by: Ashwin Pc <[email protected]> * Adds the data source selector and a useIndexPatterns hook (#1763) Signed-off-by: Brooke Green <[email protected]> * [D&D] Adding and editing an aggregation + metric color ranges (#1781) * edit and add agg works Signed-off-by: Ashwin Pc <[email protected]> * edit agg using draft state Signed-off-by: Ashwin Pc <[email protected]> * cleanup dropbox field icon Signed-off-by: Ashwin Pc <[email protected]> * Adds other metric style props Signed-off-by: Ashwin Pc <[email protected]> * Updated comment Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Enable basic saved object management (#1816) * [D&D] Enable basic saved object management - Create README stub for saved_objects_management plugin - Register wizard saved object loader with management plugin - Add management methods to SavedObjectsType - Add capabilities provider to wizard - Add saved wizard vis SavedObjectClass and SavedObjectLoader - Add public plugin start method partially addresses #1620 Signed-off-by: Josh Romero <[email protected]> * [Doc] Add clarifications to README for save objects management plugin Signed-off-by: Josh Romero <[email protected]> * [D&D] Adds drop validation (#1833) * edit and add agg works Signed-off-by: Ashwin Pc <[email protected]> * edit agg using draft state Signed-off-by: Ashwin Pc <[email protected]> * Adds other metric style props Signed-off-by: Ashwin Pc <[email protected]> * feat: Adds agg type validation and defaults on drop Signed-off-by: Ashwin Pc <[email protected]> * chore: refactor filter Signed-off-by: Ashwin Pc <[email protected]> * chore: updates D&D icon (#1844) Signed-off-by: Ashwin Pc <[email protected]> * Chore/remove contributions (#1843) * adds min/max validation Signed-off-by: Ashwin Pc <[email protected]> * relocated contributions Signed-off-by: Ashwin Pc <[email protected]> * Some more cleanup Signed-off-by: Ashwin Pc <[email protected]> * minor fixes Signed-off-by: Ashwin Pc <[email protected]> * one more unnecessary file Signed-off-by: Ashwin Pc <[email protected]> * fix: Seconday panel title Signed-off-by: Ashwin Pc <[email protected]> * chore: Updates Field selector (#1845) Signed-off-by: Ashwin Pc <[email protected]> * Adding breadcrumbs for drag and drop creation (#1797) Signed-off-by: Brooke Green <[email protected]> * fix(D&D): fixes reloading app (#1855) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Dropbox style and animations (#1863) * fix dropbox styles and added animations Signed-off-by: Ashwin Pc <[email protected]> * simpler usePrefersReducedMotion Signed-off-by: Ashwin Pc <[email protected]> * fix drop target animation Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Basic saving, loading, and updating (#1870) * [D&D] Enable basic saving and loading - Add `/edit` route - Sync state for saving and loading - Add setter for vizualization slice - Switch from BrowserRouter to Router - Add version to saved objects - Add savedWizardLoader to services - store visualization and style states separately - add version - update breadcrumb handling - move useSavedWizardVis to top_nav - handle savedObjectNotFound - use savedObjectLoader correctly - allow copy on save - update url and chrome on save - add type for WizardVisSavedObject fixes #1867 Signed-off-by: Josh Romero <[email protected]> * chore: Adds a few readme's (#1894) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Empty-workspace polish (#1900) * empty workspace polish Signed-off-by: kaddy645 <[email protected]> * pr update Signed-off-by: kaddy645 <[email protected]> * pr update 2 Signed-off-by: kaddy645 <[email protected]> * [D&D] Fix: Topnav updates aggregation parameters (#1905) * fix(D&D): Fixes top nav query and timerange Signed-off-by: Ashwin Pc <[email protected]> * fix(D&D): Handles topnav state update Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Add a flag in the YAML config to enable and disable the D&D plugin (#1889) Resolves Issue - #1877 Signed-off-by: Manasvini B Suryanarayana <[email protected]> * fix(Workspace): Fixes illustration and copy (#1916) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Misc fixes (#1924) * fix: minor fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: nit syntax fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: simplify useSavedWizardVis Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Enable basic embeddable panels (#1911) - add embeddable, embeddable component, embeddable factory - update `toExpression` to allow passing services - register embeddable factory in plugin setup fixes #1908 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix scss lint and available fields (#1927) * fix(Lint): fixes scss linting issues Signed-off-by: Ashwin Pc <[email protected]> * fix: Filter field types correctly Signed-off-by: Ashwin Pc <[email protected]> * fix: minor Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Add wizard saved objects to vis list (#1933) via appExtensions of alias registration fixes #1887 Signed-off-by: Josh Romero <[email protected]> * [D&D] Feature/experimental (#1934) * feat: experimental banner Signed-off-by: Ashwin Pc <[email protected]> * feat: experimental embeddable Signed-off-by: Ashwin Pc <[email protected]> * fix: experimental banner location Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Remove search/hasMatch embeddable vestiges (#1935) - removedebugging rendering - also update embeddables icon fixes #1910, #1925 Signed-off-by: Josh Romero <[email protected]> * [D&D] Refactor and cleanup embeddables (#1947) General plugin updates (#1939): - add start service getters/setters to plugin service - move setters from setup to start so they're available to embeddable Embeddable updates: - use getters instead of depending on start services in constructor - remove wizard from add panel "create" list - add correct edit paths/URLs for linking to wizard #1940 - add basic error embeddable rendering - render via ExpressionLoader instead of wizard_component #1920 - wizard_component no longer used, but updated for future use - add subscription handling for query, filter, timerange changes #1937 - fix clone/replace panel actions #1943, #1944 - fix title/description panel rendering #1921 - add inspection panel action #1936 Asset updates: - Update empty workspace illustration - Add secondary fill icon version to match new visualization icons fixes #1936, #1920, #1937, #1940, #1921, #1939, #1941, #1943, #1944 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix index pattern state and loading (#1949) Remove useIndexPattern hook in favor of useIndexPatterns fixes #1917 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix duplicate title warning (#1950) fixes #1918 Signed-off-by: Josh Romero <[email protected]> * [D&D] Adds autosave while editing aggregation (#1953) * fest: Adds autosave while editing agg Signed-off-by: Ashwin Pc <[email protected]> * fix: autosave order Signed-off-by: Ashwin Pc <[email protected]> * fix: spelling Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Josh Romero <[email protected]> * [D&D] Fixes autosave with debounce (#1965) * fix: autosave editing Signed-off-by: Ashwin Pc <[email protected]> * chore: improve workspace animation Signed-off-by: Ashwin Pc <[email protected]> * fix: show invalid field when editing Signed-off-by: Ashwin Pc <[email protected]> * fix: header offset Signed-off-by: Ashwin Pc <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/server/index.ts Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/server/types.ts Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * [D&D] Final fixes (#2071) * chore: Disable wizard by default Signed-off-by: Ashwin Pc <[email protected]> * chore: remove routes Signed-off-by: Ashwin Pc <[email protected]> * chore: remove translations Signed-off-by: Ashwin Pc <[email protected]> * chore: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: adds license to scss files Signed-off-by: Ashwin Pc <[email protected]> * chore: drop hover dark mode Signed-off-by: Ashwin Pc <[email protected]> * chore: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Initial functional tests (#2070) * fix: searchable dropdown Signed-off-by: Ashwin Pc <[email protected]> * fix: broken empty test Signed-off-by: Ashwin Pc <[email protected]> * test(FTR): Adds basic functional tests for D&D Signed-off-by: Ashwin Pc <[email protected]> * test(FTR): Adds CI group 13 to test workflow Signed-off-by: Ashwin Pc <[email protected]> * fix: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: att test to jenkinsfile Signed-off-by: Ashwin Pc <[email protected]> * chore: minor nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: downgrade redux-toolkit for plugin compatibility Signed-off-by: Ashwin Pc <[email protected]> * chore: add docker config flag Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> Co-authored-by: Brooke <[email protected]> Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Kartik Desai <[email protected]> Co-authored-by: Manasvini B Suryanarayana <[email protected]>
…pensearch-project#1966) Backport PR: opensearch-project#1966 Backport PR commit message: * [Chore] Moves Drag and Drop to new branch (opensearch-project#1400) * Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> * [D&D] Type Service Contributions (opensearch-project#1402) * feat(Contributions): Simple working contributions Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Add new field from dropbox Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Working edit mode Signed-off-by: Ashwin Pc <[email protected]> * fix(Contributions): Fixes switching dropbox fields Signed-off-by: Ashwin Pc <[email protected]> * chore: Updates license headers Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Adds initial drag & drop validation Signed-off-by: Ashwin Pc <[email protected]> * feat(Dropbox): Allows multiple instances of the same field Signed-off-by: Ashwin Pc <[email protected]> * feat(Dropbox): Working reorder fields Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Working container contributions Signed-off-by: Ashwin Pc <[email protected]> * chore: clean up exports Signed-off-by: Ashwin Pc <[email protected]> * test(Contribution): Adds unit test `mergeArrays` Signed-off-by: Ashwin Pc <[email protected]> * test(TypeService): Adds plugin unit tests Signed-off-by: Ashwin Pc <[email protected]> * chore: remove redundant code Signed-off-by: Ashwin Pc <[email protected]> * test(Functional): Updates Chart types Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Refactor to use AggService and introduce metric visualization (opensearch-project#1734) * partial progress Signed-off-by: Ashwin Pc <[email protected]> * simle workign metric using aggShemas Signed-off-by: Ashwin Pc <[email protected]> * updated VisualizationTypeOptions to be a generic Signed-off-by: Ashwin Pc <[email protected]> * partially working metric style options Signed-off-by: Ashwin Pc <[email protected]> * all state objects are serializeable Signed-off-by: Ashwin Pc <[email protected]> * working delete and reorder Signed-off-by: Ashwin Pc <[email protected]> * chore: cleanup agg service changes Signed-off-by: Ashwin Pc <[email protected]> * Adds the data source selector and a useIndexPatterns hook (opensearch-project#1763) Signed-off-by: Brooke Green <[email protected]> * [D&D] Adding and editing an aggregation + metric color ranges (opensearch-project#1781) * edit and add agg works Signed-off-by: Ashwin Pc <[email protected]> * edit agg using draft state Signed-off-by: Ashwin Pc <[email protected]> * cleanup dropbox field icon Signed-off-by: Ashwin Pc <[email protected]> * Adds other metric style props Signed-off-by: Ashwin Pc <[email protected]> * Updated comment Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Enable basic saved object management (opensearch-project#1816) * [D&D] Enable basic saved object management - Create README stub for saved_objects_management plugin - Register wizard saved object loader with management plugin - Add management methods to SavedObjectsType - Add capabilities provider to wizard - Add saved wizard vis SavedObjectClass and SavedObjectLoader - Add public plugin start method partially addresses opensearch-project#1620 Signed-off-by: Josh Romero <[email protected]> * [Doc] Add clarifications to README for save objects management plugin Signed-off-by: Josh Romero <[email protected]> * [D&D] Adds drop validation (opensearch-project#1833) * edit and add agg works Signed-off-by: Ashwin Pc <[email protected]> * edit agg using draft state Signed-off-by: Ashwin Pc <[email protected]> * Adds other metric style props Signed-off-by: Ashwin Pc <[email protected]> * feat: Adds agg type validation and defaults on drop Signed-off-by: Ashwin Pc <[email protected]> * chore: refactor filter Signed-off-by: Ashwin Pc <[email protected]> * chore: updates D&D icon (opensearch-project#1844) Signed-off-by: Ashwin Pc <[email protected]> * Chore/remove contributions (opensearch-project#1843) * adds min/max validation Signed-off-by: Ashwin Pc <[email protected]> * relocated contributions Signed-off-by: Ashwin Pc <[email protected]> * Some more cleanup Signed-off-by: Ashwin Pc <[email protected]> * minor fixes Signed-off-by: Ashwin Pc <[email protected]> * one more unnecessary file Signed-off-by: Ashwin Pc <[email protected]> * fix: Seconday panel title Signed-off-by: Ashwin Pc <[email protected]> * chore: Updates Field selector (opensearch-project#1845) Signed-off-by: Ashwin Pc <[email protected]> * Adding breadcrumbs for drag and drop creation (opensearch-project#1797) Signed-off-by: Brooke Green <[email protected]> * fix(D&D): fixes reloading app (opensearch-project#1855) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Dropbox style and animations (opensearch-project#1863) * fix dropbox styles and added animations Signed-off-by: Ashwin Pc <[email protected]> * simpler usePrefersReducedMotion Signed-off-by: Ashwin Pc <[email protected]> * fix drop target animation Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Basic saving, loading, and updating (opensearch-project#1870) * [D&D] Enable basic saving and loading - Add `/edit` route - Sync state for saving and loading - Add setter for vizualization slice - Switch from BrowserRouter to Router - Add version to saved objects - Add savedWizardLoader to services - store visualization and style states separately - add version - update breadcrumb handling - move useSavedWizardVis to top_nav - handle savedObjectNotFound - use savedObjectLoader correctly - allow copy on save - update url and chrome on save - add type for WizardVisSavedObject fixes opensearch-project#1867 Signed-off-by: Josh Romero <[email protected]> * chore: Adds a few readme's (opensearch-project#1894) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Empty-workspace polish (opensearch-project#1900) * empty workspace polish Signed-off-by: kaddy645 <[email protected]> * pr update Signed-off-by: kaddy645 <[email protected]> * pr update 2 Signed-off-by: kaddy645 <[email protected]> * [D&D] Fix: Topnav updates aggregation parameters (opensearch-project#1905) * fix(D&D): Fixes top nav query and timerange Signed-off-by: Ashwin Pc <[email protected]> * fix(D&D): Handles topnav state update Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Add a flag in the YAML config to enable and disable the D&D plugin (opensearch-project#1889) Resolves Issue - opensearch-project#1877 Signed-off-by: Manasvini B Suryanarayana <[email protected]> * fix(Workspace): Fixes illustration and copy (opensearch-project#1916) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Misc fixes (opensearch-project#1924) * fix: minor fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: nit syntax fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: simplify useSavedWizardVis Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Enable basic embeddable panels (opensearch-project#1911) - add embeddable, embeddable component, embeddable factory - update `toExpression` to allow passing services - register embeddable factory in plugin setup fixes opensearch-project#1908 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix scss lint and available fields (opensearch-project#1927) * fix(Lint): fixes scss linting issues Signed-off-by: Ashwin Pc <[email protected]> * fix: Filter field types correctly Signed-off-by: Ashwin Pc <[email protected]> * fix: minor Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Add wizard saved objects to vis list (opensearch-project#1933) via appExtensions of alias registration fixes opensearch-project#1887 Signed-off-by: Josh Romero <[email protected]> * [D&D] Feature/experimental (opensearch-project#1934) * feat: experimental banner Signed-off-by: Ashwin Pc <[email protected]> * feat: experimental embeddable Signed-off-by: Ashwin Pc <[email protected]> * fix: experimental banner location Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Remove search/hasMatch embeddable vestiges (opensearch-project#1935) - removedebugging rendering - also update embeddables icon fixes opensearch-project#1910, opensearch-project#1925 Signed-off-by: Josh Romero <[email protected]> * [D&D] Refactor and cleanup embeddables (opensearch-project#1947) General plugin updates (opensearch-project#1939): - add start service getters/setters to plugin service - move setters from setup to start so they're available to embeddable Embeddable updates: - use getters instead of depending on start services in constructor - remove wizard from add panel "create" list - add correct edit paths/URLs for linking to wizard opensearch-project#1940 - add basic error embeddable rendering - render via ExpressionLoader instead of wizard_component opensearch-project#1920 - wizard_component no longer used, but updated for future use - add subscription handling for query, filter, timerange changes opensearch-project#1937 - fix clone/replace panel actions opensearch-project#1943, opensearch-project#1944 - fix title/description panel rendering opensearch-project#1921 - add inspection panel action opensearch-project#1936 Asset updates: - Update empty workspace illustration - Add secondary fill icon version to match new visualization icons fixes opensearch-project#1936, opensearch-project#1920, opensearch-project#1937, opensearch-project#1940, opensearch-project#1921, opensearch-project#1939, opensearch-project#1941, opensearch-project#1943, opensearch-project#1944 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix index pattern state and loading (opensearch-project#1949) Remove useIndexPattern hook in favor of useIndexPatterns fixes opensearch-project#1917 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix duplicate title warning (opensearch-project#1950) fixes opensearch-project#1918 Signed-off-by: Josh Romero <[email protected]> * [D&D] Adds autosave while editing aggregation (opensearch-project#1953) * fest: Adds autosave while editing agg Signed-off-by: Ashwin Pc <[email protected]> * fix: autosave order Signed-off-by: Ashwin Pc <[email protected]> * fix: spelling Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Josh Romero <[email protected]> * [D&D] Fixes autosave with debounce (opensearch-project#1965) * fix: autosave editing Signed-off-by: Ashwin Pc <[email protected]> * chore: improve workspace animation Signed-off-by: Ashwin Pc <[email protected]> * fix: show invalid field when editing Signed-off-by: Ashwin Pc <[email protected]> * fix: header offset Signed-off-by: Ashwin Pc <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/server/index.ts Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/server/types.ts Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * [D&D] Final fixes (opensearch-project#2071) * chore: Disable wizard by default Signed-off-by: Ashwin Pc <[email protected]> * chore: remove routes Signed-off-by: Ashwin Pc <[email protected]> * chore: remove translations Signed-off-by: Ashwin Pc <[email protected]> * chore: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: adds license to scss files Signed-off-by: Ashwin Pc <[email protected]> * chore: drop hover dark mode Signed-off-by: Ashwin Pc <[email protected]> * chore: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Initial functional tests (opensearch-project#2070) * fix: searchable dropdown Signed-off-by: Ashwin Pc <[email protected]> * fix: broken empty test Signed-off-by: Ashwin Pc <[email protected]> * test(FTR): Adds basic functional tests for D&D Signed-off-by: Ashwin Pc <[email protected]> * test(FTR): Adds CI group 13 to test workflow Signed-off-by: Ashwin Pc <[email protected]> * fix: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: att test to jenkinsfile Signed-off-by: Ashwin Pc <[email protected]> * chore: minor nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: downgrade redux-toolkit for plugin compatibility Signed-off-by: Ashwin Pc <[email protected]> * chore: add docker config flag Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> Co-authored-by: Brooke <[email protected]> Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Kartik Desai <[email protected]> Co-authored-by: Manasvini B Suryanarayana <[email protected]>
Backport PR: opensearch-project#1966 Backport PR commit message: * [Chore] Moves Drag and Drop to new branch (opensearch-project#1400) * Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> * [D&D] Type Service Contributions (opensearch-project#1402) * feat(Contributions): Simple working contributions Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Add new field from dropbox Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Working edit mode Signed-off-by: Ashwin Pc <[email protected]> * fix(Contributions): Fixes switching dropbox fields Signed-off-by: Ashwin Pc <[email protected]> * chore: Updates license headers Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Adds initial drag & drop validation Signed-off-by: Ashwin Pc <[email protected]> * feat(Dropbox): Allows multiple instances of the same field Signed-off-by: Ashwin Pc <[email protected]> * feat(Dropbox): Working reorder fields Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Working container contributions Signed-off-by: Ashwin Pc <[email protected]> * chore: clean up exports Signed-off-by: Ashwin Pc <[email protected]> * test(Contribution): Adds unit test `mergeArrays` Signed-off-by: Ashwin Pc <[email protected]> * test(TypeService): Adds plugin unit tests Signed-off-by: Ashwin Pc <[email protected]> * chore: remove redundant code Signed-off-by: Ashwin Pc <[email protected]> * test(Functional): Updates Chart types Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Refactor to use AggService and introduce metric visualization (opensearch-project#1734) * partial progress Signed-off-by: Ashwin Pc <[email protected]> * simle workign metric using aggShemas Signed-off-by: Ashwin Pc <[email protected]> * updated VisualizationTypeOptions to be a generic Signed-off-by: Ashwin Pc <[email protected]> * partially working metric style options Signed-off-by: Ashwin Pc <[email protected]> * all state objects are serializeable Signed-off-by: Ashwin Pc <[email protected]> * working delete and reorder Signed-off-by: Ashwin Pc <[email protected]> * chore: cleanup agg service changes Signed-off-by: Ashwin Pc <[email protected]> * Adds the data source selector and a useIndexPatterns hook (opensearch-project#1763) Signed-off-by: Brooke Green <[email protected]> * [D&D] Adding and editing an aggregation + metric color ranges (opensearch-project#1781) * edit and add agg works Signed-off-by: Ashwin Pc <[email protected]> * edit agg using draft state Signed-off-by: Ashwin Pc <[email protected]> * cleanup dropbox field icon Signed-off-by: Ashwin Pc <[email protected]> * Adds other metric style props Signed-off-by: Ashwin Pc <[email protected]> * Updated comment Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Enable basic saved object management (opensearch-project#1816) * [D&D] Enable basic saved object management - Create README stub for saved_objects_management plugin - Register wizard saved object loader with management plugin - Add management methods to SavedObjectsType - Add capabilities provider to wizard - Add saved wizard vis SavedObjectClass and SavedObjectLoader - Add public plugin start method partially addresses opensearch-project#1620 Signed-off-by: Josh Romero <[email protected]> * [Doc] Add clarifications to README for save objects management plugin Signed-off-by: Josh Romero <[email protected]> * [D&D] Adds drop validation (opensearch-project#1833) * edit and add agg works Signed-off-by: Ashwin Pc <[email protected]> * edit agg using draft state Signed-off-by: Ashwin Pc <[email protected]> * Adds other metric style props Signed-off-by: Ashwin Pc <[email protected]> * feat: Adds agg type validation and defaults on drop Signed-off-by: Ashwin Pc <[email protected]> * chore: refactor filter Signed-off-by: Ashwin Pc <[email protected]> * chore: updates D&D icon (opensearch-project#1844) Signed-off-by: Ashwin Pc <[email protected]> * Chore/remove contributions (opensearch-project#1843) * adds min/max validation Signed-off-by: Ashwin Pc <[email protected]> * relocated contributions Signed-off-by: Ashwin Pc <[email protected]> * Some more cleanup Signed-off-by: Ashwin Pc <[email protected]> * minor fixes Signed-off-by: Ashwin Pc <[email protected]> * one more unnecessary file Signed-off-by: Ashwin Pc <[email protected]> * fix: Seconday panel title Signed-off-by: Ashwin Pc <[email protected]> * chore: Updates Field selector (opensearch-project#1845) Signed-off-by: Ashwin Pc <[email protected]> * Adding breadcrumbs for drag and drop creation (opensearch-project#1797) Signed-off-by: Brooke Green <[email protected]> * fix(D&D): fixes reloading app (opensearch-project#1855) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Dropbox style and animations (opensearch-project#1863) * fix dropbox styles and added animations Signed-off-by: Ashwin Pc <[email protected]> * simpler usePrefersReducedMotion Signed-off-by: Ashwin Pc <[email protected]> * fix drop target animation Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Basic saving, loading, and updating (opensearch-project#1870) * [D&D] Enable basic saving and loading - Add `/edit` route - Sync state for saving and loading - Add setter for vizualization slice - Switch from BrowserRouter to Router - Add version to saved objects - Add savedWizardLoader to services - store visualization and style states separately - add version - update breadcrumb handling - move useSavedWizardVis to top_nav - handle savedObjectNotFound - use savedObjectLoader correctly - allow copy on save - update url and chrome on save - add type for WizardVisSavedObject fixes opensearch-project#1867 Signed-off-by: Josh Romero <[email protected]> * chore: Adds a few readme's (opensearch-project#1894) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Empty-workspace polish (opensearch-project#1900) * empty workspace polish Signed-off-by: kaddy645 <[email protected]> * pr update Signed-off-by: kaddy645 <[email protected]> * pr update 2 Signed-off-by: kaddy645 <[email protected]> * [D&D] Fix: Topnav updates aggregation parameters (opensearch-project#1905) * fix(D&D): Fixes top nav query and timerange Signed-off-by: Ashwin Pc <[email protected]> * fix(D&D): Handles topnav state update Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Add a flag in the YAML config to enable and disable the D&D plugin (opensearch-project#1889) Resolves Issue - opensearch-project#1877 Signed-off-by: Manasvini B Suryanarayana <[email protected]> * fix(Workspace): Fixes illustration and copy (opensearch-project#1916) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Misc fixes (opensearch-project#1924) * fix: minor fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: nit syntax fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: simplify useSavedWizardVis Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Enable basic embeddable panels (opensearch-project#1911) - add embeddable, embeddable component, embeddable factory - update `toExpression` to allow passing services - register embeddable factory in plugin setup fixes opensearch-project#1908 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix scss lint and available fields (opensearch-project#1927) * fix(Lint): fixes scss linting issues Signed-off-by: Ashwin Pc <[email protected]> * fix: Filter field types correctly Signed-off-by: Ashwin Pc <[email protected]> * fix: minor Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Add wizard saved objects to vis list (opensearch-project#1933) via appExtensions of alias registration fixes opensearch-project#1887 Signed-off-by: Josh Romero <[email protected]> * [D&D] Feature/experimental (opensearch-project#1934) * feat: experimental banner Signed-off-by: Ashwin Pc <[email protected]> * feat: experimental embeddable Signed-off-by: Ashwin Pc <[email protected]> * fix: experimental banner location Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Remove search/hasMatch embeddable vestiges (opensearch-project#1935) - removedebugging rendering - also update embeddables icon fixes opensearch-project#1910, opensearch-project#1925 Signed-off-by: Josh Romero <[email protected]> * [D&D] Refactor and cleanup embeddables (opensearch-project#1947) General plugin updates (opensearch-project#1939): - add start service getters/setters to plugin service - move setters from setup to start so they're available to embeddable Embeddable updates: - use getters instead of depending on start services in constructor - remove wizard from add panel "create" list - add correct edit paths/URLs for linking to wizard opensearch-project#1940 - add basic error embeddable rendering - render via ExpressionLoader instead of wizard_component opensearch-project#1920 - wizard_component no longer used, but updated for future use - add subscription handling for query, filter, timerange changes opensearch-project#1937 - fix clone/replace panel actions opensearch-project#1943, opensearch-project#1944 - fix title/description panel rendering opensearch-project#1921 - add inspection panel action opensearch-project#1936 Asset updates: - Update empty workspace illustration - Add secondary fill icon version to match new visualization icons fixes opensearch-project#1936, opensearch-project#1920, opensearch-project#1937, opensearch-project#1940, opensearch-project#1921, opensearch-project#1939, opensearch-project#1941, opensearch-project#1943, opensearch-project#1944 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix index pattern state and loading (opensearch-project#1949) Remove useIndexPattern hook in favor of useIndexPatterns fixes opensearch-project#1917 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix duplicate title warning (opensearch-project#1950) fixes opensearch-project#1918 Signed-off-by: Josh Romero <[email protected]> * [D&D] Adds autosave while editing aggregation (opensearch-project#1953) * fest: Adds autosave while editing agg Signed-off-by: Ashwin Pc <[email protected]> * fix: autosave order Signed-off-by: Ashwin Pc <[email protected]> * fix: spelling Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Josh Romero <[email protected]> * [D&D] Fixes autosave with debounce (opensearch-project#1965) * fix: autosave editing Signed-off-by: Ashwin Pc <[email protected]> * chore: improve workspace animation Signed-off-by: Ashwin Pc <[email protected]> * fix: show invalid field when editing Signed-off-by: Ashwin Pc <[email protected]> * fix: header offset Signed-off-by: Ashwin Pc <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/server/index.ts Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/server/types.ts Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * [D&D] Final fixes (opensearch-project#2071) * chore: Disable wizard by default Signed-off-by: Ashwin Pc <[email protected]> * chore: remove routes Signed-off-by: Ashwin Pc <[email protected]> * chore: remove translations Signed-off-by: Ashwin Pc <[email protected]> * chore: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: adds license to scss files Signed-off-by: Ashwin Pc <[email protected]> * chore: drop hover dark mode Signed-off-by: Ashwin Pc <[email protected]> * chore: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Initial functional tests (opensearch-project#2070) * fix: searchable dropdown Signed-off-by: Ashwin Pc <[email protected]> * fix: broken empty test Signed-off-by: Ashwin Pc <[email protected]> * test(FTR): Adds basic functional tests for D&D Signed-off-by: Ashwin Pc <[email protected]> * test(FTR): Adds CI group 13 to test workflow Signed-off-by: Ashwin Pc <[email protected]> * fix: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: att test to jenkinsfile Signed-off-by: Ashwin Pc <[email protected]> * chore: minor nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: downgrade redux-toolkit for plugin compatibility Signed-off-by: Ashwin Pc <[email protected]> * chore: add docker config flag Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> Co-authored-by: Brooke <[email protected]> Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Kartik Desai <[email protected]> Co-authored-by: Manasvini B Suryanarayana <[email protected]>
Backport PR: opensearch-project#1966 Signed-off-by: Anan Zhuang <[email protected]> Backport PR commit message: * [Chore] Moves Drag and Drop to new branch (opensearch-project#1400) * Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> * [D&D] Type Service Contributions (opensearch-project#1402) * feat(Contributions): Simple working contributions Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Add new field from dropbox Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Working edit mode Signed-off-by: Ashwin Pc <[email protected]> * fix(Contributions): Fixes switching dropbox fields Signed-off-by: Ashwin Pc <[email protected]> * chore: Updates license headers Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Adds initial drag & drop validation Signed-off-by: Ashwin Pc <[email protected]> * feat(Dropbox): Allows multiple instances of the same field Signed-off-by: Ashwin Pc <[email protected]> * feat(Dropbox): Working reorder fields Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Working container contributions Signed-off-by: Ashwin Pc <[email protected]> * chore: clean up exports Signed-off-by: Ashwin Pc <[email protected]> * test(Contribution): Adds unit test `mergeArrays` Signed-off-by: Ashwin Pc <[email protected]> * test(TypeService): Adds plugin unit tests Signed-off-by: Ashwin Pc <[email protected]> * chore: remove redundant code Signed-off-by: Ashwin Pc <[email protected]> * test(Functional): Updates Chart types Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Refactor to use AggService and introduce metric visualization (opensearch-project#1734) * partial progress Signed-off-by: Ashwin Pc <[email protected]> * simle workign metric using aggShemas Signed-off-by: Ashwin Pc <[email protected]> * updated VisualizationTypeOptions to be a generic Signed-off-by: Ashwin Pc <[email protected]> * partially working metric style options Signed-off-by: Ashwin Pc <[email protected]> * all state objects are serializeable Signed-off-by: Ashwin Pc <[email protected]> * working delete and reorder Signed-off-by: Ashwin Pc <[email protected]> * chore: cleanup agg service changes Signed-off-by: Ashwin Pc <[email protected]> * Adds the data source selector and a useIndexPatterns hook (opensearch-project#1763) Signed-off-by: Brooke Green <[email protected]> * [D&D] Adding and editing an aggregation + metric color ranges (opensearch-project#1781) * edit and add agg works Signed-off-by: Ashwin Pc <[email protected]> * edit agg using draft state Signed-off-by: Ashwin Pc <[email protected]> * cleanup dropbox field icon Signed-off-by: Ashwin Pc <[email protected]> * Adds other metric style props Signed-off-by: Ashwin Pc <[email protected]> * Updated comment Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Enable basic saved object management (opensearch-project#1816) * [D&D] Enable basic saved object management - Create README stub for saved_objects_management plugin - Register wizard saved object loader with management plugin - Add management methods to SavedObjectsType - Add capabilities provider to wizard - Add saved wizard vis SavedObjectClass and SavedObjectLoader - Add public plugin start method partially addresses opensearch-project#1620 Signed-off-by: Josh Romero <[email protected]> * [Doc] Add clarifications to README for save objects management plugin Signed-off-by: Josh Romero <[email protected]> * [D&D] Adds drop validation (opensearch-project#1833) * edit and add agg works Signed-off-by: Ashwin Pc <[email protected]> * edit agg using draft state Signed-off-by: Ashwin Pc <[email protected]> * Adds other metric style props Signed-off-by: Ashwin Pc <[email protected]> * feat: Adds agg type validation and defaults on drop Signed-off-by: Ashwin Pc <[email protected]> * chore: refactor filter Signed-off-by: Ashwin Pc <[email protected]> * chore: updates D&D icon (opensearch-project#1844) Signed-off-by: Ashwin Pc <[email protected]> * Chore/remove contributions (opensearch-project#1843) * adds min/max validation Signed-off-by: Ashwin Pc <[email protected]> * relocated contributions Signed-off-by: Ashwin Pc <[email protected]> * Some more cleanup Signed-off-by: Ashwin Pc <[email protected]> * minor fixes Signed-off-by: Ashwin Pc <[email protected]> * one more unnecessary file Signed-off-by: Ashwin Pc <[email protected]> * fix: Seconday panel title Signed-off-by: Ashwin Pc <[email protected]> * chore: Updates Field selector (opensearch-project#1845) Signed-off-by: Ashwin Pc <[email protected]> * Adding breadcrumbs for drag and drop creation (opensearch-project#1797) Signed-off-by: Brooke Green <[email protected]> * fix(D&D): fixes reloading app (opensearch-project#1855) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Dropbox style and animations (opensearch-project#1863) * fix dropbox styles and added animations Signed-off-by: Ashwin Pc <[email protected]> * simpler usePrefersReducedMotion Signed-off-by: Ashwin Pc <[email protected]> * fix drop target animation Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Basic saving, loading, and updating (opensearch-project#1870) * [D&D] Enable basic saving and loading - Add `/edit` route - Sync state for saving and loading - Add setter for vizualization slice - Switch from BrowserRouter to Router - Add version to saved objects - Add savedWizardLoader to services - store visualization and style states separately - add version - update breadcrumb handling - move useSavedWizardVis to top_nav - handle savedObjectNotFound - use savedObjectLoader correctly - allow copy on save - update url and chrome on save - add type for WizardVisSavedObject fixes opensearch-project#1867 Signed-off-by: Josh Romero <[email protected]> * chore: Adds a few readme's (opensearch-project#1894) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Empty-workspace polish (opensearch-project#1900) * empty workspace polish Signed-off-by: kaddy645 <[email protected]> * pr update Signed-off-by: kaddy645 <[email protected]> * pr update 2 Signed-off-by: kaddy645 <[email protected]> * [D&D] Fix: Topnav updates aggregation parameters (opensearch-project#1905) * fix(D&D): Fixes top nav query and timerange Signed-off-by: Ashwin Pc <[email protected]> * fix(D&D): Handles topnav state update Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Add a flag in the YAML config to enable and disable the D&D plugin (opensearch-project#1889) Resolves Issue - opensearch-project#1877 Signed-off-by: Manasvini B Suryanarayana <[email protected]> * fix(Workspace): Fixes illustration and copy (opensearch-project#1916) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Misc fixes (opensearch-project#1924) * fix: minor fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: nit syntax fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: simplify useSavedWizardVis Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Enable basic embeddable panels (opensearch-project#1911) - add embeddable, embeddable component, embeddable factory - update `toExpression` to allow passing services - register embeddable factory in plugin setup fixes opensearch-project#1908 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix scss lint and available fields (opensearch-project#1927) * fix(Lint): fixes scss linting issues Signed-off-by: Ashwin Pc <[email protected]> * fix: Filter field types correctly Signed-off-by: Ashwin Pc <[email protected]> * fix: minor Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Add wizard saved objects to vis list (opensearch-project#1933) via appExtensions of alias registration fixes opensearch-project#1887 Signed-off-by: Josh Romero <[email protected]> * [D&D] Feature/experimental (opensearch-project#1934) * feat: experimental banner Signed-off-by: Ashwin Pc <[email protected]> * feat: experimental embeddable Signed-off-by: Ashwin Pc <[email protected]> * fix: experimental banner location Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Remove search/hasMatch embeddable vestiges (opensearch-project#1935) - removedebugging rendering - also update embeddables icon fixes opensearch-project#1910, opensearch-project#1925 Signed-off-by: Josh Romero <[email protected]> * [D&D] Refactor and cleanup embeddables (opensearch-project#1947) General plugin updates (opensearch-project#1939): - add start service getters/setters to plugin service - move setters from setup to start so they're available to embeddable Embeddable updates: - use getters instead of depending on start services in constructor - remove wizard from add panel "create" list - add correct edit paths/URLs for linking to wizard opensearch-project#1940 - add basic error embeddable rendering - render via ExpressionLoader instead of wizard_component opensearch-project#1920 - wizard_component no longer used, but updated for future use - add subscription handling for query, filter, timerange changes opensearch-project#1937 - fix clone/replace panel actions opensearch-project#1943, opensearch-project#1944 - fix title/description panel rendering opensearch-project#1921 - add inspection panel action opensearch-project#1936 Asset updates: - Update empty workspace illustration - Add secondary fill icon version to match new visualization icons fixes opensearch-project#1936, opensearch-project#1920, opensearch-project#1937, opensearch-project#1940, opensearch-project#1921, opensearch-project#1939, opensearch-project#1941, opensearch-project#1943, opensearch-project#1944 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix index pattern state and loading (opensearch-project#1949) Remove useIndexPattern hook in favor of useIndexPatterns fixes opensearch-project#1917 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix duplicate title warning (opensearch-project#1950) fixes opensearch-project#1918 Signed-off-by: Josh Romero <[email protected]> * [D&D] Adds autosave while editing aggregation (opensearch-project#1953) * fest: Adds autosave while editing agg Signed-off-by: Ashwin Pc <[email protected]> * fix: autosave order Signed-off-by: Ashwin Pc <[email protected]> * fix: spelling Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Josh Romero <[email protected]> * [D&D] Fixes autosave with debounce (opensearch-project#1965) * fix: autosave editing Signed-off-by: Ashwin Pc <[email protected]> * chore: improve workspace animation Signed-off-by: Ashwin Pc <[email protected]> * fix: show invalid field when editing Signed-off-by: Ashwin Pc <[email protected]> * fix: header offset Signed-off-by: Ashwin Pc <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/server/index.ts Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/server/types.ts Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * [D&D] Final fixes (opensearch-project#2071) * chore: Disable wizard by default Signed-off-by: Ashwin Pc <[email protected]> * chore: remove routes Signed-off-by: Ashwin Pc <[email protected]> * chore: remove translations Signed-off-by: Ashwin Pc <[email protected]> * chore: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: adds license to scss files Signed-off-by: Ashwin Pc <[email protected]> * chore: drop hover dark mode Signed-off-by: Ashwin Pc <[email protected]> * chore: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Initial functional tests (opensearch-project#2070) * fix: searchable dropdown Signed-off-by: Ashwin Pc <[email protected]> * fix: broken empty test Signed-off-by: Ashwin Pc <[email protected]> * test(FTR): Adds basic functional tests for D&D Signed-off-by: Ashwin Pc <[email protected]> * test(FTR): Adds CI group 13 to test workflow Signed-off-by: Ashwin Pc <[email protected]> * fix: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: att test to jenkinsfile Signed-off-by: Ashwin Pc <[email protected]> * chore: minor nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: downgrade redux-toolkit for plugin compatibility Signed-off-by: Ashwin Pc <[email protected]> * chore: add docker config flag Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> Co-authored-by: Brooke <[email protected]> Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Kartik Desai <[email protected]> Co-authored-by: Manasvini B Suryanarayana <[email protected]>
…2078) Backport PR: #1966 Signed-off-by: Anan Zhuang <[email protected]> Backport PR commit message: * [Chore] Moves Drag and Drop to new branch (#1400) * Initial Drag and Drop plugin code (#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> * [D&D] Type Service Contributions (#1402) * feat(Contributions): Simple working contributions Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Add new field from dropbox Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Working edit mode Signed-off-by: Ashwin Pc <[email protected]> * fix(Contributions): Fixes switching dropbox fields Signed-off-by: Ashwin Pc <[email protected]> * chore: Updates license headers Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Adds initial drag & drop validation Signed-off-by: Ashwin Pc <[email protected]> * feat(Dropbox): Allows multiple instances of the same field Signed-off-by: Ashwin Pc <[email protected]> * feat(Dropbox): Working reorder fields Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Working container contributions Signed-off-by: Ashwin Pc <[email protected]> * chore: clean up exports Signed-off-by: Ashwin Pc <[email protected]> * test(Contribution): Adds unit test `mergeArrays` Signed-off-by: Ashwin Pc <[email protected]> * test(TypeService): Adds plugin unit tests Signed-off-by: Ashwin Pc <[email protected]> * chore: remove redundant code Signed-off-by: Ashwin Pc <[email protected]> * test(Functional): Updates Chart types Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Refactor to use AggService and introduce metric visualization (#1734) * partial progress Signed-off-by: Ashwin Pc <[email protected]> * simle workign metric using aggShemas Signed-off-by: Ashwin Pc <[email protected]> * updated VisualizationTypeOptions to be a generic Signed-off-by: Ashwin Pc <[email protected]> * partially working metric style options Signed-off-by: Ashwin Pc <[email protected]> * all state objects are serializeable Signed-off-by: Ashwin Pc <[email protected]> * working delete and reorder Signed-off-by: Ashwin Pc <[email protected]> * chore: cleanup agg service changes Signed-off-by: Ashwin Pc <[email protected]> * Adds the data source selector and a useIndexPatterns hook (#1763) Signed-off-by: Brooke Green <[email protected]> * [D&D] Adding and editing an aggregation + metric color ranges (#1781) * edit and add agg works Signed-off-by: Ashwin Pc <[email protected]> * edit agg using draft state Signed-off-by: Ashwin Pc <[email protected]> * cleanup dropbox field icon Signed-off-by: Ashwin Pc <[email protected]> * Adds other metric style props Signed-off-by: Ashwin Pc <[email protected]> * Updated comment Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Enable basic saved object management (#1816) * [D&D] Enable basic saved object management - Create README stub for saved_objects_management plugin - Register wizard saved object loader with management plugin - Add management methods to SavedObjectsType - Add capabilities provider to wizard - Add saved wizard vis SavedObjectClass and SavedObjectLoader - Add public plugin start method partially addresses #1620 Signed-off-by: Josh Romero <[email protected]> * [Doc] Add clarifications to README for save objects management plugin Signed-off-by: Josh Romero <[email protected]> * [D&D] Adds drop validation (#1833) * edit and add agg works Signed-off-by: Ashwin Pc <[email protected]> * edit agg using draft state Signed-off-by: Ashwin Pc <[email protected]> * Adds other metric style props Signed-off-by: Ashwin Pc <[email protected]> * feat: Adds agg type validation and defaults on drop Signed-off-by: Ashwin Pc <[email protected]> * chore: refactor filter Signed-off-by: Ashwin Pc <[email protected]> * chore: updates D&D icon (#1844) Signed-off-by: Ashwin Pc <[email protected]> * Chore/remove contributions (#1843) * adds min/max validation Signed-off-by: Ashwin Pc <[email protected]> * relocated contributions Signed-off-by: Ashwin Pc <[email protected]> * Some more cleanup Signed-off-by: Ashwin Pc <[email protected]> * minor fixes Signed-off-by: Ashwin Pc <[email protected]> * one more unnecessary file Signed-off-by: Ashwin Pc <[email protected]> * fix: Seconday panel title Signed-off-by: Ashwin Pc <[email protected]> * chore: Updates Field selector (#1845) Signed-off-by: Ashwin Pc <[email protected]> * Adding breadcrumbs for drag and drop creation (#1797) Signed-off-by: Brooke Green <[email protected]> * fix(D&D): fixes reloading app (#1855) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Dropbox style and animations (#1863) * fix dropbox styles and added animations Signed-off-by: Ashwin Pc <[email protected]> * simpler usePrefersReducedMotion Signed-off-by: Ashwin Pc <[email protected]> * fix drop target animation Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Basic saving, loading, and updating (#1870) * [D&D] Enable basic saving and loading - Add `/edit` route - Sync state for saving and loading - Add setter for vizualization slice - Switch from BrowserRouter to Router - Add version to saved objects - Add savedWizardLoader to services - store visualization and style states separately - add version - update breadcrumb handling - move useSavedWizardVis to top_nav - handle savedObjectNotFound - use savedObjectLoader correctly - allow copy on save - update url and chrome on save - add type for WizardVisSavedObject fixes #1867 Signed-off-by: Josh Romero <[email protected]> * chore: Adds a few readme's (#1894) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Empty-workspace polish (#1900) * empty workspace polish Signed-off-by: kaddy645 <[email protected]> * pr update Signed-off-by: kaddy645 <[email protected]> * pr update 2 Signed-off-by: kaddy645 <[email protected]> * [D&D] Fix: Topnav updates aggregation parameters (#1905) * fix(D&D): Fixes top nav query and timerange Signed-off-by: Ashwin Pc <[email protected]> * fix(D&D): Handles topnav state update Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Add a flag in the YAML config to enable and disable the D&D plugin (#1889) Resolves Issue - #1877 Signed-off-by: Manasvini B Suryanarayana <[email protected]> * fix(Workspace): Fixes illustration and copy (#1916) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Misc fixes (#1924) * fix: minor fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: nit syntax fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: simplify useSavedWizardVis Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Enable basic embeddable panels (#1911) - add embeddable, embeddable component, embeddable factory - update `toExpression` to allow passing services - register embeddable factory in plugin setup fixes #1908 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix scss lint and available fields (#1927) * fix(Lint): fixes scss linting issues Signed-off-by: Ashwin Pc <[email protected]> * fix: Filter field types correctly Signed-off-by: Ashwin Pc <[email protected]> * fix: minor Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Add wizard saved objects to vis list (#1933) via appExtensions of alias registration fixes #1887 Signed-off-by: Josh Romero <[email protected]> * [D&D] Feature/experimental (#1934) * feat: experimental banner Signed-off-by: Ashwin Pc <[email protected]> * feat: experimental embeddable Signed-off-by: Ashwin Pc <[email protected]> * fix: experimental banner location Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Remove search/hasMatch embeddable vestiges (#1935) - removedebugging rendering - also update embeddables icon fixes #1910, #1925 Signed-off-by: Josh Romero <[email protected]> * [D&D] Refactor and cleanup embeddables (#1947) General plugin updates (#1939): - add start service getters/setters to plugin service - move setters from setup to start so they're available to embeddable Embeddable updates: - use getters instead of depending on start services in constructor - remove wizard from add panel "create" list - add correct edit paths/URLs for linking to wizard #1940 - add basic error embeddable rendering - render via ExpressionLoader instead of wizard_component #1920 - wizard_component no longer used, but updated for future use - add subscription handling for query, filter, timerange changes #1937 - fix clone/replace panel actions #1943, #1944 - fix title/description panel rendering #1921 - add inspection panel action #1936 Asset updates: - Update empty workspace illustration - Add secondary fill icon version to match new visualization icons fixes #1936, #1920, #1937, #1940, #1921, #1939, #1941, #1943, #1944 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix index pattern state and loading (#1949) Remove useIndexPattern hook in favor of useIndexPatterns fixes #1917 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix duplicate title warning (#1950) fixes #1918 Signed-off-by: Josh Romero <[email protected]> * [D&D] Adds autosave while editing aggregation (#1953) * fest: Adds autosave while editing agg Signed-off-by: Ashwin Pc <[email protected]> * fix: autosave order Signed-off-by: Ashwin Pc <[email protected]> * fix: spelling Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Josh Romero <[email protected]> * [D&D] Fixes autosave with debounce (#1965) * fix: autosave editing Signed-off-by: Ashwin Pc <[email protected]> * chore: improve workspace animation Signed-off-by: Ashwin Pc <[email protected]> * fix: show invalid field when editing Signed-off-by: Ashwin Pc <[email protected]> * fix: header offset Signed-off-by: Ashwin Pc <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/server/index.ts Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/server/types.ts Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * [D&D] Final fixes (#2071) * chore: Disable wizard by default Signed-off-by: Ashwin Pc <[email protected]> * chore: remove routes Signed-off-by: Ashwin Pc <[email protected]> * chore: remove translations Signed-off-by: Ashwin Pc <[email protected]> * chore: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: adds license to scss files Signed-off-by: Ashwin Pc <[email protected]> * chore: drop hover dark mode Signed-off-by: Ashwin Pc <[email protected]> * chore: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Initial functional tests (#2070) * fix: searchable dropdown Signed-off-by: Ashwin Pc <[email protected]> * fix: broken empty test Signed-off-by: Ashwin Pc <[email protected]> * test(FTR): Adds basic functional tests for D&D Signed-off-by: Ashwin Pc <[email protected]> * test(FTR): Adds CI group 13 to test workflow Signed-off-by: Ashwin Pc <[email protected]> * fix: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: att test to jenkinsfile Signed-off-by: Ashwin Pc <[email protected]> * chore: minor nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: downgrade redux-toolkit for plugin compatibility Signed-off-by: Ashwin Pc <[email protected]> * chore: add docker config flag Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> Co-authored-by: Brooke <[email protected]> Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Kartik Desai <[email protected]> Co-authored-by: Manasvini B Suryanarayana <[email protected]> Co-authored-by: Ashwin P Chandran <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> Co-authored-by: Brooke <[email protected]> Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Kartik Desai <[email protected]> Co-authored-by: Manasvini B Suryanarayana <[email protected]>
…pensearch-project#2078) Backport PR: opensearch-project#1966 Signed-off-by: Anan Zhuang <[email protected]> Backport PR commit message: * [Chore] Moves Drag and Drop to new branch (opensearch-project#1400) * Initial Drag and Drop plugin code (opensearch-project#946) * Initial Drag and Drop plugin code Signed-off-by: Ashwin Pc <[email protected]> * Adds state management to Drag and Drop Signed-off-by: Ashwin Pc <[email protected]> * Moves Drag and Drop to create visualization menu Signed-off-by: Ashwin Pc <[email protected]> * Field Search in Data panel (opensearch-project#995) Add ability to search on index fields Signed-off-by: Abbas Hussain <[email protected]> * Adds initial type service (opensearch-project#1260) Signed-off-by: Ashwin Pc <[email protected]> * chore: updates viz modal snapshot Signed-off-by: Ashwin Pc <[email protected]> * fix(License): Fixes license headers Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> * [D&D] Type Service Contributions (opensearch-project#1402) * feat(Contributions): Simple working contributions Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Add new field from dropbox Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Working edit mode Signed-off-by: Ashwin Pc <[email protected]> * fix(Contributions): Fixes switching dropbox fields Signed-off-by: Ashwin Pc <[email protected]> * chore: Updates license headers Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Adds initial drag & drop validation Signed-off-by: Ashwin Pc <[email protected]> * feat(Dropbox): Allows multiple instances of the same field Signed-off-by: Ashwin Pc <[email protected]> * feat(Dropbox): Working reorder fields Signed-off-by: Ashwin Pc <[email protected]> * feat(Contributions): Working container contributions Signed-off-by: Ashwin Pc <[email protected]> * chore: clean up exports Signed-off-by: Ashwin Pc <[email protected]> * test(Contribution): Adds unit test `mergeArrays` Signed-off-by: Ashwin Pc <[email protected]> * test(TypeService): Adds plugin unit tests Signed-off-by: Ashwin Pc <[email protected]> * chore: remove redundant code Signed-off-by: Ashwin Pc <[email protected]> * test(Functional): Updates Chart types Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Refactor to use AggService and introduce metric visualization (opensearch-project#1734) * partial progress Signed-off-by: Ashwin Pc <[email protected]> * simle workign metric using aggShemas Signed-off-by: Ashwin Pc <[email protected]> * updated VisualizationTypeOptions to be a generic Signed-off-by: Ashwin Pc <[email protected]> * partially working metric style options Signed-off-by: Ashwin Pc <[email protected]> * all state objects are serializeable Signed-off-by: Ashwin Pc <[email protected]> * working delete and reorder Signed-off-by: Ashwin Pc <[email protected]> * chore: cleanup agg service changes Signed-off-by: Ashwin Pc <[email protected]> * Adds the data source selector and a useIndexPatterns hook (opensearch-project#1763) Signed-off-by: Brooke Green <[email protected]> * [D&D] Adding and editing an aggregation + metric color ranges (opensearch-project#1781) * edit and add agg works Signed-off-by: Ashwin Pc <[email protected]> * edit agg using draft state Signed-off-by: Ashwin Pc <[email protected]> * cleanup dropbox field icon Signed-off-by: Ashwin Pc <[email protected]> * Adds other metric style props Signed-off-by: Ashwin Pc <[email protected]> * Updated comment Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Enable basic saved object management (opensearch-project#1816) * [D&D] Enable basic saved object management - Create README stub for saved_objects_management plugin - Register wizard saved object loader with management plugin - Add management methods to SavedObjectsType - Add capabilities provider to wizard - Add saved wizard vis SavedObjectClass and SavedObjectLoader - Add public plugin start method partially addresses opensearch-project#1620 Signed-off-by: Josh Romero <[email protected]> * [Doc] Add clarifications to README for save objects management plugin Signed-off-by: Josh Romero <[email protected]> * [D&D] Adds drop validation (opensearch-project#1833) * edit and add agg works Signed-off-by: Ashwin Pc <[email protected]> * edit agg using draft state Signed-off-by: Ashwin Pc <[email protected]> * Adds other metric style props Signed-off-by: Ashwin Pc <[email protected]> * feat: Adds agg type validation and defaults on drop Signed-off-by: Ashwin Pc <[email protected]> * chore: refactor filter Signed-off-by: Ashwin Pc <[email protected]> * chore: updates D&D icon (opensearch-project#1844) Signed-off-by: Ashwin Pc <[email protected]> * Chore/remove contributions (opensearch-project#1843) * adds min/max validation Signed-off-by: Ashwin Pc <[email protected]> * relocated contributions Signed-off-by: Ashwin Pc <[email protected]> * Some more cleanup Signed-off-by: Ashwin Pc <[email protected]> * minor fixes Signed-off-by: Ashwin Pc <[email protected]> * one more unnecessary file Signed-off-by: Ashwin Pc <[email protected]> * fix: Seconday panel title Signed-off-by: Ashwin Pc <[email protected]> * chore: Updates Field selector (opensearch-project#1845) Signed-off-by: Ashwin Pc <[email protected]> * Adding breadcrumbs for drag and drop creation (opensearch-project#1797) Signed-off-by: Brooke Green <[email protected]> * fix(D&D): fixes reloading app (opensearch-project#1855) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Dropbox style and animations (opensearch-project#1863) * fix dropbox styles and added animations Signed-off-by: Ashwin Pc <[email protected]> * simpler usePrefersReducedMotion Signed-off-by: Ashwin Pc <[email protected]> * fix drop target animation Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Basic saving, loading, and updating (opensearch-project#1870) * [D&D] Enable basic saving and loading - Add `/edit` route - Sync state for saving and loading - Add setter for vizualization slice - Switch from BrowserRouter to Router - Add version to saved objects - Add savedWizardLoader to services - store visualization and style states separately - add version - update breadcrumb handling - move useSavedWizardVis to top_nav - handle savedObjectNotFound - use savedObjectLoader correctly - allow copy on save - update url and chrome on save - add type for WizardVisSavedObject fixes opensearch-project#1867 Signed-off-by: Josh Romero <[email protected]> * chore: Adds a few readme's (opensearch-project#1894) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Empty-workspace polish (opensearch-project#1900) * empty workspace polish Signed-off-by: kaddy645 <[email protected]> * pr update Signed-off-by: kaddy645 <[email protected]> * pr update 2 Signed-off-by: kaddy645 <[email protected]> * [D&D] Fix: Topnav updates aggregation parameters (opensearch-project#1905) * fix(D&D): Fixes top nav query and timerange Signed-off-by: Ashwin Pc <[email protected]> * fix(D&D): Handles topnav state update Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Add a flag in the YAML config to enable and disable the D&D plugin (opensearch-project#1889) Resolves Issue - opensearch-project#1877 Signed-off-by: Manasvini B Suryanarayana <[email protected]> * fix(Workspace): Fixes illustration and copy (opensearch-project#1916) Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Misc fixes (opensearch-project#1924) * fix: minor fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: nit syntax fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: simplify useSavedWizardVis Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Enable basic embeddable panels (opensearch-project#1911) - add embeddable, embeddable component, embeddable factory - update `toExpression` to allow passing services - register embeddable factory in plugin setup fixes opensearch-project#1908 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix scss lint and available fields (opensearch-project#1927) * fix(Lint): fixes scss linting issues Signed-off-by: Ashwin Pc <[email protected]> * fix: Filter field types correctly Signed-off-by: Ashwin Pc <[email protected]> * fix: minor Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Add wizard saved objects to vis list (opensearch-project#1933) via appExtensions of alias registration fixes opensearch-project#1887 Signed-off-by: Josh Romero <[email protected]> * [D&D] Feature/experimental (opensearch-project#1934) * feat: experimental banner Signed-off-by: Ashwin Pc <[email protected]> * feat: experimental embeddable Signed-off-by: Ashwin Pc <[email protected]> * fix: experimental banner location Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Remove search/hasMatch embeddable vestiges (opensearch-project#1935) - removedebugging rendering - also update embeddables icon fixes opensearch-project#1910, opensearch-project#1925 Signed-off-by: Josh Romero <[email protected]> * [D&D] Refactor and cleanup embeddables (opensearch-project#1947) General plugin updates (opensearch-project#1939): - add start service getters/setters to plugin service - move setters from setup to start so they're available to embeddable Embeddable updates: - use getters instead of depending on start services in constructor - remove wizard from add panel "create" list - add correct edit paths/URLs for linking to wizard opensearch-project#1940 - add basic error embeddable rendering - render via ExpressionLoader instead of wizard_component opensearch-project#1920 - wizard_component no longer used, but updated for future use - add subscription handling for query, filter, timerange changes opensearch-project#1937 - fix clone/replace panel actions opensearch-project#1943, opensearch-project#1944 - fix title/description panel rendering opensearch-project#1921 - add inspection panel action opensearch-project#1936 Asset updates: - Update empty workspace illustration - Add secondary fill icon version to match new visualization icons fixes opensearch-project#1936, opensearch-project#1920, opensearch-project#1937, opensearch-project#1940, opensearch-project#1921, opensearch-project#1939, opensearch-project#1941, opensearch-project#1943, opensearch-project#1944 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix index pattern state and loading (opensearch-project#1949) Remove useIndexPattern hook in favor of useIndexPatterns fixes opensearch-project#1917 Signed-off-by: Josh Romero <[email protected]> * [D&D] Fix duplicate title warning (opensearch-project#1950) fixes opensearch-project#1918 Signed-off-by: Josh Romero <[email protected]> * [D&D] Adds autosave while editing aggregation (opensearch-project#1953) * fest: Adds autosave while editing agg Signed-off-by: Ashwin Pc <[email protected]> * fix: autosave order Signed-off-by: Ashwin Pc <[email protected]> * fix: spelling Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Josh Romero <[email protected]> * [D&D] Fixes autosave with debounce (opensearch-project#1965) * fix: autosave editing Signed-off-by: Ashwin Pc <[email protected]> * chore: improve workspace animation Signed-off-by: Ashwin Pc <[email protected]> * fix: show invalid field when editing Signed-off-by: Ashwin Pc <[email protected]> * fix: header offset Signed-off-by: Ashwin Pc <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/server/index.ts Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/server/types.ts Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/wizard/README.md Co-authored-by: Josh Romero <[email protected]> * Update src/plugins/saved_objects_management/README.md Co-authored-by: Josh Romero <[email protected]> * [D&D] Final fixes (opensearch-project#2071) * chore: Disable wizard by default Signed-off-by: Ashwin Pc <[email protected]> * chore: remove routes Signed-off-by: Ashwin Pc <[email protected]> * chore: remove translations Signed-off-by: Ashwin Pc <[email protected]> * chore: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: adds license to scss files Signed-off-by: Ashwin Pc <[email protected]> * chore: drop hover dark mode Signed-off-by: Ashwin Pc <[email protected]> * chore: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * [D&D] Initial functional tests (opensearch-project#2070) * fix: searchable dropdown Signed-off-by: Ashwin Pc <[email protected]> * fix: broken empty test Signed-off-by: Ashwin Pc <[email protected]> * test(FTR): Adds basic functional tests for D&D Signed-off-by: Ashwin Pc <[email protected]> * test(FTR): Adds CI group 13 to test workflow Signed-off-by: Ashwin Pc <[email protected]> * fix: nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: att test to jenkinsfile Signed-off-by: Ashwin Pc <[email protected]> * chore: minor nit fixes Signed-off-by: Ashwin Pc <[email protected]> * chore: downgrade redux-toolkit for plugin compatibility Signed-off-by: Ashwin Pc <[email protected]> * chore: add docker config flag Signed-off-by: Ashwin Pc <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> Co-authored-by: Brooke <[email protected]> Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Kartik Desai <[email protected]> Co-authored-by: Manasvini B Suryanarayana <[email protected]> Co-authored-by: Ashwin P Chandran <[email protected]> Co-authored-by: Abbas Hussain <[email protected]> Co-authored-by: Brooke <[email protected]> Co-authored-by: Josh Romero <[email protected]> Co-authored-by: Kartik Desai <[email protected]> Co-authored-by: Manasvini B Suryanarayana <[email protected]>
Signed-off-by: Ashwin Pc [email protected]
Description
Initial commit for the drag and drop experience.
Screenshot
Issues Resolved
#896
Check List