chore(deps): update lint (#1928)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
This commit is contained in:
renovate[bot] 2023-03-30 19:01:24 +00:00 committed by GitHub
parent 2838e18ff7
commit 3c43a1cdd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
62 changed files with 464 additions and 434 deletions

View file

@ -22,7 +22,7 @@ const {
toggleReblog,
} = $(useStatusActions(props))
const reply = () => {
function reply() {
if (!checkLogin())
return
if (details)

View file

@ -29,33 +29,33 @@ const isAuthor = $computed(() => status.account.id === currentUser.value?.accoun
const { client } = $(useMasto())
const getPermalinkUrl = (status: mastodon.v1.Status) => {
function getPermalinkUrl(status: mastodon.v1.Status) {
const url = getStatusPermalinkRoute(status)
if (url)
return `${location.origin}/${url}`
return null
}
const copyLink = async (status: mastodon.v1.Status) => {
async function copyLink(status: mastodon.v1.Status) {
const url = getPermalinkUrl(status)
if (url)
await clipboard.copy(url)
}
const copyOriginalLink = async (status: mastodon.v1.Status) => {
async function copyOriginalLink(status: mastodon.v1.Status) {
const url = status.url
if (url)
await clipboard.copy(url)
}
const { share, isSupported: isShareSupported } = useShare()
const shareLink = async (status: mastodon.v1.Status) => {
async function shareLink(status: mastodon.v1.Status) {
const url = getPermalinkUrl(status)
if (url)
await share({ url })
}
const deleteStatus = async () => {
async function deleteStatus() {
if (await openConfirmDialog({
title: t('confirm.delete_posts.title'),
confirm: t('confirm.delete_posts.confirm'),
@ -72,7 +72,7 @@ const deleteStatus = async () => {
// TODO when timeline, remove this item
}
const deleteAndRedraft = async () => {
async function deleteAndRedraft() {
// TODO confirm to delete
if (process.dev) {
// eslint-disable-next-line no-alert
@ -90,7 +90,7 @@ const deleteAndRedraft = async () => {
router.push(getStatusRoute(lastPublishDialogStatus.value))
}
const reply = () => {
function reply() {
if (details) {
// TODO focus to editor
}
@ -107,7 +107,7 @@ async function editStatus() {
}, true)
}
const showFavoritedAndBoostedBy = () => {
function showFavoritedAndBoostedBy() {
openFavoridedBoostedByDialog(status.id)
}
</script>

View file

@ -15,7 +15,7 @@ const preferenceHideTranslation = usePreferences('hideTranslation')
const showButton = computed(() => !preferenceHideTranslation.value && isTranslationEnabled)
let translating = $ref(false)
const toggleTranslation = async () => {
async function toggleTranslation() {
translating = true
try {
await _toggleTranslation()

View file

@ -8,14 +8,15 @@ const { status } = defineProps<{
const paginator = useMastoClient().v1.statuses.listHistory(status.id)
const showHistory = (edit: mastodon.v1.StatusEdit) => {
function showHistory(edit: mastodon.v1.StatusEdit) {
openEditHistoryDialog(edit)
}
const timeAgoOptions = useTimeAgoOptions()
// TODO: rework, this is only reversing the first page of edits
const reverseHistory = (items: mastodon.v1.StatusEdit[]) =>
[...items].reverse()
function reverseHistory(items: mastodon.v1.StatusEdit[]) {
return [...items].reverse()
}
</script>
<template>