Skip to content

Commit

Permalink
[FieldFormatters] Add support for rawValue in url label (elastic#204192)
Browse files Browse the repository at this point in the history
## Summary

This PR adds support for ``{{rawValue}}`` in url label.

Closes: elastic#188973
  • Loading branch information
kowalczyk-krzysztof authored Dec 13, 2024
1 parent 42693ca commit f0d3a44
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/plugins/field_formats/common/converters/url.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,14 +139,22 @@ describe('UrlFormat', () => {
expect(url.convert('url', TEXT_CONTEXT_TYPE)).toBe('external url');
});

test('can use the raw value', () => {
test('can use the raw value with {{value}}', () => {
const url = new UrlFormat({
labelTemplate: 'external {{value}}',
});

expect(url.convert('url?', TEXT_CONTEXT_TYPE)).toBe('external url?');
});

test('can use the raw value with {{rawValue}}', () => {
const url = new UrlFormat({
labelTemplate: 'external {{rawValue}}',
});

expect(url.convert('url?', TEXT_CONTEXT_TYPE)).toBe('external url?');
});

test('can use the url', () => {
const url = new UrlFormat({
urlTemplate: 'http://google.com/{{value}}',
Expand Down
1 change: 1 addition & 0 deletions src/plugins/field_formats/common/converters/url.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export class UrlFormat extends FieldFormat {
return this.compileTemplate(template)({
value,
url,
rawValue: value,
});
}

Expand Down

0 comments on commit f0d3a44

Please sign in to comment.