mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-02 17:08:32 +00:00
* fix: Update CodeMirror mode to use combinedmode for SingleLineEditor. This will highlight the pathparams in the QueryUrl. * Refactor: Updated url highlighting. * refactor: Improved the hinting part. * refactor: CodeEditor, MultiLineEditor, and QueryEditor to use defineCombinedCodeMirrorMode for highlighting Bruno variables instead of defineCodeMirrorBrunoVariablesMode * refactor: Updated defineCombinedCodeMirrorMode to defineCodeMirrorCombinedVariablesMode. Now the pathparams at the end of the URL is also highlighted. * refactor: Update CodeMirror mode to use defineCodeMirrorBrunoVariablesMode instead of defineCodeMirrorCombinedVariablesMode. Now the path params in the URL will be highlighted on application open. --------- Co-authored-by: Anoop M D <anoop.md1421@gmail.com>
100 lines
3.3 KiB
JavaScript
100 lines
3.3 KiB
JavaScript
import get from 'lodash/get';
|
|
|
|
let CodeMirror;
|
|
const SERVER_RENDERED = typeof navigator === 'undefined' || global['PREVENT_CODEMIRROR_RENDER'] === true;
|
|
|
|
if (!SERVER_RENDERED) {
|
|
CodeMirror = require('codemirror');
|
|
}
|
|
|
|
const pathFoundInVariables = (path, obj) => {
|
|
const value = get(obj, path);
|
|
return value !== undefined;
|
|
};
|
|
|
|
export const defineCodeMirrorBrunoVariablesMode = (variables, mode) => {
|
|
CodeMirror.defineMode('combinedmode', function (config, parserConfig) {
|
|
const variablesOverlay = {
|
|
token: function (stream) {
|
|
if (stream.match('{{', true)) {
|
|
let ch;
|
|
let word = '';
|
|
while ((ch = stream.next()) != null) {
|
|
if (ch === '}' && stream.peek() === '}') {
|
|
stream.eat('}');
|
|
const found = pathFoundInVariables(word, variables);
|
|
const status = found ? 'valid' : 'invalid';
|
|
const randomClass = `random-${(Math.random() + 1).toString(36).substring(9)}`;
|
|
return `variable-${status} ${randomClass}`;
|
|
}
|
|
word += ch;
|
|
}
|
|
}
|
|
stream.skipTo('{{') || stream.skipToEnd();
|
|
return null;
|
|
}
|
|
};
|
|
|
|
const urlPathParamsOverlay = {
|
|
token: function (stream) {
|
|
if (stream.match(':', true)) {
|
|
let ch;
|
|
let word = '';
|
|
while ((ch = stream.next()) != null) {
|
|
if (ch === '/' || ch === '?' || ch === '&' || ch === '=') {
|
|
stream.backUp(1);
|
|
const found = pathFoundInVariables(word, variables?.pathParams);
|
|
const status = found ? 'valid' : 'invalid';
|
|
const randomClass = `random-${(Math.random() + 1).toString(36).substring(9)}`;
|
|
return `variable-${status} ${randomClass}`;
|
|
}
|
|
word += ch;
|
|
}
|
|
|
|
// If we've consumed all characters and the word is not empty, it might be a path parameter at the end of the URL.
|
|
if (word) {
|
|
const found = pathFoundInVariables(word, variables?.pathParams);
|
|
const status = found ? 'valid' : 'invalid';
|
|
const randomClass = `random-${(Math.random() + 1).toString(36).substring(9)}`;
|
|
return `variable-${status} ${randomClass}`;
|
|
}
|
|
}
|
|
stream.skipTo(':') || stream.skipToEnd();
|
|
return null;
|
|
}
|
|
};
|
|
|
|
return CodeMirror.overlayMode(
|
|
CodeMirror.overlayMode(CodeMirror.getMode(config, parserConfig.backdrop || mode), variablesOverlay),
|
|
urlPathParamsOverlay
|
|
);
|
|
});
|
|
};
|
|
|
|
export const getCodeMirrorModeBasedOnContentType = (contentType, body) => {
|
|
if (typeof body === 'object') {
|
|
return 'application/ld+json';
|
|
}
|
|
if (!contentType || typeof contentType !== 'string') {
|
|
return 'application/text';
|
|
}
|
|
|
|
if (contentType.includes('json')) {
|
|
return 'application/ld+json';
|
|
} else if (contentType.includes('xml')) {
|
|
return 'application/xml';
|
|
} else if (contentType.includes('html')) {
|
|
return 'application/html';
|
|
} else if (contentType.includes('text')) {
|
|
return 'application/text';
|
|
} else if (contentType.includes('application/edn')) {
|
|
return 'application/xml';
|
|
} else if (contentType.includes('yaml')) {
|
|
return 'application/yaml';
|
|
} else if (contentType.includes('image')) {
|
|
return 'application/image';
|
|
} else {
|
|
return 'application/text';
|
|
}
|
|
};
|