Skip to content
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

feat: implement comment shortcut #155

Merged
merged 4 commits into from
Jan 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Index page
this docs folder contains the documentation for the project.


## Useful links
Monaco-editor actions: https://stackoverflow.com/questions/64430041/get-a-list-of-monaco-commands-actions-ids
4 changes: 4 additions & 0 deletions src/common/monaco/lexerRules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,5 +179,9 @@ export const search = {
{ open: `'`, close: `'` },
{ open: '"', close: '"' },
],
comments: {
lineComment: '//',
blockComment: ['/*', '*/'],
},
},
};
7 changes: 5 additions & 2 deletions src/common/monaco/tokenlizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,19 +134,22 @@ const replaceTripleQuotes = (value: string) =>
value
.replace(/'''(.*?)'''/gs, (_, match) => JSON.stringify(match))
.replace(/"""(.*?)"""/gs, (_, match) => JSON.stringify(match));
const replaceComments = (value: string) => value.replace(/\/\/.*/g, '').trim();

export const transformQDSL = ({ path, qdsl }: Pick<SearchAction, 'path' | 'qdsl'>) => {
try {
const puredDsl = replaceTripleQuotes(replaceComments(qdsl));
const bulkAction = path.includes('_bulk');
if (bulkAction) {
const bulkQdsl = qdsl
const bulkQdsl = puredDsl
.split('\n')
.map(line => JSON.stringify(JSON5.parse(line)))
.join('\n');
return `${bulkQdsl}\n`;
}
console.log('qdsl', replaceComments(qdsl).trim());

return qdsl ? JSON.stringify(JSON5.parse(replaceTripleQuotes(qdsl)), null, 2) : undefined;
return puredDsl ? JSON.stringify(JSON5.parse(puredDsl), null, 2) : undefined;
} catch (err) {
throw new CustomError(400, (err as Error).message);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/VersionDetect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const getLatestReleaseInfo = async (): Promise<{
return { version: data.tag_name, assets };
};
const getLatestLink = async () => {
return 'https://github.com/geek-fun/dockit/releases';
return 'https://dockit.geekfun.club/download.html';
};

onMounted(async () => {
Expand Down
34 changes: 25 additions & 9 deletions src/views/editor/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ const displayEditorRef = ref();

let executeDecorations: Array<Decoration | string> = [];
let currentAction: SearchAction | undefined = undefined;
let saveInterval: NodeJS.Timeout;

const refreshActionMarks = (editor: Editor, searchTokens: SearchAction[]) => {
const freshDecorations = getActionMarksDecorations(searchTokens);
Expand Down Expand Up @@ -258,6 +259,11 @@ const setupQueryEditor = (code: string) => {
}
});

// comments/uncomment line or block
queryEditor.addCommand(monaco.KeyMod.CtrlCmd | monaco.KeyCode.Slash, () => {
queryEditor!.trigger('keyboard', 'editor.action.commentLine', {});
});

// Auto indent current request
queryEditor.addCommand(monaco.KeyMod.CtrlCmd | monaco.KeyCode.KeyI, () => {
const { position } = getAction(queryEditor!.getPosition()) || {};
Expand Down Expand Up @@ -331,7 +337,7 @@ const setupQueryEditor = (code: string) => {
});

// Open the documentation for the current action
queryEditor.addCommand(monaco.KeyMod.CtrlCmd | monaco.KeyCode.Slash, () => {
queryEditor.addCommand(monaco.KeyMod.CtrlCmd | monaco.KeyCode.KeyD, () => {
const docLink = getActionApiDoc(
EngineType.ELASTICSEARCH,
'current',
Expand All @@ -341,6 +347,23 @@ const setupQueryEditor = (code: string) => {
open(docLink);
}
});

// Set up autosave interval
saveInterval = setInterval(async () => {
const model = queryEditor?.getModel();
if (!model) {
return;
}
const position = queryEditor?.getPosition();
const currentContent = model.getValue();

if (currentContent !== fileContent.value) {
await saveSourceToFile(currentContent);
if (position) {
queryEditor?.setPosition(position);
}
}
}, 5000);
};

const queryEditorSize = ref(1);
Expand All @@ -361,14 +384,6 @@ const saveFileListener = async () => {
});
};

watch(
() => fileContent.value,
async () => {
if (queryEditor) {
queryEditor.setValue(fileContent.value);
}
},
);
onMounted(async () => {
await readSourceFromFile(route.params.filePath as string);
const code = fileContent.value;
Expand All @@ -383,6 +398,7 @@ onUnmounted(() => {
if (unlistenSaveFile?.value) {
unlistenSaveFile.value();
}
clearInterval(saveInterval);
});
</script>

Expand Down
Loading