mirror of
https://github.com/modrinth/code.git
synced 2026-08-30 11:36:05 +00:00
* feat: base of instances v2 * feat: use old profiles with compat layer * prototype: instances v2 * fix: install_from using profile * fix: skins migration fix * fix: frontend still using profile path * fix: add update proj multiselect guard * fix: cargo fmt * fix: content missing fields * feat: break up app-lib/api/instance.rs * fix: check_content_updates mismatch * fix: updater modal cleanup w/new structure * feat: better update all handling * fix: remove preview_update_all * fix: feedback on bulk update + lint * fix: rem transitions * fix: change to jsonb * feat: app db backup after update * fix: lint * fix: sqlx prepare + use sqlx macros * fix: lint * fix: bugs * feat: defuck the installing process up * fix: bug of hell * fix: shear * fix: fmt * fix: install progress spacing + change mc/content/overrides to bytes * fix: lint * fix: prepr * fix: navtabs anim not working in app * fix: worlds.vue improvements + browse page fixes * feat: optimise queries + adapter fns * fix: lint * fix: lint * feat: shared modrinth-content-management crate (#6469) * feat: disable warnings setting * feat: add instances shortcuts (#6329) * Add modrinth://launch deep link to start a profile Support external profile launching via modrinth://launch/{profile_path} for integrations such as Stream Deck. * Change route to /launch/profile/{id} for future extensibility * fix: ensure profile path is url decoded * fix: URL-decode profile path from deep link * fix: use urlencoding crate for URL decoding * feat: implement app instance shortcuts * feat: change windows shortcut creation to use windows api instead * feat: implement creating a shortcut launching world/server * format * fmt * fix multiline inline tables * pnpm prepr * feat: move create shortcut to last item * refactor: split up shortcuts.rs for individual platforms * refactor: turn profile launch url into url type * use string literal and add safety comment * pt2 * refactor: rename anything that's profile into instance * update mac shortcut --------- Co-authored-by: DJCheesusReal <134006619+DJCheesusReal@users.noreply.github.com> --------- Co-authored-by: Truman Gao <106889354+tdgao@users.noreply.github.com> Co-authored-by: DJCheesusReal <134006619+DJCheesusReal@users.noreply.github.com>
285 lines
6.9 KiB
Vue
285 lines
6.9 KiB
Vue
<script setup>
|
|
import {
|
|
ClipboardCopyIcon,
|
|
ExternalIcon,
|
|
GlobeIcon,
|
|
MailIcon,
|
|
MastodonIcon,
|
|
RedditIcon,
|
|
ShareIcon,
|
|
TwitterIcon,
|
|
} from '@modrinth/assets'
|
|
import QrcodeVue from 'qrcode.vue'
|
|
import { computed, nextTick, ref } from 'vue'
|
|
|
|
import { injectNotificationManager } from '#ui/providers'
|
|
|
|
import { ButtonStyled, NewModal, StyledInput } from '../index'
|
|
|
|
const props = defineProps({
|
|
header: {
|
|
type: String,
|
|
default: 'Share',
|
|
},
|
|
shareTitle: {
|
|
type: String,
|
|
default: 'Modrinth',
|
|
},
|
|
shareText: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
link: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
openInNewTab: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
noblur: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
socialButtons: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
onHide: {
|
|
type: Function,
|
|
default() {
|
|
return () => {}
|
|
},
|
|
},
|
|
})
|
|
|
|
const shareModal = ref(null)
|
|
const { addNotification } = injectNotificationManager()
|
|
|
|
const qrCode = ref(null)
|
|
const qrImage = ref(null)
|
|
const content = ref(null)
|
|
const url = ref(null)
|
|
const canShare = ref(false)
|
|
const share = () => {
|
|
navigator.share(
|
|
props.link
|
|
? {
|
|
title: props.shareTitle.toString(),
|
|
text: props.shareText,
|
|
url: url.value,
|
|
}
|
|
: {
|
|
title: props.shareTitle.toString(),
|
|
text: content.value,
|
|
},
|
|
)
|
|
}
|
|
|
|
const show = async (passedContent) => {
|
|
content.value = props.shareText ? `${props.shareText}\n\n${passedContent}` : passedContent
|
|
shareModal.value.show()
|
|
if (props.link) {
|
|
url.value = passedContent
|
|
nextTick(() => {
|
|
console.log(qrCode.value)
|
|
fetch(qrCode.value.getElementsByTagName('canvas')[0].toDataURL('image/png'))
|
|
.then((res) => res.blob())
|
|
.then((blob) => {
|
|
console.log(blob)
|
|
qrImage.value = blob
|
|
})
|
|
})
|
|
}
|
|
if (navigator.canShare({ title: props.shareTitle.toString(), text: content.value })) {
|
|
canShare.value = true
|
|
}
|
|
}
|
|
|
|
const copyImage = async () => {
|
|
const item = new ClipboardItem({ 'image/png': qrImage.value })
|
|
await navigator.clipboard.write([item])
|
|
}
|
|
|
|
const copyText = async () => {
|
|
try {
|
|
await navigator.clipboard.writeText(url.value ?? content.value)
|
|
addNotification({
|
|
type: 'success',
|
|
title: 'Link copied',
|
|
text: 'The link has been copied to your clipboard.',
|
|
})
|
|
} catch (error) {
|
|
const message = error instanceof Error ? error.message : String(error)
|
|
addNotification({
|
|
type: 'error',
|
|
title: 'Failed to copy text',
|
|
text: message,
|
|
})
|
|
}
|
|
}
|
|
|
|
const sendEmail = computed(
|
|
() =>
|
|
`mailto:user@test.com
|
|
?subject=${encodeURIComponent(props.shareTitle)}
|
|
&body=${encodeURIComponent(content.value)}`,
|
|
)
|
|
|
|
const targetParameter = computed(() => (props.openInNewTab ? '_blank' : '_self'))
|
|
|
|
const sendTweet = computed(
|
|
() => `https://twitter.com/intent/tweet?text=${encodeURIComponent(content.value)}`,
|
|
)
|
|
|
|
const sendToot = computed(() => `https://tootpick.org/#text=${encodeURIComponent(content.value)}`)
|
|
|
|
const postOnReddit = computed(
|
|
() =>
|
|
`https://www.reddit.com/submit?title=${encodeURIComponent(props.shareTitle)}&text=${encodeURIComponent(
|
|
content.value,
|
|
)}`,
|
|
)
|
|
|
|
defineExpose({
|
|
show,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<NewModal ref="shareModal" :header="header" :noblur="noblur" :on-hide="onHide">
|
|
<div class="flex flex-col items-center gap-2">
|
|
<div
|
|
:class="['flex items-center justify-center', link ? 'flex-wrap gap-4' : 'flex-col gap-2']"
|
|
>
|
|
<div v-if="link" class="group relative shrink-0">
|
|
<div ref="qrCode">
|
|
<QrcodeVue :value="url" class="!bg-white rounded-[var(--radius-md)]" margin="3" />
|
|
</div>
|
|
<ButtonStyled circular type="transparent">
|
|
<button
|
|
v-tooltip="'Copy QR code'"
|
|
class="absolute top-0 right-0 m-2"
|
|
aria-label="Copy QR code"
|
|
@click="copyImage"
|
|
>
|
|
<ClipboardCopyIcon class="h-5 w-5" aria-hidden="true" />
|
|
</button>
|
|
</ButtonStyled>
|
|
</div>
|
|
<StyledInput
|
|
v-else
|
|
v-model="content"
|
|
multiline
|
|
resize="vertical"
|
|
wrapper-class="h-full w-[30rem]"
|
|
>
|
|
<template #right>
|
|
<ButtonStyled circular type="transparent">
|
|
<button
|
|
v-tooltip="'Copy Text'"
|
|
type="button"
|
|
aria-label="Copy Text"
|
|
class="absolute top-0 right-0 m-2"
|
|
@click="copyText"
|
|
>
|
|
<ClipboardCopyIcon class="h-5 w-5" aria-hidden="true" />
|
|
</button>
|
|
</ButtonStyled>
|
|
</template>
|
|
</StyledInput>
|
|
<div
|
|
v-if="link || socialButtons"
|
|
:class="['flex flex-col justify-center gap-2', link ? 'w-64 max-w-full' : 'flex-grow']"
|
|
>
|
|
<button
|
|
v-if="link"
|
|
v-tooltip="'Copy Link'"
|
|
type="button"
|
|
aria-label="Copy Link"
|
|
class="flex h-10 w-full cursor-pointer items-center justify-between gap-2 rounded-xl border-none bg-button-bg px-3 pr-1.5 text-primary transition-all hover:bg-button-bg-hover hover:brightness-125 active:scale-95"
|
|
@click="copyText"
|
|
>
|
|
<span class="min-w-0 cursor-pointer truncate text-left font-semibold text-primary">
|
|
{{ url }}
|
|
</span>
|
|
<div class="grid h-10 w-10 place-content-center">
|
|
<ClipboardCopyIcon class="h-5 w-5" aria-hidden="true" />
|
|
</div>
|
|
</button>
|
|
<ButtonStyled v-if="link">
|
|
<a
|
|
:href="url"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
aria-label="Open in new tab"
|
|
class="w-full"
|
|
>
|
|
Open in new tab
|
|
<ExternalIcon aria-hidden="true" />
|
|
</a>
|
|
</ButtonStyled>
|
|
<div v-if="socialButtons" class="flex flex-row gap-1">
|
|
<ButtonStyled v-if="canShare" circular>
|
|
<button v-tooltip="'Share'" aria-label="Share" @click="share">
|
|
<ShareIcon aria-hidden="true" />
|
|
</button>
|
|
</ButtonStyled>
|
|
<ButtonStyled circular>
|
|
<a
|
|
v-tooltip="'Send as an email'"
|
|
:href="sendEmail"
|
|
:target="targetParameter"
|
|
aria-label="Send as an email"
|
|
>
|
|
<MailIcon aria-hidden="true" />
|
|
</a>
|
|
</ButtonStyled>
|
|
<ButtonStyled circular>
|
|
<a
|
|
v-if="link"
|
|
v-tooltip="'Open link in browser'"
|
|
:target="targetParameter"
|
|
:href="url"
|
|
aria-label="Open link in browser"
|
|
>
|
|
<GlobeIcon aria-hidden="true" />
|
|
</a>
|
|
</ButtonStyled>
|
|
<ButtonStyled circular>
|
|
<a
|
|
v-tooltip="'Toot about it'"
|
|
:target="targetParameter"
|
|
:href="sendToot"
|
|
aria-label="Toot about it"
|
|
>
|
|
<MastodonIcon aria-hidden="true" />
|
|
</a>
|
|
</ButtonStyled>
|
|
<ButtonStyled circular>
|
|
<a
|
|
v-tooltip="'Tweet about it'"
|
|
:target="targetParameter"
|
|
:href="sendTweet"
|
|
aria-label="Tweet about it"
|
|
>
|
|
<TwitterIcon aria-hidden="true" />
|
|
</a>
|
|
</ButtonStyled>
|
|
<ButtonStyled circular>
|
|
<a
|
|
v-tooltip="'Share on Reddit'"
|
|
:target="targetParameter"
|
|
:href="postOnReddit"
|
|
aria-label="Share on Reddit"
|
|
>
|
|
<RedditIcon aria-hidden="true" />
|
|
</a>
|
|
</ButtonStyled>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</NewModal>
|
|
</template>
|