semaphore/src/routes/_actions/contentWarnings.js

13 lines
494 B
JavaScript
Raw Normal View History

import { store } from '../_store/store.js'
2018-03-03 23:44:43 +00:00
export function toggleContentWarningShown (realm) {
2019-08-03 21:49:37 +01:00
const shown = store.getComposeData(realm, 'contentWarningShown')
const contentWarning = store.getComposeData(realm, 'contentWarning')
const newShown = !shown
store.setComposeData(realm, {
contentWarning: newShown ? contentWarning : '',
contentWarningShown: newShown,
sensitive: contentWarning && newShown // toggling content warning automatically toggles sensitive media
})
2018-03-03 23:44:43 +00:00
}