
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@atlassianlabs/jql-editor
Advanced tools
This package allows consumers to render an advanced JQL editor component to enable autocomplete-assisted authoring and validation of JQL queries.
This package allows consumers to render an advanced JQL editor component to enable autocomplete-assisted authoring and validation of JQL queries.
To render the editor, the consumer must configure an autocompleteProvider, which defines callback functions used to
retrieve JQL fields, functions and values. To ease configuration, we also ship the
@atlassianlabs/jql-editor-autocomplete-rest package, which wraps these callbacks and provides simple hooks to delegate
to Jira REST API's.
A minimal configuration of the JQL editor is as follows:
import { useCallback } from 'react';
import { JQLEditorAsync as JQLEditor } from '@atlassianlabs/jql-editor';
import { useAutocompleteProvider } from '@atlassianlabs/jql-editor-autocomplete-rest';
const getInitialData = async (url: string) => {
const response = await fetch(url, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ includeCollapsedFields: true })
});
const data = response.json();
return {
jqlFields: data.visibleFieldNames,
jqlFunctions: data.visibleFunctionNames,
};
};
const getSuggestions = async (url: string) => {
const response = await fetch(url);
return response.json();
};
const MyJQLEditor = () => {
const autocompleteProvider = useAutocompleteProvider('my-app', getInitialData, getSuggestions);
const onSearch = useCallback((jql: string) => {
// Do some action on search
}, []);
return (
<JQLEditor
analyticsSource={'my-app'}
query={''}
onSearch={onSearch}
autocompleteProvider={autocompleteProvider}
locale={"en"}
/>
);
};
For app developers, please refer to the @atlassianlabs/jql-editor-connect and @atlassianlabs/jql-editor-forge
packages. Which come pre-configured with Jira autocomplete integration.
yarn add @atlassianlabs/jql-editor
There are two main use cases for the editor:
The key difference between the two is that rendering a search button may not make sense when authoring JQL, e.g. when using the JQL editor as a form input. The searching use case is documented above, here we'll discuss authoring.
Hiding the search button is as simple as not providing an onSearch prop. Instead you'll want to use onUpdate which
is triggered whenever the query is updated.
By default, the editor will automatically show any syntax errors when the user presses search. Without the search button the consumer will need to set errors to show manually.
import { useCallback, useMemo, useState } from 'react';
import { Jast, JQLParseError } from '@atlassianlabs/jql-ast';
import { JQLEditorAsync as JQLEditor, ExternalError } from '@atlassianlabs/jql-editor';
import debounce from 'lodash/debounce';
const MyJQLEditor = () => {
const [errors, setErrors] = useState<ExternalError[]>([]);
const debounceSetErrors = useMemo(() => {
// Update our errors after a 1 second debounce
return debounce((parseErrors: JQLParseError[]) => {
// Format JQL parse errors to be shown as custom error messages in the editor
const errorMessages: ExternalError[] = parseErrors.map(({ description }) => ({
message: description,
type: 'error',
}));
setErrors(errorMessages)
}, 1000);
}, [setErrors]);
const onUpdate = useCallback((jql: string, jast: Jast) => {
debounceSetErrors(jast.errors)
}, []);
return (
<JQLEditor
analyticsSource={'my-app'}
query={''}
onUpdate={onUpdate}
messages={errors}
autocompleteProvider={/* ... */}
locale={"en"}
/>
);
};
Using the same API, the editor may also show warning and info messages:
const [messages] = useState<ExternalMessage[]>([
{ type: 'error', message: `I'm an error message`} as ExternalError,
{ type: 'warning', message: `I'm a warning message`} as ExternalWarning,
{ type: 'info', message: `I'm an info message`} as ExternalInfo,
]);
return (
<JQLEditor
{/* ... */}
messages={messages}
/>
);
Its worth mentioning that messages are rendered by the priority and only a single type of messages could be present on UI at once.
So in the example above, only an error message will be rendered.
For developers outside of Atlassian looking for help, or to report issues, please make a post on the community forum . We will monitor the forums and redirect topics to the appropriate maintainers.
Copyright (c) 2021 - 2022 Atlassian and others. Apache 2.0 licensed, see LICENSE file.
FAQs
This package allows consumers to render an advanced JQL editor component to enable autocomplete-assisted authoring and validation of JQL queries.
We found that @atlassianlabs/jql-editor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.