update modals config

This commit is contained in:
SrGooglo 2023-10-10 13:40:39 +00:00
parent 2a6d2a379e
commit 4786cb39f7

View File

@ -231,7 +231,9 @@ class ComtyApp extends React.Component {
}) })
} }
return app.layout.modal.open("searcher", (props) => <Searcher autoFocus renderResults {...props} />) return app.layout.modal.open("searcher", (props) => <Searcher autoFocus renderResults {...props} />, {
framed: false
})
}, },
openFullImageViewer: (src) => { openFullImageViewer: (src) => {
const win = new DOMWindow({ const win = new DOMWindow({
@ -249,7 +251,9 @@ class ComtyApp extends React.Component {
}, },
openPostCreator: () => { openPostCreator: () => {
app.layout.modal.open("post_creator", (props) => <PostCreator {...props} />) app.layout.modal.open("post_creator", (props) => <PostCreator {...props} />, {
framed: false
})
} }
}, },
navigation: { navigation: {
@ -265,6 +269,9 @@ class ComtyApp extends React.Component {
goMain: () => { goMain: () => {
return app.location.push(config.app.mainPath ?? "/home") return app.location.push(config.app.mainPath ?? "/home")
}, },
goToMusic: () => {
return app.location.push("/music")
},
goToSettings: (setting_id) => { goToSettings: (setting_id) => {
app.cores.sound.useUIAudio("navigation.settings") app.cores.sound.useUIAudio("navigation.settings")
@ -289,6 +296,9 @@ class ComtyApp extends React.Component {
goToPost: (post_id) => { goToPost: (post_id) => {
return app.location.push(`/post/${post_id}`) return app.location.push(`/post/${post_id}`)
}, },
goToPlaylist: (playlist_id) => {
return app.location.push(`/play/${playlist_id}`)
}
}, },
electron: { electron: {
closeApp: () => { closeApp: () => {