Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Vue diff viewer plugin for Vue@3
demo
You can see the difference between the two codes with the vue-diff
plugin.
This plugin dependent on diff-match-patch and highlight.js, shows similar results to other diff viewers (e.g., Github Desktop).
Here is the demo
npm install vue-diff
And install plugin in vue application
import VueDiff from 'vue-diff';
import 'vue-diff/dist/index.css';
app.use(VueDiff);
app.use(VueDiff, {
componentName: 'VueDiff',
});
name | type | detault | description |
---|---|---|---|
componentName | string | Diff | Global diff component name |
Insert the diff component with props.
<template>
<!-- If the changed componentName
<VueDiff>
-->
<Diff
:mode="mode"
:theme="theme"
:language="language"
:prev="prev"
:current="current"
/>
</template>
<template>
<Diff
:mode="mode"
:theme="theme"
:language="language"
:prev="prev"
:current="current"
:folding="folding"
:input-delay="0"
:virtual-scroll="{ height: 500, lineMinHeight: 24, delay: 100 }"
/>
</template>
name | type | detault | values | description |
---|---|---|---|---|
mode | string | split | split , unified | |
theme | string | dark | dark , light | See Custom theme |
language | string | plaintext | See Extend languages | |
prev | string | '' | Prev code | |
current | string | '' | Current Code | |
folding | boolean | false | Folding not different | |
inputDelay | number | 0 | Setting up rendering debounce for changes for performance benefit (mode, prev, curr) | |
virtualScroll | boolean|object | false | Default value when setting true :{ height: 500, lineMinHeight: 24, delay: 100 } See virtual scroll |
vue-diff
uses the following highlight.js themes and can be customized.
highlight.js/scss/monokai.scss
highlight.js/scss/vs.scss
npm install highlight.js
<template>
<Diff
:mode="mode"
theme="custom"
:language="language"
:prev="prev"
:current="current"
/>
</template>
<style lang="scss">
.vue-diff-theme-custom {
@import 'highlight.js/scss/vs2015.scss'; // import theme
background-color: #000; // Set background color
}
</style>
vue-diff
supports the following languages and can be extended through highlight.js language registration.
css
xml
: xml
, html
, xhtml
, rss
, atom
, xjb
, xsd
, xsl
, plist
, svg
markdown
: markdown
, md
, mkdown
, mkd
javascript
: javascript
, js
, jsx
json
plaintext
: plaintext
, txt
, text
typescript
: typescript
, ts
npm install highlight.js
import VueDiff from 'vue-diff';
import 'vue-diff/dist/index.css';
// extend yaml language
import yaml from 'highlight.js/lib/languages/yaml';
VueDiff.hljs.registerLanguage('yaml', yaml);
app.use(VueDiff);
Comparing text from many lines can slow down performance.
With virtualScroll props, virtualScroll applies. (Self-made for this plug-in.)
When using virtual scroll, the css of all code lines is changed to the absolute position, which requires detailed settings.
number
): Diff box height (Applies only to px values)number
): minimum height of line
Minimum height value of line is required for visible area calculation.
The default is 24, but you can set it yourself if you need to adjust it according to the page's front-size, line-height, etc.
number
): re-rendering delay when scrolling or resizing
Performance problems occur when too often a re-rendering function is invoked based on scrolling or resizing
This setting applies a delay using throttle.
FAQs
Vue diff viewer
We found that vue-diff demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.