2017-11-21 07:45:09 +11:00
|
|
|
import { times } from 'lodash'
|
|
|
|
import { rgb2hex, hex2rgb } from '../color_convert/color_convert.js'
|
2017-02-23 07:14:55 +11:00
|
|
|
|
2017-11-18 02:24:42 +11:00
|
|
|
// While this is not used anymore right now, I left it in if we want to do custom
|
|
|
|
// styles that aren't just colors, so user can pick from a few different distinct
|
|
|
|
// styles as well as set their own colors in the future.
|
|
|
|
|
|
|
|
const setStyle = (href, commit) => {
|
2017-01-17 03:44:26 +11:00
|
|
|
/***
|
|
|
|
What's going on here?
|
|
|
|
I want to make it easy for admins to style this application. To have
|
|
|
|
a good set of default themes, I chose the system from base16
|
|
|
|
(https://chriskempson.github.io/base16/) to style all elements. They
|
|
|
|
all have the base00..0F classes. So the only thing an admin needs to
|
|
|
|
do to style Pleroma is to change these colors in that one css file.
|
|
|
|
Some default things (body text color, link color) need to be set dy-
|
|
|
|
namically, so this is done here by waiting for the stylesheet to be
|
|
|
|
loaded and then creating an element with the respective classes.
|
|
|
|
|
|
|
|
It is a bit weird, but should make life for admins somewhat easier.
|
|
|
|
***/
|
|
|
|
const head = document.head
|
|
|
|
const body = document.body
|
|
|
|
body.style.display = 'none'
|
|
|
|
const cssEl = document.createElement('link')
|
|
|
|
cssEl.setAttribute('rel', 'stylesheet')
|
|
|
|
cssEl.setAttribute('href', href)
|
|
|
|
head.appendChild(cssEl)
|
|
|
|
|
|
|
|
const setDynamic = () => {
|
|
|
|
const baseEl = document.createElement('div')
|
2017-01-21 09:39:38 +11:00
|
|
|
body.appendChild(baseEl)
|
2017-02-23 07:14:55 +11:00
|
|
|
|
|
|
|
let colors = {}
|
|
|
|
times(16, (n) => {
|
|
|
|
const name = `base0${n.toString(16).toUpperCase()}`
|
|
|
|
baseEl.setAttribute('class', name)
|
|
|
|
const color = window.getComputedStyle(baseEl).getPropertyValue('color')
|
|
|
|
colors[name] = color
|
|
|
|
})
|
|
|
|
|
|
|
|
commit('setOption', { name: 'colors', value: colors })
|
|
|
|
|
|
|
|
body.removeChild(baseEl)
|
|
|
|
|
2017-01-17 03:44:26 +11:00
|
|
|
const styleEl = document.createElement('style')
|
|
|
|
head.appendChild(styleEl)
|
2018-04-01 04:14:36 +10:00
|
|
|
// const styleSheet = styleEl.sheet
|
2017-01-17 03:44:26 +11:00
|
|
|
|
2018-04-01 04:14:36 +10:00
|
|
|
// styleSheet.insertRule(`a { color: ${colors['base08']}`, 'index-max')
|
|
|
|
// styleSheet.insertRule(`body { color: ${colors['base05']}`, 'index-max')
|
2017-01-17 03:44:26 +11:00
|
|
|
body.style.display = 'initial'
|
|
|
|
}
|
2017-11-14 10:37:49 +11:00
|
|
|
|
2017-11-18 02:24:42 +11:00
|
|
|
cssEl.addEventListener('load', setDynamic)
|
|
|
|
}
|
2017-11-14 10:37:49 +11:00
|
|
|
|
2017-11-18 02:24:42 +11:00
|
|
|
const setColors = (col, commit) => {
|
|
|
|
const head = document.head
|
|
|
|
const body = document.body
|
|
|
|
body.style.display = 'none'
|
2017-11-14 10:37:49 +11:00
|
|
|
|
2017-11-18 02:24:42 +11:00
|
|
|
const styleEl = document.createElement('style')
|
|
|
|
head.appendChild(styleEl)
|
|
|
|
const styleSheet = styleEl.sheet
|
2017-11-17 11:17:36 +11:00
|
|
|
|
2017-11-18 02:24:42 +11:00
|
|
|
const isDark = (col.text.r + col.text.g + col.text.b) > (col.bg.r + col.bg.g + col.bg.b)
|
|
|
|
let colors = {}
|
2017-11-14 10:37:49 +11:00
|
|
|
|
2017-11-18 02:24:42 +11:00
|
|
|
let mod = 10
|
|
|
|
if (isDark) {
|
|
|
|
mod = mod * -1
|
2017-11-14 10:37:49 +11:00
|
|
|
}
|
2017-11-22 10:00:25 +11:00
|
|
|
|
2018-04-01 04:14:36 +10:00
|
|
|
colors.bg = rgb2hex(col.bg.r, col.bg.g, col.bg.b) // background
|
|
|
|
colors.lightBg = rgb2hex((col.bg.r + col.fg.r) / 2, (col.bg.g + col.fg.g) / 2, (col.bg.b + col.fg.b) / 2) // hilighted bg
|
|
|
|
colors.btn = rgb2hex(col.fg.r, col.fg.g, col.fg.b) // panels & buttons
|
|
|
|
colors.border = rgb2hex(col.fg.r - mod, col.fg.g - mod, col.fg.b - mod) // borders
|
|
|
|
colors.faint = rgb2hex(col.text.r + mod * 2, col.text.g + mod * 2, col.text.b + mod * 2) // faint text
|
|
|
|
colors.fg = rgb2hex(col.text.r, col.text.g, col.text.b) // text
|
|
|
|
colors.lightFg = rgb2hex(col.text.r - mod, col.text.g - mod, col.text.b - mod) // strong text
|
2017-11-18 02:24:42 +11:00
|
|
|
colors['base07'] = rgb2hex(col.text.r - mod * 2, col.text.g - mod * 2, col.text.b - mod * 2)
|
2018-04-01 04:14:36 +10:00
|
|
|
colors.link = rgb2hex(col.link.r, col.link.g, col.link.b) // links
|
|
|
|
colors.icon = rgb2hex((col.bg.r + col.text.r) / 2, (col.bg.g + col.text.g) / 2, (col.bg.b + col.text.b) / 2) // icons
|
|
|
|
colors.cBlue = 'blue'
|
|
|
|
colors.cRed = 'red'
|
|
|
|
colors.cGreen = 'green'
|
|
|
|
colors.cYellow = 'yellow'
|
|
|
|
colors.cOrange = 'orange'
|
|
|
|
|
|
|
|
const colorVars = Object.entries(colors).map(([k, v]) => {
|
|
|
|
return `--${k}: ${v}`
|
2017-11-18 02:24:42 +11:00
|
|
|
})
|
2018-04-01 04:14:36 +10:00
|
|
|
console.log(colorVars)
|
2017-11-18 02:24:42 +11:00
|
|
|
|
2018-04-01 04:14:36 +10:00
|
|
|
styleSheet.insertRule(`body { ${colorVars.join(';')} }`, 'index-max')
|
|
|
|
// styleSheet.insertRule(`.base05-border { border-color: ${colors['base05']}`, 'index-max')
|
|
|
|
// styleSheet.insertRule(`.base03-border { border-color: ${colors['base03']}`, 'index-max')
|
2017-11-18 02:24:42 +11:00
|
|
|
body.style.display = 'initial'
|
2017-11-18 22:13:51 +11:00
|
|
|
|
|
|
|
commit('setOption', { name: 'colors', value: colors })
|
|
|
|
commit('setOption', { name: 'customTheme', value: col })
|
2017-11-18 02:24:42 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
const setPreset = (val, commit) => {
|
|
|
|
window.fetch('/static/styles.json')
|
|
|
|
.then((data) => data.json())
|
|
|
|
.then((themes) => {
|
2017-11-18 22:27:37 +11:00
|
|
|
const theme = themes[val] ? themes[val] : themes['pleroma-dark']
|
2017-11-18 02:24:42 +11:00
|
|
|
const bgRgb = hex2rgb(theme[1])
|
|
|
|
const fgRgb = hex2rgb(theme[2])
|
|
|
|
const textRgb = hex2rgb(theme[3])
|
|
|
|
const linkRgb = hex2rgb(theme[4])
|
|
|
|
const col = {
|
|
|
|
bg: bgRgb,
|
|
|
|
fg: fgRgb,
|
|
|
|
text: textRgb,
|
|
|
|
link: linkRgb
|
|
|
|
}
|
2017-11-18 22:13:51 +11:00
|
|
|
// This is a hack, this function is only called during initial load.
|
|
|
|
// We want to cancel loading the theme from config.json if we're already
|
|
|
|
// loading a theme from the persisted state.
|
|
|
|
// Needed some way of dealing with the async way of things.
|
|
|
|
// load config -> set preset -> wait for styles.json to load ->
|
|
|
|
// load persisted state -> set colors -> styles.json loaded -> set colors
|
|
|
|
if (!window.themeLoaded) {
|
|
|
|
setColors(col, commit)
|
|
|
|
}
|
2017-11-18 02:24:42 +11:00
|
|
|
})
|
2017-01-17 03:44:26 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
const StyleSetter = {
|
2017-11-18 02:24:42 +11:00
|
|
|
setStyle,
|
|
|
|
setPreset,
|
|
|
|
setColors
|
2017-01-17 03:44:26 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
export default StyleSetter
|