マスクコントロール内にコピーボタンを表示する機能について解説します。
コピーボタンを表示する方法
コピーボタンをクリックすると、入力されている値をクリップボードにコピーします。
コピーボタンを表示するには、コンストラクタの showCopyButton オプションに true を設定します。
また、copyMessage/copiedMessage オプションを使用することで、ツールチップに表示するテキストを設定することができます。
なお、テキストの一部を選択してコピーボタンを押下する場合、選択テキストのみコピーします。
テキストを選択しない場合、すべてのテキストをコピーします。
注意事項
ClipContent設定値によって、クリップボードにコピーされるテキストが異なります。
値
説明
IncludeLiterals
リテラル文字列を含む(デフォルト)
ExcludeLiterals
リテラル文字列を含まない
useClipboardがfalseに設定される場合は、クリップボードアクセスすることを許可しないため、コピーボタンが表示されません。
コントロールを無効にするときに、表示するコピーボタンも無効になります。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import { InputMan } from '@mescius/inputman';
import './styles.css';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
const gcMask1 = new InputMan.GcMask(document.getElementById('gcMask1'), {
formatPattern: '℡ \\D{2,4}-\\D{2,4}-\\D{4}',
value: '123412341234',
showCopyButton: true,
copyMessage: '電話番号をコピーします',
copiedMessage: 'コピーしました'
});
const gcMask2 = new InputMan.GcMask(document.getElementById('gcMask2'), {
formatPattern: '℡ \\D{2,4}-\\D{2,4}-\\D{4}',
value: '123412341234',
showCopyButton: true,
copyMessage: '電話番号をコピーします',
copiedMessage: 'コピーしました'
});
document.getElementById('showCopyButton').addEventListener('click', (e) => {
gcMask1.showCopyButton = e.target.checked;
gcMask2.showCopyButton = e.target.checked;
});
const clipContent = [
InputMan.ClipContent.ExcludeLiterals,
InputMan.ClipContent.IncludeLiterals,
];
document.getElementById('setClipContent').addEventListener('change', (e) => {
gcMask1.setClipContent(e.target.checked ? clipContent[0] : clipContent[1]);
gcMask2.setClipContent(e.target.checked ? clipContent[0] : clipContent[1]);
});
document.getElementById('useClipboard').addEventListener('change', (e) => {
gcMask1.setUseClipboard(e.target.checked);
gcMask2.setUseClipboard(e.target.checked);
});
document.getElementById('enableControl').addEventListener('change', (e) => {
gcMask1.setEnabled(e.target.checked);
gcMask2.setEnabled(e.target.checked);
});
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>マスクコントロール - コピーボタンの表示</title>
<!-- SystemJS -->
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="systemjs.config.js"></script>
<script>
window.onload = function() {
System.import('./src/app');
}
</script>
</head>
<body>
<div>
<input id="gcMask1">
</div>
<br>
<div>
ツールチップのスタイルを変更する<br>
<input id="gcMask2" class="custom">
</div>
<table class="sample">
<tr>
<th>コピーボタンの表示</th>
<td>
<label><input type="checkbox" id="showCopyButton" checked />表示する</label>
</td>
</tr>
<tr>
<th>リテラル</th>
<td>
<label><input type="checkbox" id="setClipContent" />リテラル文字列を含まない</label>
</td>
</tr>
<tr>
<th>クリップボードアクセス</th>
<td>
<label><input type="checkbox" id="useClipboard" checked />クリップボードアクセスすることを許可する</label>
</td>
</tr>
<tr>
<th>コントロール</th>
<td>
<label><input type="checkbox" id="enableControl" checked />有効</label>
</td>
</tr>
</table>
</body>
</html>
body {
padding-bottom: 10rem;
}
.gcim {
width: 180px;
}
.custom .gcim__copy-button_tip {
background-color: lightblue;
font-weight: bold;
}
body {
padding-bottom: 10rem;
}
[gcim-control-appearance="modern"] .gcim {
width: 180px;
}
[gcim-control-appearance="modern"] .custom .gcim__copy-button_tip {
background-color: lightblue;
font-weight: bold;
}
System.config({
transpiler: 'plugin-babel',
babelOptions: {
es2015: true
},
meta: {
'*.css': { loader: 'css' }
},
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
'@mescius/inputman': 'npm:@mescius/inputman/index.js',
'@mescius/inputman/CSS': 'npm:@mescius/inputman/CSS',
'css': 'npm:systemjs-plugin-css/css.js',
'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js',
'systemjs-babel-build': 'npm:systemjs-plugin-babel/systemjs-babel-browser.js'
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
src: {
defaultExtension: 'js'
},
"node_modules": {
defaultExtension: 'js'
},
}
});