Merge pull request '[PR]: Add advanced MFM toggle' (#10254) from Freeplay/calckey:advanced-mfm into develop

Reviewed-on: https://codeberg.org/calckey/calckey/pulls/10254
This commit is contained in:
Kainoa Kanter 2023-06-04 18:59:56 +00:00
commit 1ae1400a64
5 changed files with 293 additions and 251 deletions

View file

@ -1211,6 +1211,8 @@ _mfm:
intro: "MFM is a markup language used on Misskey, Calckey, Akkoma, and more that\ intro: "MFM is a markup language used on Misskey, Calckey, Akkoma, and more that\
\ can be used in many places. Here you can view a list of all available MFM syntax." \ can be used in many places. Here you can view a list of all available MFM syntax."
dummy: "Calckey expands the world of the Fediverse" dummy: "Calckey expands the world of the Fediverse"
advanced: "Advanced MFM"
advancedDescription: "If disabled, only allows for basic markup unless animated MFM is playing"
mention: "Mention" mention: "Mention"
mentionDescription: "You can specify a user by using an At-Symbol and a username." mentionDescription: "You can specify a user by using an At-Symbol and a username."
hashtag: "Hashtag" hashtag: "Hashtag"

View file

@ -42,7 +42,8 @@
isLong, isLong,
manyImages: note.files.length > 4, manyImages: note.files.length > 4,
showContent: note.cw && !showContent, showContent: note.cw && !showContent,
disableAnim: disableMfm, animatedMfm: !disableMfm,
advancedMfm,
}" }"
> >
<XShowMoreButton <XShowMoreButton
@ -231,7 +232,9 @@ const mfms = props.note.text
const hasMfm = $ref(mfms && mfms.length > 0); const hasMfm = $ref(mfms && mfms.length > 0);
let disableMfm = $ref(hasMfm && defaultStore.state.animatedMfm); let disableMfm = $ref(defaultStore.state.animatedMfm);
const advancedMfm = defaultStore.state.advancedMfm;
async function toggleMfm() { async function toggleMfm() {
if (disableMfm) { if (disableMfm) {
@ -385,7 +388,7 @@ function focusFooter(ev) {
} }
} }
&.disableAnim :deep(span) { &:not(.animatedMfm) :deep(span) {
animation: none !important; animation: none !important;
} }
} }

View file

@ -6,7 +6,7 @@
:author="author" :author="author"
:customEmojis="customEmojis" :customEmojis="customEmojis"
:isNote="isNote" :isNote="isNote"
class="havbbuyv" class="mfm-object"
:class="{ nowrap }" :class="{ nowrap }"
/> />
</template> </template>
@ -34,6 +34,30 @@ const props = withDefaults(
</script> </script>
<style lang="scss"> <style lang="scss">
.content:not(.advancedMfm):not(.animatedMfm) {
.mfm-object {
[style*="animation:"] {
animation: none !important;
}
[style*="transform:"] {
transform: none !important;
}
[style*="background-color:"] {
background: none !important;
}
[style*="color:"] {
color: inherit !important;
}
[style*="font-family:"] {
font-family: inherit !important;
}
[style*="clip-path:"] {
clip-path: none !important;
}
}
}
.content.advancedMfm,
.content.animatedMfm {
.mfm-x2 { .mfm-x2 {
--mfm-zoom-size: 200%; --mfm-zoom-size: 200%;
} }
@ -308,10 +332,11 @@ const props = withDefaults(
opacity: 1; opacity: 1;
} }
} }
}
</style> </style>
<style lang="scss" scoped> <style lang="scss" scoped>
.havbbuyv { .mfm-object {
white-space: pre-wrap; white-space: pre-wrap;
&.nowrap { &.nowrap {

View file

@ -54,12 +54,6 @@
<FormSwitch v-model="disablePagesScript" class="_formBlock">{{ <FormSwitch v-model="disablePagesScript" class="_formBlock">{{
i18n.ts.disablePagesScript i18n.ts.disablePagesScript
}}</FormSwitch> }}</FormSwitch>
<FormSwitch v-model="expandOnNoteClick" class="_formBlock"
>{{ i18n.ts.expandOnNoteClick
}}<template #caption>{{
i18n.ts.expandOnNoteClickDesc
}}</template>
</FormSwitch>
<FormSwitch v-model="profile.showTimelineReplies" class="_formBlock" <FormSwitch v-model="profile.showTimelineReplies" class="_formBlock"
>{{ i18n.ts.flagShowTimelineReplies >{{ i18n.ts.flagShowTimelineReplies
}}<template #caption }}<template #caption
@ -87,6 +81,18 @@
<FormSection> <FormSection>
<template #label>{{ i18n.ts.accessibility }}</template> <template #label>{{ i18n.ts.accessibility }}</template>
<FormSwitch v-model="expandOnNoteClick" class="_formBlock"
>{{ i18n.ts.expandOnNoteClick
}}<template #caption>{{
i18n.ts.expandOnNoteClickDesc
}}</template>
</FormSwitch>
<FormSwitch v-model="advancedMfm" class="_formBlock">
{{ i18n.ts._mfm.advanced
}}<template #caption>{{
i18n.ts._mfm.advancedDescription
}}</template>
</FormSwitch>
<FormSwitch v-model="autoplayMfm" class="_formBlock"> <FormSwitch v-model="autoplayMfm" class="_formBlock">
{{ i18n.ts._mfm.alwaysPlay }} {{ i18n.ts._mfm.alwaysPlay }}
<template #caption> <template #caption>
@ -285,6 +291,7 @@ const showGapBetweenNotesInTimeline = computed(
defaultStore.makeGetterSetter("showGapBetweenNotesInTimeline") defaultStore.makeGetterSetter("showGapBetweenNotesInTimeline")
); );
const showAds = computed(defaultStore.makeGetterSetter("showAds")); const showAds = computed(defaultStore.makeGetterSetter("showAds"));
const advancedMfm = computed(defaultStore.makeGetterSetter("advancedMfm"));
const autoplayMfm = computed( const autoplayMfm = computed(
defaultStore.makeGetterSetter( defaultStore.makeGetterSetter(
"animatedMfm", "animatedMfm",
@ -374,6 +381,7 @@ watch(
swipeOnDesktop, swipeOnDesktop,
seperateRenoteQuote, seperateRenoteQuote,
showAdminUpdates, showAdminUpdates,
advancedMfm,
autoplayMfm, autoplayMfm,
expandOnNoteClick, expandOnNoteClick,
], ],

View file

@ -174,6 +174,10 @@ export const defaultStore = markRaw(
where: "device", where: "device",
default: true, default: true,
}, },
advancedMfm: {
where: "device",
default: true,
},
animatedMfm: { animatedMfm: {
where: "device", where: "device",
default: true, default: true,