2017-07-23 18:42:08 +00:00
|
|
|
<template>
|
|
|
|
<div class="toc">
|
|
|
|
<div class="toc__inner">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
2017-08-06 00:58:39 +00:00
|
|
|
|
|
|
|
<script>
|
|
|
|
import editorSvc from '../services/editorSvc';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
mounted() {
|
|
|
|
const tocElt = this.$el.querySelector('.toc__inner');
|
|
|
|
|
|
|
|
// TOC click behaviour
|
|
|
|
let isMousedown;
|
|
|
|
function onClick(e) {
|
|
|
|
if (!isMousedown) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
e.preventDefault();
|
|
|
|
const y = e.clientY - tocElt.getBoundingClientRect().top;
|
|
|
|
|
|
|
|
editorSvc.sectionDescList.some((sectionDesc) => {
|
|
|
|
if (y >= sectionDesc.tocDimension.endOffset) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const posInSection = (y - sectionDesc.tocDimension.startOffset)
|
|
|
|
/ (sectionDesc.tocDimension.height || 1);
|
|
|
|
const editorScrollTop = sectionDesc.editorDimension.startOffset
|
|
|
|
+ (sectionDesc.editorDimension.height * posInSection);
|
|
|
|
editorSvc.editorElt.parentNode.scrollTop = editorScrollTop;
|
|
|
|
const previewScrollTop = sectionDesc.previewDimension.startOffset
|
|
|
|
+ (sectionDesc.previewDimension.height * posInSection);
|
|
|
|
editorSvc.previewElt.parentNode.scrollTop = previewScrollTop;
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
tocElt.addEventListener('mouseup', () => {
|
|
|
|
isMousedown = false;
|
|
|
|
});
|
|
|
|
tocElt.addEventListener('mouseleave', () => {
|
|
|
|
isMousedown = false;
|
|
|
|
});
|
|
|
|
tocElt.addEventListener('mousedown', (e) => {
|
|
|
|
isMousedown = e.which === 1;
|
|
|
|
onClick(e);
|
|
|
|
});
|
|
|
|
tocElt.addEventListener('mousemove', (e) => {
|
|
|
|
onClick(e);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.toc__inner {
|
|
|
|
color: rgba(0, 0, 0, 0.75);
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 10px;
|
|
|
|
padding: 10px 20px;
|
|
|
|
white-space: nowrap;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-weight: inherit;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cl-toc-section {
|
|
|
|
* {
|
|
|
|
margin: 0.25em 0;
|
|
|
|
padding: 0.25em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-left: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
margin-left: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
margin-left: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h6 {
|
|
|
|
margin-left: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|