2018-03-04 00:44:43 +01:00
|
|
|
import { store } from '../_store/store'
|
|
|
|
|
|
|
|
export function toggleContentWarningShown (realm) {
|
2019-08-03 22:49:37 +02:00
|
|
|
const shown = store.getComposeData(realm, 'contentWarningShown')
|
|
|
|
const contentWarning = store.getComposeData(realm, 'contentWarning')
|
|
|
|
const newShown = !shown
|
2018-03-29 03:37:53 +02:00
|
|
|
store.setComposeData(realm, {
|
2018-04-12 07:55:11 +02:00
|
|
|
contentWarning: newShown ? contentWarning : '',
|
2019-09-15 19:45:46 +02:00
|
|
|
contentWarningShown: newShown,
|
|
|
|
sensitive: contentWarning && newShown // toggling content warning automatically toggles sensitive media
|
2018-03-29 03:37:53 +02:00
|
|
|
})
|
2018-03-04 00:44:43 +01:00
|
|
|
}
|