You've already forked AstralRinth
forked from didirus/AstralRinth
* Make theseus capable of logging messages from the `log` crate * Move update checking entirely into JS and open a modal if an update is available * Fix formatjs on Windows and run formatjs * Add in the buttons and body * Fix lint * Show update size in modal * Fix update not being rechecked if the update modal was directly dismissed * Slight UI tweaks * Fix lint * Implement skipping the update * Implement the Update Now button * Implement updating at next exit * Turn download progress into an error bar on failure * Restore 5 minute update check instead of 30 seconds * Fix PendingUpdateData being seen as a unit struct * Fix lint * Make CI also lint updater code * feat: create AppearingProgressBar component * feat: polish update available modal * feat: add error handling * Open changelog with tauri-plugin-opener * Run intl:extract * Update completion toasts (#3978) * Use single LAUNCHER_USER_AGENT constant for all user agents * Fix build on Mac * Request the update size with HEAD instead of GET * UI tweaks * lint * Fix lint * fix: hide modal header & add "Hide update reminder" button w/ tooltip * Run intl:extract * fix: lint issues * fix: merge issues * notifications.js no longer exists * Add metered network checking * Add a timeout to macOS is_network_metered * Fix tauri.conf.json * vibe debugging * Set a dispatch queue * Have a popup that asks you if you'd like to disable automatic file downloads if you're on a metered network * Move UpdateModal to modal package * Fix lint * Add a toggle for automatic downloads * Fix type Co-authored-by: Alejandro González <7822554+AlexTMjugador@users.noreply.github.com> Signed-off-by: Josiah Glosson <soujournme@gmail.com> * Redo updating UI and experience * lint * fix unlistener issue * remove unneeded translation keys * Fix expose issue * temp disable cranelift, tweak some messages * change version back * Clean up App.vue * move toast to top right * update reload icon * Fixed the bug!!!!!!!!!!!! * improve messages * intl:extract * Add liquid glass icon file * not you! * use dependency injection * lint on apple icon * Fix imports, move download size to button * change update check back to 5 mins * lint + move to providers * intl:extract --------- Signed-off-by: Cal H. <hendersoncal117@gmail.com> Signed-off-by: Josiah Glosson <soujournme@gmail.com> Co-authored-by: Calum <calum@modrinth.com> Co-authored-by: Prospector <prospectordev@gmail.com> Co-authored-by: Cal H. <hendersoncal117@gmail.com> Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com> Co-authored-by: Alejandro González <7822554+AlexTMjugador@users.noreply.github.com>
122 lines
2.7 KiB
Vue
122 lines
2.7 KiB
Vue
<template>
|
|
<div class="joined-buttons">
|
|
<ButtonStyled :color="color">
|
|
<button :disabled="disabled" @click="handlePrimaryAction">
|
|
<component :is="primaryAction.icon" v-if="primaryAction.icon" aria-hidden="true" />
|
|
{{ primaryAction.label }}
|
|
</button>
|
|
</ButtonStyled>
|
|
<ButtonStyled v-if="dropdownActions.length > 0" :color="color">
|
|
<OverflowMenu class="btn-dropdown-animation" :options="dropdownOptions" :disabled="disabled">
|
|
<DropdownIcon />
|
|
<template v-for="action in dropdownActions" :key="action.id" #[action.id]>
|
|
<component :is="action.icon" v-if="action.icon" aria-hidden="true" />
|
|
{{ action.label }}
|
|
</template>
|
|
</OverflowMenu>
|
|
</ButtonStyled>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { DropdownIcon } from '@modrinth/assets'
|
|
import type { Component } from 'vue'
|
|
import { computed } from 'vue'
|
|
|
|
import { ButtonStyled, OverflowMenu } from '../index'
|
|
|
|
// TODO: This should be moved to a shared types file.
|
|
type Colors = 'standard' | 'brand' | 'red' | 'orange' | 'green' | 'blue' | 'purple'
|
|
|
|
export interface JoinedButtonAction {
|
|
id: string
|
|
label: string
|
|
icon?: Component
|
|
action: () => void
|
|
color?: Colors
|
|
hoverFilled?: boolean
|
|
}
|
|
|
|
interface Props {
|
|
actions: JoinedButtonAction[]
|
|
color?: Colors
|
|
disabled?: boolean
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
color: 'standard',
|
|
disabled: false,
|
|
})
|
|
|
|
const primaryAction = computed(() => props.actions[0])
|
|
|
|
const dropdownActions = computed(() => props.actions.slice(1))
|
|
|
|
const colorMap: Record<
|
|
Colors,
|
|
| 'red'
|
|
| 'orange'
|
|
| 'green'
|
|
| 'blue'
|
|
| 'purple'
|
|
| 'highlight'
|
|
| 'primary'
|
|
| 'danger'
|
|
| 'secondary'
|
|
| undefined
|
|
> = {
|
|
standard: 'secondary',
|
|
brand: 'primary',
|
|
red: 'red',
|
|
orange: 'orange',
|
|
green: 'green',
|
|
blue: 'blue',
|
|
purple: 'purple',
|
|
}
|
|
|
|
const dropdownOptions = computed(() =>
|
|
dropdownActions.value.map((action) => ({
|
|
id: action.id,
|
|
color: action.color ? colorMap[action.color] : undefined,
|
|
action: action.action,
|
|
hoverFilled: action.hoverFilled ?? true,
|
|
})),
|
|
)
|
|
|
|
function handlePrimaryAction() {
|
|
if (primaryAction.value && !props.disabled) {
|
|
primaryAction.value.action()
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.joined-buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.joined-buttons > :deep(.btn) {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.joined-buttons > :deep(.btn:first-child) {
|
|
border-top-left-radius: var(--radius-md);
|
|
border-bottom-left-radius: var(--radius-md);
|
|
}
|
|
|
|
.joined-buttons > :deep(.btn:last-child) {
|
|
border-top-right-radius: var(--radius-md);
|
|
border-bottom-right-radius: var(--radius-md);
|
|
margin-left: -1px;
|
|
}
|
|
|
|
.joined-buttons > :deep(.btn:not(:last-child)) {
|
|
border-right: none;
|
|
}
|
|
|
|
.btn-dropdown-animation {
|
|
padding: 0.5rem !important;
|
|
}
|
|
</style>
|