element/examples/components/demo-block.vue

254 lines
6.2 KiB
Vue
Raw Normal View History

2016-08-23 08:57:58 +00:00
<template>
<div
class="demo-block"
:class="[blockClass, { 'hover': hovering }]"
@mouseenter="hovering = true"
@mouseleave="hovering = false">
2016-11-08 07:59:02 +00:00
<slot name="source"></slot>
<div class="meta">
<div class="description">
<slot></slot>
<el-tooltip effect="dark" :content="langConfig['tooltip-text']" placement="right">
<el-button size="small" type="primary" @click="goJsfiddle">{{ langConfig['button-text'] }}</el-button>
2016-11-08 07:59:02 +00:00
</el-tooltip>
</div>
<slot name="highlight"></slot>
</div>
2016-08-23 08:57:58 +00:00
<div class="demo-block-control" @click="isExpanded = !isExpanded">
2016-09-18 14:01:26 +00:00
<transition name="arrow-slide">
<i :class="[iconClass, { 'hovering': hovering }]"></i>
</transition>
<transition name="text-slide">
<span v-show="hovering">{{ controlText }}</span>
</transition>
2016-08-23 08:57:58 +00:00
</div>
</div>
</template>
<style>
.demo-block {
border: solid 1px #eaeefb;
border-radius: 4px;
transition: .2s;
2016-11-02 10:47:19 +00:00
2016-08-23 08:57:58 +00:00
&.hover {
2016-09-13 12:02:33 +00:00
box-shadow: 0 0 8px 0 rgba(232, 237, 250, .6), 0 2px 4px 0 rgba(232, 237, 250, .5);
}
2016-11-02 10:47:19 +00:00
2016-09-13 12:02:33 +00:00
code {
font-family: Menlo, Monaco, Consolas, Courier, monospace;
2016-08-23 08:57:58 +00:00
}
2016-11-02 10:47:19 +00:00
.demo-button {
float: right;
}
2016-08-23 08:57:58 +00:00
.source {
padding: 24px;
}
2016-11-02 10:47:19 +00:00
2016-08-23 08:57:58 +00:00
.meta {
2016-09-13 12:02:33 +00:00
background-color: #f9fafc;
2016-08-23 08:57:58 +00:00
border-top: solid 1px #eaeefb;
clear: both;
overflow: hidden;
height: 0;
transition: height .2s;
}
.description {
padding: 18px 24px;
width: 40%;
box-sizing: border-box;
border-left: solid 1px #eaeefb;
float: right;
font-size: 14px;
2016-09-13 12:02:33 +00:00
line-height: 1.8;
2016-08-23 08:57:58 +00:00
color: #5e6d82;
word-break: break-word;
2016-08-23 08:57:58 +00:00
p {
2016-11-08 07:59:02 +00:00
margin: 0 0 12px;
2016-08-23 08:57:58 +00:00
}
2016-11-02 10:47:19 +00:00
2016-08-23 08:57:58 +00:00
code {
2016-09-13 12:02:33 +00:00
color: #5e6d82;
background-color: #e6effb;
2016-08-23 08:57:58 +00:00
margin: 0 4px;
2016-09-18 14:01:26 +00:00
transform: translateY(-2px);
display: inline-block;
padding: 1px 5px;
2016-08-23 08:57:58 +00:00
font-size: 12px;
2016-09-18 14:01:26 +00:00
border-radius: 3px;
2016-08-23 08:57:58 +00:00
}
}
2016-11-02 10:47:19 +00:00
2016-08-23 08:57:58 +00:00
.highlight {
width: 60%;
border-right: solid 1px #eaeefb;
pre {
margin: 0;
}
2016-11-02 10:47:19 +00:00
2016-08-23 08:57:58 +00:00
code.hljs {
margin: 0;
border: none;
max-height: none;
border-radius: 0;
2016-11-02 10:47:19 +00:00
2016-08-23 08:57:58 +00:00
&::before {
content: none;
}
}
}
2016-11-02 10:47:19 +00:00
2016-08-23 08:57:58 +00:00
.demo-block-control {
border-top: solid 1px #eaeefb;
height: 36px;
box-sizing: border-box;
background-color: #fff;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
text-align: center;
margin-top: -1px;
color: #d3dce6;
cursor: pointer;
transition: .2s;
2016-09-18 14:01:26 +00:00
position: relative;
2016-08-23 08:57:58 +00:00
i {
font-size: 12px;
line-height: 36px;
2016-09-18 14:01:26 +00:00
transition: .3s;
&.hovering {
transform: translateX(-40px);
}
2016-08-23 08:57:58 +00:00
}
span {
2016-09-18 14:01:26 +00:00
position: absolute;
transform: translateX(-30px);
2016-08-23 08:57:58 +00:00
font-size: 14px;
line-height: 36px;
2016-09-18 14:01:26 +00:00
transition: .3s;
display: inline-block;
2016-08-23 08:57:58 +00:00
}
2016-11-02 10:47:19 +00:00
2016-08-23 08:57:58 +00:00
&:hover {
color: #20a0ff;
2016-09-13 12:02:33 +00:00
background-color: #f9fafc;
2016-08-23 08:57:58 +00:00
}
2016-11-02 10:47:19 +00:00
2016-09-18 14:01:26 +00:00
& .text-slide-enter,
& .text-slide-leave-active {
opacity: 0;
transform: translateX(10px);
}
2016-08-23 08:57:58 +00:00
}
}
</style>
<script type="text/babel">
import compoLang from '../i18n/component.json';
2016-08-23 08:57:58 +00:00
export default {
data() {
return {
hovering: false,
isExpanded: false
};
},
2016-11-02 10:47:19 +00:00
props: {
jsfiddle: Object,
default() {
return {};
}
},
methods: {
goJsfiddle() {
const { script, html, style } = this.jsfiddle;
2016-11-02 10:47:19 +00:00
const resourcesTpl = '<scr' + 'ipt src="//unpkg.com/vue/dist/vue.js"></scr' + 'ipt>' +
'\n<scr' + 'ipt src="//unpkg.com/element-ui/lib/index.js"></scr' + 'ipt>';
2016-11-02 10:47:19 +00:00
let jsTpl = (script || '').replace(/export default/, 'var Main =').trim();
let htmlTpl = `${resourcesTpl}\n<div id="app">\n${html.trim()}\n</div>`;
let cssTpl = `@import url("//unpkg.com/element-ui/lib/theme-default/index.css");\n${(style || '').trim()}\n`;
2016-11-02 10:47:19 +00:00
jsTpl = jsTpl
? jsTpl + '\nvar Ctor = Vue.extend(Main)\nnew Ctor().$mount(\'#app\')'
: 'new Vue().$mount(\'#app\')';
const data = {
js: jsTpl,
css: cssTpl,
html: htmlTpl,
panel_js: 3,
panel_css: 1
2016-11-02 10:47:19 +00:00
};
const form = document.createElement('form');
const node = document.createElement('textarea');
form.method = 'post';
form.action = 'http://jsfiddle.net/api/post/library/pure/';
form.target = '_blank';
for (let name in data) {
node.name = name;
node.value = data[name].toString();
form.appendChild(node.cloneNode());
}
form.submit();
}
},
2016-08-23 08:57:58 +00:00
computed: {
lang() {
return this.$route.path.split('/')[1];
},
langConfig() {
return compoLang.filter(config => config.lang === this.lang)[0]['demo-block'];
},
2016-08-23 08:57:58 +00:00
blockClass() {
2016-11-10 15:50:55 +00:00
return `demo-${ this.lang } demo-${ this.$router.currentRoute.path.split('/').pop() }`;
2016-08-23 08:57:58 +00:00
},
iconClass() {
return this.isExpanded ? 'el-icon-caret-top' : 'el-icon-caret-bottom';
},
controlText() {
return this.isExpanded ? this.langConfig['hide-text'] : this.langConfig['show-text'];
2016-08-23 08:57:58 +00:00
},
codeArea() {
return this.$el.getElementsByClassName('meta')[0];
},
codeAreaHeight() {
if (this.$el.getElementsByClassName('description').length > 0) {
return Math.max(this.$el.getElementsByClassName('description')[0].clientHeight, this.$el.getElementsByClassName('highlight')[0].clientHeight);
}
return this.$el.getElementsByClassName('highlight')[0].clientHeight;
}
},
watch: {
isExpanded(val) {
this.codeArea.style.height = val ? `${ this.codeAreaHeight + 1 }px` : '0';
}
},
mounted() {
this.$nextTick(() => {
let highlight = this.$el.getElementsByClassName('highlight')[0];
if (this.$el.getElementsByClassName('description').length === 0) {
highlight.style.width = '100%';
highlight.borderRight = 'none';
}
});
}
};
</script>