2018-03-03 23:44:43 +00:00
|
|
|
import { store } from '../_store/store'
|
|
|
|
|
|
|
|
export function toggleContentWarningShown (realm) {
|
|
|
|
let shown = store.getComposeData(realm, 'contentWarningShown')
|
2018-03-29 01:37:53 +00:00
|
|
|
let contentWarning = store.getComposeData(realm, 'contentWarning')
|
2018-04-12 05:55:11 +00:00
|
|
|
let newShown = !shown
|
2018-03-29 01:37:53 +00:00
|
|
|
store.setComposeData(realm, {
|
2018-04-12 05:55:11 +00:00
|
|
|
contentWarning: newShown ? contentWarning : '',
|
|
|
|
contentWarningShown: newShown
|
2018-03-29 01:37:53 +00:00
|
|
|
})
|
2018-03-03 23:44:43 +00:00
|
|
|
}
|