1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-03-10 13:38:20 +00:00
mycorrhiza/web/static/toolbar.js
Timur Ismagilov 41733c50bd
New templates #117 (#236)
Didn't have the chance to migrate //all// templates just yet. We'll get there.

* Implement yet another template system

* Move orphans to the new system and fix a bug in it

* Link orphans in the admin panel

* Move the backlink handlers to the web package

* Move auth routing to web

* Move /user-list to the new system

* Move change password and translate it

* Move stuff

* Move admin-related stuff to the web

* Move a lot of files into internal dir

Outside of it are web and stuff that needs further refactoring

* Fix static not loading and de-qtpl tree

* Move tree to internal

* Keep the globe on the same line #230

* Revert "Keep the globe on the same line #230"

This reverts commit ae78e5e459b1e980ba89bf29e61f75c0625ed2c7.

* Migrate templates from hypview: delete, edit, start empty and existing WIP

The delete media view was removed, I didn't even know it still existed as a GET. A rudiment.

* Make views multi-file and break compilation

* Megarefactoring of hypha views

* Auth-related stuffs

* Fix some of those weird imports

* Migrate cat views

* Fix cat js

* Lower standards

* Internalize trauma
2024-09-07 21:22:41 +03:00

153 lines
4.9 KiB
JavaScript

const editTextarea = document.getElementsByClassName('edit-form__textarea')[0]
function placeCursor(position, el = editTextarea) {
el.selectionEnd = position
el.selectionStart = el.selectionEnd
}
function selectRange(left, right, el = editTextarea) {
el.selectionEnd = right
el.selectionStart = left
}
function getSelectedText(el = editTextarea) {
const [start, end] = [el.selectionStart, el.selectionEnd]
const text = el.value
return text.substring(start, end)
}
function textInserter(text, cursorPosition = null, el = editTextarea) {
return function() {
window.hyphaChanged = true
const [start, end] = [el.selectionStart, el.selectionEnd]
el.setRangeText(text, start, end, 'select')
el.focus()
if (cursorPosition == null) {
placeCursor(end + text.length)
} else {
placeCursor(end + cursorPosition)
}
}
}
function selectionWrapper(cursorPosition, prefix, postfix = null, el = editTextarea) {
return function() {
window.hyphaChanged = true
let [start, end] = [el.selectionStart, el.selectionEnd]
if (postfix == null) {
postfix = prefix
}
let text = getSelectedText(el)
let removing = false
let result
if (text.startsWith(prefix) && text.endsWith(postfix)) {
// selection is decorated, so we just cut it
removing = true
result = text.substring(cursorPosition, text.length - cursorPosition)
} else if ( (prefix === el.value.slice(start-cursorPosition, start)) &&
(postfix === el.value.slice(end, end+cursorPosition)) ) {
// selection is surrounded by decorations
removing = true
result = text
start -= cursorPosition
end += cursorPosition
} else {
// no decorations, so we add them
result = prefix + text + postfix
}
el.setRangeText(result, start, end, 'select')
el.focus()
if (removing) {
selectRange(start, end-cursorPosition*2)
} else {
selectRange(start+cursorPosition, end+cursorPosition)
}
}
}
const wrapBold = selectionWrapper(2, '**'),
wrapItalic = selectionWrapper(2, '//'),
wrapMonospace = selectionWrapper(1, '`'),
wrapHighlighted = selectionWrapper(2, '++'),
wrapLifted = selectionWrapper(2, '^^'),
wrapLowered = selectionWrapper(2, ',,'),
wrapStrikethrough = selectionWrapper(2, '~~'),
wrapUnderline = selectionWrapper(2, '__'),
wrapLink = selectionWrapper(2, '[[', ']]'),
wrapTitleLink = selectionWrapper(2, '[[', ' | ]]')
const insertHorizontalBar = textInserter('\n----\n'),
insertImgBlock = textInserter('\nimg {\n \n}\n', 10),
insertTableBlock = textInserter('\ntable {\n \n}\n', 12),
insertRocket = textInserter('\n=> '),
insertXcl = textInserter('\n<= '),
insertHeading1 = textInserter('\n= '),
insertHeading2 = textInserter('\n== '),
insertCodeblock = textInserter('\n```\n\n```\n', 5),
insertBulletedList = textInserter('\n* '),
insertNumberedList = textInserter('\n*. ')
function insertDateUTC() {
let date = new Date().toISOString().split('T')[0]
textInserter(date)()
}
function insertTimeUTC() {
let time = new Date().toISOString().substring(11, 16) + " UTC "
textInserter(time)()
}
function len2(n) {
return n < 10 ? `0${n}` : `${n}`
}
function insertDateLocal() {
let d = new Date()
textInserter(`${d.getFullYear()}-${len2(d.getMonth() + 1)}-${len2(d.getDate())}`)()
}
function insertTimeLocal() {
let d = new Date()
textInserter(`${len2(d.getHours())}:${len2(d.getMinutes())} `)()
}
function insertUserlink() {
const userlink = document.querySelector('.auth-links__user-link')
const userHypha = userlink.getAttribute('href').substring(7) // no /hypha/
textInserter('[[' + userHypha + ']]')()
}
const buttonsHandlers = {
link: wrapLink,
titlelink: wrapTitleLink,
heading1: insertHeading1,
heading2: insertHeading2,
bold: wrapBold,
italic: wrapItalic,
highlighted: wrapHighlighted,
underline: wrapUnderline,
monospace: wrapMonospace,
lifted: wrapLifted,
lowered: wrapLowered,
strikethrough: wrapStrikethrough,
rocket: insertRocket,
xcl: insertXcl,
img: insertImgBlock,
table: insertTableBlock,
hr: insertHorizontalBar,
codeblock: insertCodeblock,
bulletedlist: insertBulletedList,
numberedlist: insertNumberedList,
'date-utc': insertDateUTC,
'time-utc': insertTimeUTC,
'date-local': insertDateLocal,
'time-local': insertTimeLocal,
'user-link': insertUserlink,
}
for (const key of Object.keys(buttonsHandlers)) {
const button = document.getElementsByClassName(`edit-toolbar__${key}`)[0]
if (button) {
button.addEventListener('click', buttonsHandlers[key])
}
}