gancio/components/Editor.vue

248 lines
6.6 KiB
Vue
Raw Normal View History

2020-01-15 23:18:00 +01:00
<template lang='pug'>
2022-07-01 15:55:09 +02:00
.editor(:class='focused')
.label {{label}}
editor-menu-bar.menubar.is-hidden(:editor='editor'
:keep-in-bounds='true' v-slot='{ commands, isActive, getMarkAttrs, focused }')
v-btn-toggle(dense)
v-btn(icon text tabindex='-1'
:class="{ primary: isActive.bold() }"
@click="commands.bold")
v-icon(v-text='mdiFormatBold')
2020-08-16 14:07:25 +02:00
2022-07-01 15:55:09 +02:00
v-btn(icon text tabindex='-1'
:class="{ primary: isActive.underline() }"
@click="commands.underline")
v-icon(v-text='mdiFormatUnderline')
2020-08-16 14:07:25 +02:00
2022-07-01 15:55:09 +02:00
v-btn(icon text tabindex='-1'
:class="{ primary: isActive.strike() }"
@click="commands.strike")
v-icon(v-text='mdiFormatStrikethroughVariant')
2020-08-16 14:07:25 +02:00
2022-07-01 15:55:09 +02:00
v-btn(icon text tabindex='-1'
:class="{ primary: isActive.italic() }"
@click="commands.italic")
v-icon(v-text='mdiFormatItalic')
2020-07-28 12:24:39 +02:00
2022-07-01 15:55:09 +02:00
v-btn(icon text tabindex='-1'
:class="{ primary: isActive.heading({level: 1}) }"
@click="commands.heading({level: 1})")
v-icon(v-text='mdiFormatHeader1')
2020-08-16 14:07:25 +02:00
2022-07-01 15:55:09 +02:00
v-btn(icon text tabindex='-1'
:class="{ primary: isActive.heading({level: 2}) }"
@click="commands.heading({level: 2})")
v-icon(v-text='mdiFormatHeader2')
2020-08-16 14:07:25 +02:00
2022-07-01 15:55:09 +02:00
v-btn(icon text tabindex='-1'
:class="{ primary: isActive.heading({level: 3}) }"
@click="commands.heading({level: 3})")
v-icon(v-text='mdiFormatHeader3')
2020-08-16 14:07:25 +02:00
2022-07-01 15:55:09 +02:00
v-btn(icon text tabindex='-1'
:class="{ primary: isActive.code() }"
@click="commands.code")
v-icon(v-text='mdiCodeTags')
2020-08-16 14:07:25 +02:00
2022-07-01 15:55:09 +02:00
v-btn(icon text tabindex='-1'
:class="{ primary: isActive.blockquote() }"
@click="commands.blockquote")
v-icon(v-text='mdiFormatQuoteOpen')
2020-08-16 14:07:25 +02:00
2022-07-01 15:55:09 +02:00
v-btn(icon text tabindex='-1'
:class="{ primary: isActive.bullet_list() }"
@click="commands.bullet_list")
v-icon(v-text='mdiFormatListBulleted')
2020-08-16 14:07:25 +02:00
2022-07-01 15:55:09 +02:00
v-btn(icon text tabindex='-1' :class='{ primary: isActive.link() }'
@click='commands.link({href: getMarkAttrs("link") && getMarkAttrs("link").href ? "" : "https://"}); $refs.link.focus();')
v-icon(v-text='mdiLink')
v-text-field.pt-0.ml-1(v-show='isActive.link()' ref='link' @focus='focus' @blur='e => { blur(); commands.link({ href: e.target.value}) }' hide-details
:value='isActive.link() && getMarkAttrs("link") && getMarkAttrs("link").href || ""'
@keypress.enter='commands.link({ href: $event.target.value}); editor.focus()')
2020-08-16 14:07:25 +02:00
2022-07-01 15:55:09 +02:00
editor-content.content(:editor='editor' spellcheck='false' :style="{ 'max-height': maxHeight }" :aria-label='label' :label='label')
2020-01-15 23:18:00 +01:00
</template>
<script>
2021-03-16 19:54:26 +01:00
import debounce from 'lodash/debounce'
import { mdiLink, mdiFormatListBulleted, mdiFormatQuoteOpen, mdiCodeTags,
mdiFormatHeader1, mdiFormatHeader2, mdiFormatHeader3, mdiFormatItalic,
mdiFormatStrikethroughVariant, mdiFormatBold, mdiFormatUnderline } from '@mdi/js'
2020-07-05 23:51:45 +02:00
import { Editor, EditorContent, EditorMenuBar, EditorMenuBubble } from 'tiptap'
2020-01-15 23:18:00 +01:00
import {
Blockquote,
BulletList,
CodeBlock,
HardBreak,
Heading,
ListItem,
OrderedList,
Bold,
Code,
Italic,
Link,
History,
Strike,
Underline,
Placeholder
2020-01-15 23:18:00 +01:00
} from 'tiptap-extensions'
export default {
name: 'Editor',
components: { EditorContent, EditorMenuBar, EditorMenuBubble },
props: {
2020-10-14 21:13:20 +02:00
label: { type: String, default: 'Editor' },
2020-01-15 23:18:00 +01:00
value: { type: String, default: '' },
border: { type: Boolean, default: false },
2020-08-16 14:07:25 +02:00
noSave: { type: Boolean, default: false },
maxHeight: { type: String, Number, default: '' },
placeholder: { type: String, default: '' }
2020-01-15 23:18:00 +01:00
},
data () {
return {
mdiLink, mdiFormatListBulleted, mdiFormatQuoteOpen, mdiCodeTags,
mdiFormatHeader1, mdiFormatHeader2, mdiFormatHeader3, mdiFormatItalic,
mdiFormatStrikethroughVariant, mdiFormatBold, mdiFormatUnderline,
2020-07-28 12:24:39 +02:00
options: [],
2020-01-15 23:18:00 +01:00
linkActive: false,
editor: null,
blurring: false,
2020-11-17 00:32:14 +01:00
update: false,
focused: ''
}
},
watch: {
value () {
if (this.update) {
this.update = false
return
}
this.editor.setContent(this.value)
2020-01-15 23:18:00 +01:00
}
},
mounted () {
this.editor = new Editor({
onFocus: () => this.focus(),
onBlur: () => this.blur(),
2021-03-16 19:54:26 +01:00
onUpdate: debounce(({ getHTML }) => {
this.update = true
this.$emit('input', getHTML())
}, 1000),
2020-01-15 23:18:00 +01:00
content: this.value,
extensions: [
new Blockquote(),
new BulletList(),
new CodeBlock(),
new HardBreak(),
new Heading({ levels: [1, 2, 3, 4, 5, 6] }),
new OrderedList(),
new ListItem(),
new Code(),
new History(),
new Link({ openOnClick: false, target: '_blank' }),
2020-01-15 23:18:00 +01:00
new Bold(),
new Italic(),
new Strike(),
new Underline(),
new Placeholder({
emptyEditorClass: 'is-editor-empty',
emptyNodeClass: 'is-empty',
emptyNodeText: this.placeholder,
showOnlyWhenEditable: true,
2020-11-17 00:32:14 +01:00
showOnlyCurrent: true
})
2020-01-15 23:18:00 +01:00
]
})
},
beforeDestroy () {
if (this.editor) { this.editor.destroy() }
},
methods: {
blur () {
this.blurring = true
window.setTimeout(() => {
if (this.blurring) {
this.focused = ''
this.blurring = false
}
}, 200)
},
focus () {
this.focused = 'editor--focused'
this.$nextTick(() => {
this.blurring = false
})
}
2020-01-15 23:18:00 +01:00
}
}
</script>
2022-05-03 15:23:55 +02:00
<style lang='scss'>
2020-11-17 00:32:14 +01:00
2020-07-28 12:24:39 +02:00
.editor {
2020-11-17 00:32:14 +01:00
margin-top: 4px;
padding-top: 12px;
padding-bottom: 22px;
font-family: sans-serif;
font-size: 1.1em;
.editor p.is-editor-empty:first-child::before {
content: attr(data-empty-text);
float: left;
color: #aaa;
// opacity: .4;
pointer-events: none;
height: 0;
font-style: italic;
}
2020-10-14 21:13:20 +02:00
.label {
left: 0px;
2020-11-17 00:32:14 +01:00
position: relative;
transform-origin: top left;
transition: transform .3s, scale .3s, color .3s;
transform: translateY(20px);
2020-10-14 21:13:20 +02:00
}
2020-11-17 00:32:14 +01:00
&.editor--focused {
.label {
color: #FF4500;
transform: translateY(0px) scale(0.75);
}
.menubar {
2021-04-27 11:10:18 +02:00
visibility: visible;
2020-11-17 00:32:14 +01:00
opacity: 1 !important;
}
.ProseMirror::after {
width : 100% !important;
transform: scaleX(1) !important;
}
2020-08-16 14:07:25 +02:00
}
2020-11-17 00:32:14 +01:00
2020-08-16 14:07:25 +02:00
.menubar {
2020-11-17 00:32:14 +01:00
transition: opacity .5s;
opacity: 0;
2021-04-27 11:10:18 +02:00
visibility: hidden;
Squashed commit of the following: commit 5c0d380740c24e0467cef916fd0560cb26409f9f Author: lesion <lesion@autistici.org> Date: Sun Mar 19 23:22:25 2023 +0100 update yarn.lock commit 909ee71ecb8f27e4fba72430aecc92bf527e6cd4 Author: lesion <lesion@autistici.org> Date: Sun Mar 19 23:22:09 2023 +0100 Squashed commit of the following: commit fc8a9f4506264c93d97bb746389a5d74ffb866ec Author: lesion <lesion@autistici.org> Date: Tue Mar 14 16:42:24 2023 +0100 address some issues with recurrent events, fix #247 commit f7357666ca79809fe36967dc95f1f19c223c7b0d Author: lesion <lesion@autistici.org> Date: Tue Mar 14 16:16:52 2023 +0100 fix event import from URL commit e1bca6f46ad602085a99c8551607ac044f2c000c Author: lesion <lesion@autistici.org> Date: Tue Mar 14 16:15:42 2023 +0100 add Duch (nl) locale (thanks @jeoenepraat) commit 5f8afdbc12474bd8833e7a248a273cd480e8e8d7 Merge: 57a052a 92ca5ab Author: lesion <lesion@autistici.org> Date: Tue Mar 14 11:39:50 2023 +0100 Merge remote-tracking branch 'weblate/master' commit 57a052a7fa6b598a797de5a1cb66fd70408ea14b Merge: 63d1d2e 55137d2 Author: lesion <lesion@autistici.org> Date: Tue Mar 14 11:39:33 2023 +0100 Merge commit '55137d2ac23549e633f36ad10139fd4168c2645f' commit 92ca5abf5e5d05f0cff5c610800eb0eb9017fe11 Author: joenepraat <joenepraat@posteo.org> Date: Fri Mar 10 23:16:32 2023 +0000 Translated using Weblate (Dutch) Currently translated at 68.3% (214 of 313 strings) Translation: Gancio/Web Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/ commit 63d1d2ee53615f8e72936b226d7b1ec75712f718 Author: lesion <lesion@autistici.org> Date: Thu Mar 9 21:41:06 2023 +0100 minor commit d2759a55a58ceb79f30e79c3f3a4efdbd6851ed2 Author: lesion <lesion@autistici.org> Date: Thu Mar 9 21:38:39 2023 +0100 wrong user / admin merge dark theme settings - fix #244 commit b401d829dbb4733dd21a98e4fee7aec9ce21200f Author: lesion <lesion@autistici.org> Date: Thu Mar 9 21:24:45 2023 +0100 remove a small warning commit ccffe5f7b0d117a84fbe23737d1bc844866de82c Author: lesion <lesion@autistici.org> Date: Fri Feb 24 11:40:36 2023 +0100 push tags on release commit 55137d2ac23549e633f36ad10139fd4168c2645f Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Feb 23 23:56:16 2023 +0000 Bump sequelize from 6.28.0 to 6.29.0 Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.28.0 to 6.29.0. - [Release notes](https://github.com/sequelize/sequelize/releases) - [Commits](https://github.com/sequelize/sequelize/compare/v6.28.0...v6.29.0) --- updated-dependencies: - dependency-name: sequelize dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> commit b654f29d8bf0fb56e2ca3ed53448bd08a1028fc4 Author: lesion <lesion@autistici.org> Date: Wed Feb 22 13:21:17 2023 +0100 update changelog commit 0cd1ee9d891a5feb1384751149dd56f401f3a348 Author: lesion <lesion@autistici.org> Date: Wed Feb 22 13:17:29 2023 +0100 increase rate limit max requests per minutes commit b6dafc082e76276c924c349a60642e070b1eea4e Author: lesion <lesion@autistici.org> Date: Wed Feb 22 08:45:39 2023 +0100 minor commit 0fa7769844f0feecaf9676ecebdcb20dc5754fd4 Author: lesion <lesion@autistici.org> Date: Wed Feb 22 08:45:18 2023 +0100 location saving is not working when geocoding is disabled, fix #238 commit 07f9e2d9eeed7fe1855b49ea6c4b776afe10f15a Author: lesion <lesion@autistici.org> Date: Wed Feb 22 08:33:40 2023 +0100 really fix #232 commit bae930799e7c62e7841af8031d94bf9c6feb98c9 Author: lesion <lesion@autistici.org> Date: Wed Feb 22 08:33:09 2023 +0100 downgrade mariadb (sequelize is not ready) commit d733d7fef1c2ebffb4f6ae42461a9a874c5c5d7f Author: lesion <lesion@autistici.org> Date: Wed Feb 22 00:16:28 2023 +0100 aargh commit 98b22aad70b9c077e0caabad08585b8ae7418b13 Author: lesion <lesion@autistici.org> Date: Tue Feb 21 00:56:06 2023 +0100 minor commit fc098b603de7245f16811e63d48ee323ecbb7e1a Author: lesion <lesion@autistici.org> Date: Tue Feb 21 00:55:44 2023 +0100 missing i18n in setup, fix #239 commit 3eaf72af197d909471e63071f0780ba64e259ffb Merge: bba196b d6c6034 Author: lesion <lesion@autistici.org> Date: Mon Feb 20 21:17:37 2023 +0100 Merge remote-tracking branch 'weblate/master' commit bba196b0682def503cfb2dce01454aabc3868188 Author: lesion <lesion@autistici.org> Date: Sat Feb 18 00:05:52 2023 +0100 update changelog, v1.6.3 commit bb9f7cca47625d92a63d5d6d81029afeb0c129e6 Author: lesion <lesion@autistici.org> Date: Sat Feb 18 00:04:28 2023 +0100 minor commit 80d2dbd06bb5948086acd3d848d291d5b5b7522a Author: lesion <lesion@autistici.org> Date: Fri Feb 17 23:40:28 2023 +0100 minor commit d6c6034630b96f518e0040d86e0a4def74d1d813 Author: fadelkon <fadelkon@posteo.net> Date: Thu Feb 16 22:09:23 2023 +0000 Translated using Weblate (Catalan) Currently translated at 100.0% (313 of 313 strings) Translation: Gancio/Web Translate-URL: https://hosted.weblate.org/projects/gancio/web/ca/ commit d125cf1506e901a6a494a66961557d9181b8e320 Author: lesion <lesion@autistici.org> Date: Fri Feb 17 21:56:31 2023 +0100 set a default user_locale path commit 4367960a6218b7d59f881a6934a43e1d1840822b Merge: c8cc5c6 87dd179 Author: lesion <lesion@autistici.org> Date: Tue Feb 7 17:46:58 2023 +0100 Merge branch 'master' into gh commit c8cc5c6c97d3a3fd9a03f04eca1f20880593a896 Merge: 88e0c90 550e221 Author: lesion <lesion@autistici.org> Date: Mon Jan 9 17:15:21 2023 +0100 Merge branch 'master' into gh commit 88e0c90a66f30b815b09f4c75819bfdbc994c30c Merge: 421aa12 f212ac1 Author: lesion <lesion@autistici.org> Date: Thu Dec 15 09:54:41 2022 +0100 Merge branch 'master' into gh commit 421aa12781e25a6415985f986645fb2995d6e413 Merge: 5f6cc46 b3488e7 Author: lesion <lesion@autistici.org> Date: Wed Sep 28 12:26:08 2022 +0200 Merge branch 'master' into gh commit 5f6cc46cdcf7d857541cf6583698cce49366d10e Merge: b66feb9 171d968 Author: lesion <lesion@autistici.org> Date: Mon Aug 8 00:08:12 2022 +0200 Merge branch 'master' into gh commit b66feb92e27be821df4ecd9b992e4e98168fdce8 Merge: 80c55d5 05d068f Author: lesion <lesion@autistici.org> Date: Tue Jun 21 23:48:40 2022 +0200 Merge branch 'master' into gh commit 80c55d5601c40f32f59107cc2b374590ce18e3d7 Merge: 814090e a154fdf Author: lesion <lesion@autistici.org> Date: Mon Jun 6 17:27:00 2022 +0200 Merge branch 'master' into gh commit 814090e9b671a1a8c39e111e7a5e27b8d142f937 Merge: 616c542 2e3aba9 Author: lesion <lesion@autistici.org> Date: Mon Jun 6 17:19:31 2022 +0200 Merge branch 'master' into gh commit 616c54229a59885dd071b095802ab270660a88de Merge: e4cb22e 82dcaf9 Author: lesion <lesion@autistici.org> Date: Mon Jun 6 16:57:05 2022 +0200 Merge branch 'master' into gh commit e4cb22ee33e76c4aa9002a94b1dc9a38e9c558cf Merge: 5dddfbd 8657937 Author: lesion <lesion@autistici.org> Date: Fri Mar 11 23:41:22 2022 +0100 Merge branch 'master' into gh commit 5dddfbd29e0ca00ed33663f18d80df5f1e96e194 Merge: 60e9d95 10c6b0d Author: lesion <lesion@autistici.org> Date: Fri Mar 11 23:22:12 2022 +0100 Merge branch 'master' into gh commit 60e9d95ba83037822c00817a0c628fa8b5c025f6 Merge: 79445ca ad93f83 Author: lesion <lesion@autistici.org> Date: Tue Dec 7 01:35:18 2021 +0100 Merge branch 'master' into gh commit 79445ca8a70ffe9e426750d55ad4a0197b144730 Merge: 9472d8d cd313ef Author: les <lesion@autistici.org> Date: Thu Jun 24 21:52:25 2021 +0200 Merge branch 'master' into gh commit 9472d8d919face015065209047247d08c18b4895 Merge: f960149 9e9643e Author: les <lesion@autistici.org> Date: Fri Mar 26 22:27:41 2021 +0100 Merge branch 'dev' into gh commit f9601492dc37681b2e07399811d8a3a7d38ca3e6 Author: les <lesion@autistici.org> Date: Fri Dec 6 11:30:41 2019 +0100 update dependencies commit f8c7fa2b45b62cd0d339227b8a69e6d951661faf Author: les <lesion@autistici.org> Date: Fri Dec 6 11:41:13 2019 +0100 minor commit 33ca266535c28da14c9de57eb4aa12ad2e527d36 Author: les <lesion@autistici.org> Date: Fri Dec 6 11:38:15 2019 +0100 prepare gh as a mirror commit 5c8875411631048210eb50030e83cb272a40d54a Author: lesion <lesion@autistici.org> Date: Sun Mar 19 23:18:40 2023 +0100 update deps commit 7eac4fce324a6e75cdda296d672317cf2497c005 Author: lesion <lesion@autistici.org> Date: Sun Mar 19 23:18:25 2023 +0100 refactoring event detail page commit dc9ca88bc62708b869be3f3efe51d9155fe17830 Author: lesion <lesion@autistici.org> Date: Sun Mar 19 23:17:35 2023 +0100 show hide boosts/bookmarks, fix #241 commit d4a25b1dd0b9404e0de7ca5cf546f0d29bc8943e Author: lesion <lesion@autistici.org> Date: Sun Mar 19 23:13:58 2023 +0100 minor with unixFormat commit 239d6bcab19ef3cf53d1b2544a5c9a36ba8dd25b Author: lesion <lesion@autistici.org> Date: Sun Mar 19 23:12:25 2023 +0100 minor commit b149f980db8245c12a6940997be6d5657bddf829 Author: lesion <lesion@autistici.org> Date: Sun Mar 19 23:12:05 2023 +0100 minor commit 6f2955c584ec9da2c10991fb09ab57735a31385d Author: lesion <lesion@autistici.org> Date: Sun Mar 19 23:11:49 2023 +0100 minor commit dd586c38c9ef2f0b408ef90eb27dffe53355305a Author: lesion <lesion@autistici.org> Date: Sun Mar 19 23:11:31 2023 +0100 minor on style commit 544823717b9801e63bef15394b25bfbcd842c10f Author: lesion <lesion@autistici.org> Date: Sun Mar 19 23:11:15 2023 +0100 fix multidate issue, go to event on save commit 9ef0c75d03ee2d69f89034b28d6991f85ffefb06 Author: lesion <lesion@autistici.org> Date: Sun Mar 19 23:09:47 2023 +0100 use v-lazy, improve search, full tag/place events commit ac91072b79960815e0535e63ac45e0b5c6100764 Author: lesion <lesion@autistici.org> Date: Sun Mar 19 22:47:51 2023 +0100 increase DDOS limiter to 250 req/min commit d0ca92efb4afe48d2fd236083d9e290ab8d49704 Author: lesion <lesion@autistici.org> Date: Sun Mar 19 22:47:14 2023 +0100 update changelog commit 2d54f19225acc4118d60ef8c9d12f9495e6776ca Author: lesion <lesion@autistici.org> Date: Sun Mar 19 22:46:51 2023 +0100 use luxon instead of dayjs, new $time plugin
2023-03-19 23:26:57 +01:00
overflow: auto;
2020-08-16 14:07:25 +02:00
// position: absolute;
}
// .focused .::after {
// width: 100%;
// }
2020-08-16 14:07:25 +02:00
.ProseMirror {
padding: 5px 15px 0px 15px;
2020-08-16 14:07:25 +02:00
outline: 0;
min-height: 100px;
max-height: 350px;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #FF4500 transparent;
overflow-y: auto;
2020-08-16 14:07:25 +02:00
}
2020-07-28 12:24:39 +02:00
}
2020-01-15 23:18:00 +01:00
</style>