Skip to content

Commit

Permalink
Merge pull request #20 from pengloo53/master
Browse files Browse the repository at this point in the history
hr render
  • Loading branch information
lyricat authored Apr 21, 2019
2 parents 7121518 + b4c00dc commit c968df9
Show file tree
Hide file tree
Showing 5 changed files with 149 additions and 5 deletions.
21 changes: 19 additions & 2 deletions src/assets/scripts/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ var app = new Vue({
{ label: '17px', value: '17px', desc: '正常' },
{ label: '18px', value: '18px', desc: '稍大' }
],
currentTheme: 'default',
themeOption: [
{ label: 'default', value: 'default', author: 'Lyric'},
{ label: 'lupeng', value: 'lupeng', author: '鲁鹏'}
],
styleThemes: {
default: defaultTheme,
lupeng: lupengTheme
},
aboutDialogVisible: false
}
},
Expand All @@ -37,7 +46,7 @@ var app = new Vue({
})
// this.currentFont = this.builtinFonts[0],
this.wxRenderer = new WxRenderer({
theme: defaultTheme,
theme: this.styleThemes.default,
fonts: this.currentFont,
size: this.currentSize
})
Expand All @@ -56,7 +65,7 @@ var app = new Vue({
}
return output
},
themeChanged: function () {
editorThemeChanged: function () {
this.editor.setOption('theme', this.currentEditorTheme)
},
fontChanged: function (fonts) {
Expand All @@ -71,6 +80,14 @@ var app = new Vue({
})
this.refresh()
},
themeChanged: function(themeName){
var themeName = themeName;
var themeObject = this.styleThemes[themeName];
this.wxRenderer.setOptions({
theme: themeObject
})
this.refresh()
},
refresh: function () {
this.output = this.renderWeChat(this.editor.getValue())
},
Expand Down
7 changes: 6 additions & 1 deletion src/assets/scripts/renderers/wx-renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ var WxRenderer = function (opts) {
}
renderer.link = function (href, title, text) {
if (href.indexOf('https://mp.weixin.qq.com') === 0) {
return '<a href="' + href +'" title="' + (title || text) + '">' + text + '</a>';
return '<a href="' + href +'" title="' + (title || text) + '" ' + S('wx_link') +'>' + text + '</a>';
}else if( href === text){
return text;
} else {
if (ENV_USE_REFERENCES) {
var ref = addFootnote(title || text, href)
Expand All @@ -156,6 +158,9 @@ var WxRenderer = function (opts) {
renderer.tablecell = function (text, flags) {
return '<td ' + S('td') + '>' + text + '</td>';
}
renderer.hr = function(){
return '<hr style="border-style: solid;border-width: 1px 0 0;border-color: rgba(0,0,0,0.1);-webkit-transform-origin: 0 0;-webkit-transform: scale(1, 0.5);transform-origin: 0 0;transform: scale(1, 0.5);">';
}
return renderer
}
}
4 changes: 2 additions & 2 deletions src/assets/scripts/themes/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ var defaultTheme = {
'color': '#ff3502'
},
table: {
'border-collapse': 'collapse',
'border-collapse': 'collapse',
'margin': '20px 0',
},
thead: {
'background': 'rgba(0,0,0,0.05)',
'background': 'rgba(0,0,0,0.05)',
},
td: {
'font-size': '80%',
Expand Down
113 changes: 113 additions & 0 deletions src/assets/scripts/themes/lupeng.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
var lupengTheme = {
BASE: {
'text-align': 'left',
'color': '#595959',
'line-height': '1.55em',
'letter-spacing': '0.06em'
},
BASE_BLOCK: defaultTheme.BASE_BLOCK,
block: {
h2: {
'font-size': '140%',
'text-align': 'center',
'font-weight': 'normal',
'text-align': 'center',
'margin': '80px 10px 40px 10px'
},
h3: {
'font-weight': 'bold',
'font-size': '120%',
'margin': '40px 10px 20px 10px'
},
p: {
'margin': '10px 10px',
'line-height': '1.6'
},
blockquote: {
'color': '#9a9a9a',
'padding-left': '10px',
// 'padding-top': '0.05px',
'background-color': '#fefefe',
'line-height': '1.6',
'border-left': '3px solid #dbdbdb',
'font-size': '15px',
'margin': '1em 0'
},
code: {
'font-size': '80%',
'overflow': 'auto',
'color': '#333',
'background': 'rgb(247, 247, 247)',
'border-radius': '2px',
'padding': '10px',
'line-height': '1.3',
'border': '1px solid rgb(236,236,236)',
'margin': '20px 0',
},
image: {
'border-radius': '4px',
'display': 'block',
'margin': '20px auto',
'width': '100%',
},
image_org: {
'border-radius': '4px',
'display': 'block',
},
ol: {
'margin-left': '0',
'padding-left': '20px'
},
ul: {
'margin-left': '0',
'padding-left': '20px',
'list-style': 'circle',
},
footnotes: {
'margin': '10px 10px',
'font-size': '14px'
}
},
inline: {
// inline element
listitem: {
'text-indent': '-20px',
'display': 'block',
'margin': '10px 10px',
},
codespan: {
'font-size': '0.9em',
'color': '#d14',
'background': '#fefefe',
'padding': '0px 5px',
'margin': '0px 2px',
'border': '1px solid #ddd',
'border-radius': '3px',
},
link: {
'color': '#ff3502'
},
wx_link: {
'color': '#576b95',
'text-decoration': 'none'
},
strong: {
'font-weight': 'bold',
},
table: {
'border-collapse': 'collapse',
'margin': '20px 0',
},
thead: {
'background': 'rgba(0,0,0,0.05)',
},
td: {
'font-size': '80%',
'border': '1px solid #dfdfdf',
'padding': '4px 8px',
},
footnote: {
'font-size': '12px',
}
}
}
9 changes: 9 additions & 0 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item label="Themes">
<el-select v-model="currentTheme" size="mini" placeholder="选择主题样式" @change="themeChanged">
<el-option v-for="theme in themeOption" :key="theme.value" :label="theme.label" :value="theme.value">
<span style="float: left">{{ theme.label }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{ theme.author }}</span>
</el-option>
</el-select>
</el-form-item>
</el-form>
<el-button class="about" @click="aboutDialogVisible = true">关于</el-button>
</el-header>
Expand Down Expand Up @@ -107,6 +115,7 @@ <h3>关于我</h3>
</div>

<script src="assets/scripts/themes/default.js"></script>
<script src="assets/scripts/themes/lupeng.js"></script>
<script src="assets/scripts/renderers/wx-renderer.js"></script>
<script src="assets/scripts/editor.js"></script>

Expand Down

0 comments on commit c968df9

Please sign in to comment.