mirror of
https://github.com/PhaseII-eAmusement-Network/PhaseWeb3-Vue.git
synced 2026-07-22 02:40:35 -05:00
Today I made a shit ton of progress slimming down the webui. I also added a lot of new assets for games. Charts have been replaced with a much nicer library that handles charts.
135 lines
2.4 KiB
Vue
135 lines
2.4 KiB
Vue
<script setup>
|
|
import { computed } from "vue";
|
|
import { RouterLink } from "vue-router";
|
|
import { getButtonColor } from "@/colors.js";
|
|
import BaseIcon from "@/components/BaseIcon.vue";
|
|
|
|
const props = defineProps({
|
|
label: {
|
|
type: [String, Number],
|
|
default: null,
|
|
},
|
|
icon: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
iconSize: {
|
|
type: [String, Number],
|
|
default: null,
|
|
},
|
|
href: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
target: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
to: {
|
|
type: [String, Object],
|
|
default: null,
|
|
},
|
|
type: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
color: {
|
|
type: String,
|
|
default: "white",
|
|
},
|
|
as: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
small: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
outline: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
active: Boolean,
|
|
disabled: Boolean,
|
|
roundedFull: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
});
|
|
|
|
const is = computed(() => {
|
|
if (props.as) {
|
|
return props.as;
|
|
}
|
|
|
|
if (props.to) {
|
|
return RouterLink;
|
|
}
|
|
|
|
if (props.href) {
|
|
return "a";
|
|
}
|
|
|
|
return "button";
|
|
});
|
|
|
|
const computedType = computed(() => {
|
|
if (is.value === "button") {
|
|
return props.type ?? "button";
|
|
}
|
|
|
|
return null;
|
|
});
|
|
|
|
const labelClass = computed(() =>
|
|
props.small && props.icon ? "px-1" : "px-2"
|
|
);
|
|
|
|
const componentClass = computed(() => {
|
|
const base = [
|
|
"inline-flex",
|
|
"justify-center",
|
|
"items-center",
|
|
"whitespace-nowrap",
|
|
"focus:outline-none",
|
|
"transition-colors",
|
|
"focus:ring",
|
|
"duration-50",
|
|
"border",
|
|
"hover:scale-[1.02] hover:shadow-xl",
|
|
props.disabled ? "cursor-not-allowed" : "cursor-pointer",
|
|
props.roundedFull ? "rounded-lg" : "rounded",
|
|
getButtonColor(props.color, props.outline, !props.disabled, props.active),
|
|
];
|
|
|
|
if (!props.label && props.icon) {
|
|
base.push("p-1");
|
|
} else if (props.small) {
|
|
base.push("text-sm", props.roundedFull ? "px-3 py-1" : "p-1");
|
|
} else {
|
|
base.push("py-2", props.roundedFull ? "px-6" : "px-3");
|
|
}
|
|
|
|
if (props.disabled) {
|
|
base.push(props.outline ? "opacity-50" : "opacity-70");
|
|
}
|
|
|
|
return base;
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<component
|
|
:is="is"
|
|
:class="componentClass"
|
|
:href="href"
|
|
:type="computedType"
|
|
:to="to"
|
|
:target="target"
|
|
:disabled="disabled"
|
|
>
|
|
<BaseIcon v-if="icon" :path="icon" :size="iconSize" />
|
|
<span v-if="label" :class="labelClass">{{ label }}</span>
|
|
</component>
|
|
</template>
|