mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
* Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License. Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUS-1.1 * Fix test that expected exact offset on hcl file --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Co-authored-by: Sarah Thompson <sthompson@hashicorp.com> Co-authored-by: Brian Kassouf <bkassouf@hashicorp.com>
90 lines
3.1 KiB
JavaScript
90 lines
3.1 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/* eslint-disable no-undef */
|
|
import Component from '@glimmer/component';
|
|
import { inject as service } from '@ember/service';
|
|
import { action } from '@ember/object';
|
|
import { tracked } from '@glimmer/tracking';
|
|
|
|
/**
|
|
* @module DiffVersionSelector
|
|
* DiffVersionSelector component includes a toolbar and diff view between KV 2 versions. It uses the library jsondiffpatch.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* <DiffVersionSelector @model={model}/>
|
|
* ```
|
|
* @param {object} model - model that comes from secret-v2-version
|
|
*/
|
|
|
|
export default class DiffVersionSelector extends Component {
|
|
@tracked leftSideVersionDataSelected = null;
|
|
@tracked leftSideVersionSelected = null;
|
|
@tracked rightSideVersionDataSelected = null;
|
|
@tracked rightSideVersionSelected = null;
|
|
@tracked statesMatch = false;
|
|
@tracked visualDiff = null;
|
|
@service store;
|
|
|
|
adapter = this.store.adapterFor('secret-v2-version');
|
|
|
|
constructor() {
|
|
super(...arguments);
|
|
this.createVisualDiff();
|
|
}
|
|
|
|
get leftSideDataInit() {
|
|
const string = `["${this.args.model.engineId}", "${this.args.model.id}", "${this.args.model.currentVersion}"]`;
|
|
return this.adapter
|
|
.querySecretDataByVersion(string)
|
|
.then((response) => response.data)
|
|
.catch(() => null);
|
|
}
|
|
get rightSideDataInit() {
|
|
const string = `["${this.args.model.engineId}", "${this.args.model.id}", "${this.rightSideVersionInit}"]`;
|
|
return this.adapter
|
|
.querySecretDataByVersion(string)
|
|
.then((response) => response.data)
|
|
.catch(() => null);
|
|
}
|
|
get rightSideVersionInit() {
|
|
// initial value of right side version is one less than the current version
|
|
return this.args.model.currentVersion === 1 ? 0 : this.args.model.currentVersion - 1;
|
|
}
|
|
|
|
async createVisualDiff() {
|
|
const diffpatcher = jsondiffpatch.create({});
|
|
const leftSideVersionData = this.leftSideVersionDataSelected || (await this.leftSideDataInit);
|
|
const rightSideVersionData = this.rightSideVersionDataSelected || (await this.rightSideDataInit);
|
|
const delta = diffpatcher.diff(rightSideVersionData, leftSideVersionData);
|
|
if (delta === undefined) {
|
|
this.statesMatch = true;
|
|
// params: value, replacer (all properties included), space (white space and indentation, line break, etc.)
|
|
this.visualDiff = JSON.stringify(leftSideVersionData, undefined, 2);
|
|
} else {
|
|
this.statesMatch = false;
|
|
this.visualDiff = jsondiffpatch.formatters.html.format(delta, rightSideVersionData);
|
|
}
|
|
}
|
|
|
|
@action
|
|
async selectVersion(selectedVersion, actions, side) {
|
|
const string = `["${this.args.model.engineId}", "${this.args.model.id}", "${selectedVersion}"]`;
|
|
const secretData = await this.adapter.querySecretDataByVersion(string);
|
|
if (side === 'left') {
|
|
this.leftSideVersionDataSelected = secretData.data;
|
|
this.leftSideVersionSelected = selectedVersion;
|
|
}
|
|
if (side === 'right') {
|
|
this.rightSideVersionDataSelected = secretData.data;
|
|
this.rightSideVersionSelected = selectedVersion;
|
|
}
|
|
await this.createVisualDiff();
|
|
// close dropdown menu.
|
|
actions.close();
|
|
}
|
|
}
|