mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-26 02:53:08 +02:00
ae5d052274
to keep things manageable i merged a lot of one off values into just a handful of common sizes, so some parts of the ui will look different than upstream even with the "Misskey" rounding mode
126 lines
2.9 KiB
Vue
126 lines
2.9 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkContainer :showHeader="widgetProps.showHeader" :naked="widgetProps.transparent" :class="$style.root" :data-transparent="widgetProps.transparent ? true : null" data-cy-mkw-photos class="mkw-photos">
|
|
<template #icon><i class="ph-camera ph-bold ph-lg"></i></template>
|
|
<template #header>{{ i18n.ts._widgets.photos }}</template>
|
|
|
|
<div class="">
|
|
<MkLoading v-if="fetching"/>
|
|
<div v-else :class="$style.stream">
|
|
<div
|
|
v-for="(image, i) in images" :key="i"
|
|
:class="$style.img"
|
|
:style="`background-image: url(${thumbnail(image)})`"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
</MkContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onUnmounted, ref } from 'vue';
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget.js';
|
|
import { GetFormResultType } from '@/scripts/form.js';
|
|
import { useStream } from '@/stream.js';
|
|
import { getStaticImageUrl } from '@/scripts/media-proxy.js';
|
|
import * as os from '@/os.js';
|
|
import MkContainer from '@/components/MkContainer.vue';
|
|
import { defaultStore } from '@/store.js';
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
const name = 'photos';
|
|
|
|
const widgetPropsDef = {
|
|
showHeader: {
|
|
type: 'boolean' as const,
|
|
default: true,
|
|
},
|
|
transparent: {
|
|
type: 'boolean' as const,
|
|
default: false,
|
|
},
|
|
};
|
|
|
|
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;
|
|
|
|
const props = defineProps<WidgetComponentProps<WidgetProps>>();
|
|
const emit = defineEmits<WidgetComponentEmits<WidgetProps>>();
|
|
|
|
const { widgetProps, configure } = useWidgetPropsManager(name,
|
|
widgetPropsDef,
|
|
props,
|
|
emit,
|
|
);
|
|
|
|
const connection = useStream().useChannel('main');
|
|
const images = ref([]);
|
|
const fetching = ref(true);
|
|
|
|
const onDriveFileCreated = (file) => {
|
|
if (/^image\/.+$/.test(file.type)) {
|
|
images.value.unshift(file);
|
|
if (images.value.length > 9) images.value.pop();
|
|
}
|
|
};
|
|
|
|
const thumbnail = (image: any): string => {
|
|
return defaultStore.state.disableShowingAnimatedImages
|
|
? getStaticImageUrl(image.url)
|
|
: image.thumbnailUrl;
|
|
};
|
|
|
|
os.api('drive/stream', {
|
|
type: 'image/*',
|
|
limit: 9,
|
|
}).then(res => {
|
|
images.value = res;
|
|
fetching.value = false;
|
|
});
|
|
|
|
connection.on('driveFileCreated', onDriveFileCreated);
|
|
onUnmounted(() => {
|
|
connection.dispose();
|
|
});
|
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
name,
|
|
configure,
|
|
id: props.widget ? props.widget.id : null,
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root[data-transparent] {
|
|
.stream {
|
|
padding: 0;
|
|
}
|
|
|
|
.img {
|
|
border: solid 4px transparent;
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
}
|
|
|
|
.stream {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
padding: 8px;
|
|
|
|
.img {
|
|
flex: 1 1 33%;
|
|
width: 33%;
|
|
height: 80px;
|
|
box-sizing: border-box;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-clip: content-box;
|
|
border: solid 2px transparent;
|
|
border-radius: var(--radius-xs);
|
|
}
|
|
}
|
|
</style>
|