Compare commits

...

5 commits

Author SHA1 Message Date
Henry Jameson
0fec78ec81 Merge branch 'instance-migration' into shigusegubu-themes3 2026-01-29 21:33:04 +02:00
Henry Jameson
20e781c71d fix ISP (again) 2026-01-29 21:32:53 +02:00
Henry Jameson
e3a441310f fix/revert privateMode to avoid conflict with keyword 2026-01-29 21:32:37 +02:00
Henry Jameson
6eb94da3e8 make sw shut up 2026-01-29 21:24:21 +02:00
Henry Jameson
775a469507 fix background 2026-01-29 21:24:18 +02:00
9 changed files with 15 additions and 19 deletions

View file

@ -133,11 +133,8 @@ export default {
userBackground() {
return this.currentUser.background_image
},
instanceBackground() {
return this.mergedConfig.hideInstanceWallpaper ? null : this.background
},
background() {
return this.userBackground || this.instanceBackground
return this.userBackground || (this.mergedConfig.hideInstanceWallpaper ? null : this.instanceBackground)
},
bgStyle() {
if (this.background) {
@ -204,7 +201,7 @@ export default {
]),
...mapState(useInstanceStore, ['styleDataUsed', 'private']),
...mapState(useInstanceStore, {
background: (store) => store.instanceIdentity.background,
instanceBackground: (store) => store.instanceIdentity.background,
showFeaturesPanel: (store) => store.instanceIdentity.showFeaturesPanel,
showInstanceSpecificPanel: (store) =>
store.instanceIdentity.showInstanceSpecificPanel,

View file

@ -201,7 +201,7 @@ const getInstancePanel = async ({ store }) => {
if (res.ok) {
const html = await res.text()
useInstanceStore().set({
name: 'instanceIdentity.instanceSpecificPanelContent',
path: 'instanceIdentity.instanceSpecificPanelContent',
value: html,
})
} else {

View file

@ -33,7 +33,7 @@
</router-link>
<div class="item right actions">
<search-bar
v-if="currentUser || !privateMode"
v-if="currentUser || !private"
@toggled="onSearchBarToggled"
@click.stop
/>

View file

@ -16,10 +16,9 @@ export const ListsMenuContent = {
...mapPiniaState(useListsStore, {
lists: getListEntries,
}),
...mapPiniaState(useInstanceStore, ['private','federating']),
...mapState({
currentUser: (state) => state.users.currentUser,
privateMode: (state) => useInstanceStore().private,
federating: (state) => useInstanceStore().federating,
}),
},
}

View file

@ -112,8 +112,9 @@ const NavPanel = {
unreadAnnouncementCount: 'unreadAnnouncementCount',
supportsAnnouncements: (store) => store.supportsAnnouncements,
}),
...mapPiniaState(useInstanceStore, ['private', 'federating']),
...mapPiniaState(useInstanceStore, ['federating']),
...mapPiniaState(useInstanceStore, {
privateMode: (store) => store.private,
pleromaChatMessagesAvailable: (store) =>
store.featureSet.pleromaChatMessagesAvailable,
bookmarkFolders: (store) =>

View file

@ -79,12 +79,6 @@ const SideDrawer = {
followRequestCount() {
return this.$store.state.api.followRequests.length
},
privateMode() {
return useInstanceStore().private
},
federating() {
return useInstanceStore().federating
},
timelinesRoute() {
let name
if (useInterfaceStore().lastTimeline) {

View file

@ -47,7 +47,7 @@
</router-link>
</li>
<li
v-if="currentUser || !privateMode"
v-if="currentUser || !private"
@click="toggleDrawer"
>
<router-link
@ -166,7 +166,7 @@
</ul>
<ul>
<li
v-if="currentUser || !privateMode"
v-if="currentUser || !private"
@click="toggleDrawer"
>
<router-link

View file

@ -39,7 +39,7 @@ const setSettings = async () => {
const locale = vuexState.config.interfaceLanguage || 'en'
i18n.locale = locale
const notificationsNativeArray = Object.entries(
vuexState.config.notificationNative,
vuexState.config.notificationNative || {},
)
state.webPushAlwaysShowNotifications =
vuexState.config.webPushAlwaysShowNotifications

View file

@ -88,6 +88,11 @@ export default defineConfig(async ({ mode, command }) => {
changeOrigin: true,
cookieDomainRewrite: 'localhost',
},
'/instance': {
target,
changeOrigin: true,
cookieDomainRewrite: 'localhost',
},
'/socket': {
target,
changeOrigin: true,