pull/3396/merge
Kazuhito Yokoi 2025-03-17 13:05:45 -04:00 committed by GitHub
commit 272a5dfb7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 15 additions and 2 deletions

View File

@ -307,6 +307,7 @@
"alreadyExists": "This node already exists"
},
"copyMessagePath": "Path copied",
"copyMessagePathForMustache": "Path copied for Mustache",
"copyMessageValue": "Value copied",
"copyMessageValue_truncated": "Truncated value copied"
},

View File

@ -307,6 +307,7 @@
"alreadyExists": "本ノードは既に存在"
},
"copyMessagePath": "パスをコピーしました",
"copyMessagePathForMustache": "Mustache向けのパスをコピーしました",
"copyMessageValue": "値をコピーしました",
"copyMessageValue_truncated": "切り捨てられた値をコピーしました"
},

View File

@ -237,12 +237,21 @@ RED.utils = (function() {
var tools = $('<span class="red-ui-debug-msg-tools"></span>').appendTo(obj);
var copyTools = $('<span class="red-ui-debug-msg-tools-copy button-group"></span>').appendTo(tools);
if (!!key) {
var mustachePath = key.replace(/\["([^\]]+)"\]/g,'.$1').replace(/\[([0-9]+)\]/g,'.$1');
var copyPath = $('<button class="red-ui-button red-ui-button-small"><i class="fa fa-terminal"></i></button>').appendTo(copyTools).on("click", function(e) {
e.preventDefault();
e.stopPropagation();
RED.clipboard.copyText(key,copyPath,"clipboard.copyMessagePath");
if ((e.ctrlKey || e.metaKey) && key !== mustachePath) {
RED.clipboard.copyText(mustachePath,copyPath,"clipboard.copyMessagePathForMustache");
} else {
RED.clipboard.copyText(key,copyPath,"clipboard.copyMessagePath");
}
})
RED.popover.tooltip(copyPath,RED._("node-red:debug.sidebar.copyPath"));
if (key !== mustachePath) {
RED.popover.tooltip(copyPath,RED._("node-red:debug.sidebar.copyPathForMustache"));
} else {
RED.popover.tooltip(copyPath,RED._("node-red:debug.sidebar.copyPath"));
}
}
var copyPayload = $('<button class="red-ui-button red-ui-button-small"><i class="fa fa-clipboard"></i></button>').appendTo(copyTools).on("click", function(e) {
e.preventDefault();

View File

@ -161,6 +161,7 @@
"filterLog": "Filter messages",
"openWindow": "Open in new window",
"copyPath": "Copy path",
"copyPathForMustache": "Copy path (Mustache path by ctrl+click)",
"copyPayload": "Copy value",
"pinPath": "Pin open",
"selectAll": "select all",

View File

@ -161,6 +161,7 @@
"filterLog": "ログのフィルタリング",
"openWindow": "新しいウィンドウで開く",
"copyPath": "パスをコピー",
"copyPathForMustache": "パスをコピー(Ctrl+クリックでMustacheパス)",
"copyPayload": "値をコピー",
"pinPath": "展開を固定",
"selectAll": "全てを選択",