2017-02-23 07:14:55 +11:00
|
|
|
import { times } from 'lodash'
|
|
|
|
|
|
|
|
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)
|
|
|
|
const styleSheet = styleEl.sheet
|
|
|
|
|
2017-02-23 07:14:55 +11:00
|
|
|
styleSheet.insertRule(`a { color: ${colors['base08']}`, 'index-max')
|
|
|
|
styleSheet.insertRule(`body { color: ${colors['base05']}`, 'index-max')
|
|
|
|
styleSheet.insertRule(`.base05-border { border-color: ${colors['base05']}`, 'index-max')
|
2017-03-09 10:09:23 +11:00
|
|
|
styleSheet.insertRule(`.base03-border { border-color: ${colors['base03']}`, 'index-max')
|
2017-01-17 03:44:26 +11:00
|
|
|
body.style.display = 'initial'
|
|
|
|
}
|
|
|
|
cssEl.addEventListener('load', setDynamic)
|
|
|
|
}
|
|
|
|
|
|
|
|
const StyleSetter = {
|
|
|
|
setStyle
|
|
|
|
}
|
|
|
|
|
|
|
|
export default StyleSetter
|