Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
levy committed Sep 4, 2020
2 parents 6562664 + 6b96ac9 commit 217a2a7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
3 changes: 3 additions & 0 deletions src/utils/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export function replaceNewlineWithBr(str) {
return str.replace(/\r?\n/g, '<br>')
}
7 changes: 6 additions & 1 deletion src/v-editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="v-editor">
<ckeditor
:editor="ClassicEditor"
:value="value"
:value="computedValue"
:disabled="disabled"
:config="editorConfig"
@input="onInput"
Expand Down Expand Up @@ -44,6 +44,7 @@ import fullScreenExitIcon from './assets/fullscreenexit.vue'
import ImagePreview from './plugin/ImagePreview'
import './translations'
import {replaceNewlineWithBr} from './utils'
const ROW_HEIGHT = 24
const INNER_PADDING = 8 * 2 + 1 * 2 // .ck-content padding + border
Expand Down Expand Up @@ -135,6 +136,10 @@ export default {
}
},
computed: {
computedValue() {
// TODO: 此处每次监听 this.value 的变化可能存在性能问题
return replaceNewlineWithBr(this.value)
},
editorConfig() {
// $refs 在 mounted 阶段才挂载,这里不能直接传实例
return Object.assign(
Expand Down
10 changes: 7 additions & 3 deletions test/index.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import sum from './sum'
import {replaceNewlineWithBr} from '../src/utils'

test('main', () => {
expect(sum(1, 2)).toBe(3)
test('replaceNewlineWithBr', () => {
const strInWindows = '1.登录平台,选择需求池tab\r\n2.需求列表有需求'
const strInUnix = '1.登录平台,选择需求池tab\n2.需求列表有需求'
const normalStr = `1.登录平台,选择需求池tab<br>2.需求列表有需求`
expect(replaceNewlineWithBr(strInWindows)).toBe(normalStr)
expect(replaceNewlineWithBr(strInUnix)).toBe(normalStr)
})

0 comments on commit 217a2a7

Please sign in to comment.