clipboard-parser
v3.0.0
Published
A tool to read the clipboard and parse out the table data
Downloads
28
Maintainers
Readme
clipboard-parser
A tool to read the clipboard and parse out the table data. Support for parsing @RequestParam/@ApiModelProperty interfaces to define code, Word, Excel and other form-like data
Documentation • Change Log
Installing
# use pnpm
$ pnpm install clipboard-parser
# use npm
$ npm install clipboard-parser --save
# use yarn
$ yarn add clipboard-parser
Usage
<!-- demo.vue -->
<template>
<textarea @paste="handlePaste"></textarea>
</template>
<script>
import clipboardParser from 'clipboard-parser'
export default {
methods: {
handlePaste(e) {
const result = clipboardParser(e)
// ...
}
}
}
</script>
Using unpkg CDN:
<body>
<textarea onpaste="handlePaste"></textarea>
</body>
<script src="https://unpkg.com/[email protected]/dist/index.global.prod.js"></script>
<script>
function handlePaste(event) {
const data = clipboardParser(event)
}
</script>
Demos
1. Parsing JAVA code containing the interface definition of @RequestParam
input
@RequestParam("rowCount")
@ApiParam(required = false, name = "rowCount", value = "page size",defaultValue = 10)
String rowCount,
@RequestParam(value = "current")
@ApiParam(required = false, name = "current", value = "start page",defaultValue = 1)
String current,
output
[
{
"type": "String",
"required": true,
"name": "rowCount",
"defaultValue": 10,
"description": "page size"
},
{
"type": "String",
"required": true,
"name": "current",
"defaultValue": 1,
"description": "start page"
}
]
2. Parsing JAVA code containing the interface definition of @ApiModelProperty
input
@ApiModelProperty(value = "id key", required = true)
private String id;
@ApiModelProperty(value = "name")
private String name;
output
[
{
"required": true,
"type": "String",
"description": "id key",
"defaultValue": "",
"name": "id"
},
{
"required": true,
"type": "String",
"description": "name",
"defaultValue": "",
"name": "name"
}
]
3. Parse word/excel/web-page-table and other form-like data
input
| Parameters | Description | Type | Optional | Required | Default | | ---------- | ----------- | ------ | ---------------------- | -------- | ------------------- | | type | branch type | String | feature/bugfix/support | false | current branch type | | name | branch name | String | - | false | current branch name |
output
[
{
"name": "type",
"type": "String",
"required": false,
"defaultValue": "",
"description": "branch type"
},
{
"name": "name",
"type": "String",
"required": false,
"defaultValue": "",
"description": "branch name"
}
]
Support & Issues
Please open an issue here.