chore: format

This commit is contained in:
freeplay 2023-06-26 15:47:05 -04:00
parent 4d6d04a786
commit e17497e668
18 changed files with 88 additions and 33 deletions

View file

@ -55,7 +55,6 @@ import { defaultStore } from "@/store";
import { i18n } from "@/i18n";
import * as os from "@/os";
const props = defineProps<{
image: misskey.entities.DriveFile;
raw?: boolean;
@ -73,8 +72,8 @@ const url =
function captionPopup() {
os.alert({
type: "info",
text: props.image.comment
})
text: props.image.comment,
});
}
// Plugin:register_note_view_interruptor 使watch

View file

@ -85,8 +85,8 @@ const hide = ref(
function captionPopup() {
os.alert({
type: "info",
text: props.video.comment
})
text: props.video.comment,
});
}
onMounted(() => {

View file

@ -225,7 +225,7 @@ function choose(visibility: (typeof misskey.noteVisibilities)[number]): void {
}
.itemDescription {
opacity: .6;
opacity: 0.6;
display: block;
line-height: 1.5;
}

View file

@ -15,7 +15,11 @@
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="defaultStore.state.swipeOnMobile && ( deviceKind !== 'desktop' || defaultStore.state.swipeOnDesktop )"
:allow-touch-move="
defaultStore.state.swipeOnMobile &&
(deviceKind !== 'desktop' ||
defaultStore.state.swipeOnDesktop)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>

View file

@ -15,7 +15,11 @@
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="defaultStore.state.swipeOnMobile && ( deviceKind !== 'desktop' || defaultStore.state.swipeOnDesktop )"
:allow-touch-move="
defaultStore.state.swipeOnMobile &&
(deviceKind !== 'desktop' ||
defaultStore.state.swipeOnDesktop)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>

View file

@ -18,7 +18,11 @@
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="defaultStore.state.swipeOnMobile && ( deviceKind !== 'desktop' || defaultStore.state.swipeOnDesktop )"
:allow-touch-move="
defaultStore.state.swipeOnMobile &&
(deviceKind !== 'desktop' ||
defaultStore.state.swipeOnDesktop)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>

View file

@ -16,7 +16,11 @@
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="defaultStore.state.swipeOnMobile && ( deviceKind !== 'desktop' || defaultStore.state.swipeOnDesktop )"
:allow-touch-move="
defaultStore.state.swipeOnMobile &&
(deviceKind !== 'desktop' ||
defaultStore.state.swipeOnDesktop)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>

View file

@ -16,7 +16,11 @@
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="defaultStore.state.swipeOnMobile && ( deviceKind !== 'desktop' || defaultStore.state.swipeOnDesktop )"
:allow-touch-move="
defaultStore.state.swipeOnMobile &&
(deviceKind !== 'desktop' ||
defaultStore.state.swipeOnDesktop)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>

View file

@ -20,7 +20,11 @@
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="defaultStore.state.swipeOnMobile && ( deviceKind !== 'desktop' || defaultStore.state.swipeOnDesktop )"
:allow-touch-move="
defaultStore.state.swipeOnMobile &&
(deviceKind !== 'desktop' ||
defaultStore.state.swipeOnDesktop)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>

View file

@ -16,7 +16,11 @@
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="defaultStore.state.swipeOnMobile && ( deviceKind !== 'desktop' || defaultStore.state.swipeOnDesktop )"
:allow-touch-move="
defaultStore.state.swipeOnMobile &&
(deviceKind !== 'desktop' ||
defaultStore.state.swipeOnDesktop)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>

View file

@ -17,7 +17,11 @@
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="defaultStore.state.swipeOnMobile && ( deviceKind !== 'desktop' || defaultStore.state.swipeOnDesktop )"
:allow-touch-move="
defaultStore.state.swipeOnMobile &&
(deviceKind !== 'desktop' ||
defaultStore.state.swipeOnDesktop)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>

View file

@ -15,7 +15,11 @@
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="defaultStore.state.swipeOnMobile && ( deviceKind !== 'desktop' || defaultStore.state.swipeOnDesktop )"
:allow-touch-move="
defaultStore.state.swipeOnMobile &&
(deviceKind !== 'desktop' ||
defaultStore.state.swipeOnDesktop)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>

View file

@ -16,7 +16,11 @@
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="defaultStore.state.swipeOnMobile && ( deviceKind !== 'desktop' || defaultStore.state.swipeOnDesktop )"
:allow-touch-move="
defaultStore.state.swipeOnMobile &&
(deviceKind !== 'desktop' ||
defaultStore.state.swipeOnDesktop)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>

View file

@ -342,9 +342,7 @@ const showUpdates = computed(defaultStore.makeGetterSetter("showUpdates"));
const swipeOnDesktop = computed(
defaultStore.makeGetterSetter("swipeOnDesktop")
);
const swipeOnMobile = computed(
defaultStore.makeGetterSetter("swipeOnMobile")
);
const swipeOnMobile = computed(defaultStore.makeGetterSetter("swipeOnMobile"));
const showAdminUpdates = computed(
defaultStore.makeGetterSetter("showAdminUpdates")
);

View file

@ -240,7 +240,7 @@ watch(enableEmojiReactions, async () => {
watch(reactionPickerSkinTone, async () => {
await reloadAsk();
})
});
const headerActions = $computed(() => []);

View file

@ -16,7 +16,11 @@
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="defaultStore.state.swipeOnMobile && ( deviceKind !== 'desktop' || defaultStore.state.swipeOnDesktop )"
:allow-touch-move="
defaultStore.state.swipeOnMobile &&
(deviceKind !== 'desktop' ||
defaultStore.state.swipeOnDesktop)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>

View file

@ -17,8 +17,8 @@
/>
<div v-if="queue > 0" class="new">
<button
class="_buttonPrimary _shadow"
<button
class="_buttonPrimary _shadow"
@click="top()"
:class="{ instant: !$store.state.animation }"
>
@ -45,7 +45,11 @@
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="defaultStore.state.swipeOnMobile && ( deviceKind !== 'desktop' || defaultStore.state.swipeOnDesktop )"
:allow-touch-move="
defaultStore.state.swipeOnMobile &&
(deviceKind !== 'desktop' ||
defaultStore.state.swipeOnDesktop)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>
@ -356,8 +360,18 @@ onMounted(() => {
position: absolute;
inset: 0;
border: 2px solid var(--accentDarken);
mask: linear-gradient(to right, transparent,black 40% 60%,transparent);
-webkit-mask: linear-gradient(to right, transparent,black 40% 60%,transparent);
mask: linear-gradient(
to right,
transparent,
black 40% 60%,
transparent
);
-webkit-mask: linear-gradient(
to right,
transparent,
black 40% 60%,
transparent
);
}
> button {
display: flex;
@ -365,7 +379,7 @@ onMounted(() => {
top: 120%;
margin-inline: auto;
border-radius: 2em;
padding: .5em 1.2em;
padding: 0.5em 1.2em;
background: var(--accentedBg);
border: 0;
color: var(--accent);
@ -373,8 +387,8 @@ onMounted(() => {
pointer-events: all;
transform: translateY(-100%);
opacity: 0;
animation: reset .4s forwards cubic-bezier(0,.4,0,1.1),
slideUp 1s 5s forwards cubic-bezier(1,0,1,1);
animation: reset 0.4s forwards cubic-bezier(0, 0.4, 0, 1.1),
slideUp 1s 5s forwards cubic-bezier(1, 0, 1, 1);
&::before {
content: "";
position: absolute;
@ -383,9 +397,9 @@ onMounted(() => {
z-index: -1;
}
i {
margin-left: .7em;
margin-left: 0.7em;
border-left: 1px solid var(--accentedBg);
padding-left: .4em;
padding-left: 0.4em;
}
}
}

View file

@ -1,7 +1,7 @@
<template>
<MkContainer
<MkContainer
:show-header="widgetProps.showHeader"
class="mkw-rss"
class="mkw-rss"
:scrollable="true"
:style="`height: ${widgetProps.height}px;`"
>