Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F111897
interface.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
5 KB
Referenced Files
None
Subscribers
None
interface.js
View Options
const
defaultState
=
{
themeApplied
:
false
,
settingsModalState
:
'hidden'
,
settingsModalLoadedUser
:
false
,
settingsModalLoadedAdmin
:
false
,
settingsModalTargetTab
:
null
,
settingsModalMode
:
'user'
,
settings
:
{
currentSaveStateNotice
:
null
,
noticeClearTimeout
:
null
,
notificationPermission
:
null
},
browserSupport
:
{
cssFilter
:
window
.
CSS
&&
window
.
CSS
.
supports
&&
(
window
.
CSS
.
supports
(
'filter'
,
'drop-shadow(0 0)'
)
||
window
.
CSS
.
supports
(
'-webkit-filter'
,
'drop-shadow(0 0)'
)
)
},
layoutType
:
'normal'
,
globalNotices
:
[],
layoutHeight
:
0
,
lastTimeline
:
null
}
const
interfaceMod
=
{
state
:
defaultState
,
mutations
:
{
settingsSaved
(
state
,
{
success
,
error
})
{
if
(
success
)
{
if
(
state
.
noticeClearTimeout
)
{
clearTimeout
(
state
.
noticeClearTimeout
)
}
state
.
settings
.
currentSaveStateNotice
=
{
error
:
false
,
data
:
success
}
state
.
settings
.
noticeClearTimeout
=
setTimeout
(()
=>
delete
state
.
settings
.
currentSaveStateNotice
,
2000
)
}
else
{
state
.
settings
.
currentSaveStateNotice
=
{
error
:
true
,
errorData
:
error
}
}
},
setThemeApplied
(
state
)
{
state
.
themeApplied
=
true
},
setNotificationPermission
(
state
,
permission
)
{
state
.
notificationPermission
=
permission
},
setLayoutType
(
state
,
value
)
{
state
.
layoutType
=
value
},
closeSettingsModal
(
state
)
{
state
.
settingsModalState
=
'hidden'
},
togglePeekSettingsModal
(
state
)
{
switch
(
state
.
settingsModalState
)
{
case
'minimized'
:
state
.
settingsModalState
=
'visible'
return
case
'visible'
:
state
.
settingsModalState
=
'minimized'
return
default
:
throw
new
Error
(
'Illegal minimization state of settings modal'
)
}
},
openSettingsModal
(
state
,
value
)
{
state
.
settingsModalMode
=
value
state
.
settingsModalState
=
'visible'
if
(
value
===
'user'
)
{
if
(
!
state
.
settingsModalLoadedUser
)
{
state
.
settingsModalLoadedUser
=
true
}
}
else
if
(
value
===
'admin'
)
{
if
(
!
state
.
settingsModalLoadedAdmin
)
{
state
.
settingsModalLoadedAdmin
=
true
}
}
},
setSettingsModalTargetTab
(
state
,
value
)
{
state
.
settingsModalTargetTab
=
value
},
pushGlobalNotice
(
state
,
notice
)
{
state
.
globalNotices
.
push
(
notice
)
},
removeGlobalNotice
(
state
,
notice
)
{
state
.
globalNotices
=
state
.
globalNotices
.
filter
(
n
=>
n
!==
notice
)
},
setLayoutHeight
(
state
,
value
)
{
state
.
layoutHeight
=
value
},
setLayoutWidth
(
state
,
value
)
{
state
.
layoutWidth
=
value
},
setLastTimeline
(
state
,
value
)
{
state
.
lastTimeline
=
value
}
},
actions
:
{
setPageTitle
({
rootState
},
option
=
''
)
{
document
.
title
=
`
${
option
}
${
rootState
.
instance
.
name
}
`
},
settingsSaved
({
commit
,
dispatch
},
{
success
,
error
})
{
commit
(
'settingsSaved'
,
{
success
,
error
})
},
setNotificationPermission
({
commit
},
permission
)
{
commit
(
'setNotificationPermission'
,
permission
)
},
closeSettingsModal
({
commit
})
{
commit
(
'closeSettingsModal'
)
},
openSettingsModal
({
commit
},
value
=
'user'
)
{
commit
(
'openSettingsModal'
,
value
)
},
togglePeekSettingsModal
({
commit
})
{
commit
(
'togglePeekSettingsModal'
)
},
clearSettingsModalTargetTab
({
commit
})
{
commit
(
'setSettingsModalTargetTab'
,
null
)
},
openSettingsModalTab
({
commit
},
value
)
{
commit
(
'setSettingsModalTargetTab'
,
value
)
commit
(
'openSettingsModal'
,
'user'
)
},
pushGlobalNotice
(
{
commit
,
dispatch
,
state
},
{
messageKey
,
messageArgs
=
{},
level
=
'error'
,
timeout
=
0
})
{
const
notice
=
{
messageKey
,
messageArgs
,
level
}
commit
(
'pushGlobalNotice'
,
notice
)
// Adding a new element to array wraps it in a Proxy, which breaks the comparison
// TODO: Generate UUID or something instead or relying on !== operator?
const
newNotice
=
state
.
globalNotices
[
state
.
globalNotices
.
length
-
1
]
if
(
timeout
)
{
setTimeout
(()
=>
dispatch
(
'removeGlobalNotice'
,
newNotice
),
timeout
)
}
return
newNotice
},
removeGlobalNotice
({
commit
},
notice
)
{
commit
(
'removeGlobalNotice'
,
notice
)
},
setLayoutHeight
({
commit
},
value
)
{
commit
(
'setLayoutHeight'
,
value
)
},
// value is optional, assuming it was cached prior
setLayoutWidth
({
commit
,
state
,
rootGetters
,
rootState
},
value
)
{
let
width
=
value
if
(
value
!==
undefined
)
{
commit
(
'setLayoutWidth'
,
value
)
}
else
{
width
=
state
.
layoutWidth
}
const
mobileLayout
=
width
<=
800
const
normalOrMobile
=
mobileLayout
?
'mobile'
:
'normal'
const
{
thirdColumnMode
}
=
rootGetters
.
mergedConfig
if
(
thirdColumnMode
===
'none'
||
!
rootState
.
users
.
currentUser
)
{
commit
(
'setLayoutType'
,
normalOrMobile
)
}
else
{
const
wideLayout
=
width
>=
1300
commit
(
'setLayoutType'
,
wideLayout
?
'wide'
:
normalOrMobile
)
}
},
setLastTimeline
({
commit
},
value
)
{
commit
(
'setLastTimeline'
,
value
)
}
}
}
export
default
interfaceMod
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Nov 21, 11:57 PM (3 h, 39 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
38635
Default Alt Text
interface.js (5 KB)
Attached To
Mode
rPUFE pleroma-fe-upstream
Attached
Detach File
Event Timeline
Log In to Comment