Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom error messages depending on the context #384

Merged
merged 3 commits into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 86 additions & 0 deletions src/app/plugins/tailwind/components/accordion.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
export default {
accordiontab: {
root: {
class: "mb-1",
},
header: ({ props }) => ({
class: [
// State
{
"select-none pointer-events-none cursor-default opacity-60":
props?.disabled,
},
],
}),
headerAction: ({ context }) => ({
class: [
//Font
"font-bold",
"leading-none",

// Alignments
"flex items-center",
"relative",

// Sizing
"p-5",

// Shape
"rounded-t-md",
{
"rounded-br-md rounded-bl-md": !context.active,
"rounded-br-0 rounded-bl-0": context.active,
},

// Color
"border border-surface-200 dark:border-surface-700",
"bg-surface-50 dark:bg-surface-800",
"text-surface-600 dark:text-surface-0/80",
{ "text-surface-900": context.active },

// Transition
"transition duration-200 ease-in-out",
"transition-shadow duration-200",

// States
"hover:bg-surface-100 dark:hover:bg-surface-700",
"hover:text-surface-900",
"focus:outline-none focus:outline-offset-0 focus-visible:ring focus-visible:ring-primary-400/50 ring-inset dark:focus-visible:ring-primary-300/50", // Focus

// Misc
"cursor-pointer no-underline select-none",
],
}),
headerIcon: {
class: "inline-block mr-2",
},
headerTitle: {
class: "leading-none",
},
content: {
class: [
// Spacing
"p-5",

//Shape
"rounded-tl-none rounded-tr-none rounded-br-lg rounded-bl-lg",
"border-t-0",

// Color
"bg-surface-0 dark:bg-surface-800",
"border border-surface-200 dark:border-surface-700",
"text-surface-700 dark:text-surface-0/80",
],
},
transition: {
enterFromClass: "max-h-0",
enterActiveClass:
"overflow-hidden transition-[max-height] duration-1000 ease-[cubic-bezier(0.42,0,0.58,1)]",
enterToClass: "max-h-[1000px]",
leaveFromClass: "max-h-[1000px]",
leaveActiveClass:
"overflow-hidden transition-[max-height] duration-[450ms] ease-[cubic-bezier(0,1,0,1)]",
leaveToClass: "max-h-0",
},
},
};
2 changes: 2 additions & 0 deletions src/app/plugins/tailwind/tailwindStyles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import slider from "@/app/plugins/tailwind/components/slider";
import cascadeSelect from "@/app/plugins/tailwind/components/cascadeSelect";
import floatLabel from "@/app/plugins/tailwind/components/floatLabel";
import checkBox from "@/app/plugins/tailwind/components/checkBox";
import accordion from "@/app/plugins/tailwind/components/accordion";

export const tailwindTheme = {
tabview,
Expand Down Expand Up @@ -54,4 +55,5 @@ export const tailwindTheme = {
cascadeSelect,
floatLabel,
checkBox,
accordion,
};
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import { tailwindTheme } from "@/app/plugins/tailwind/tailwindStyles";
import ConfirmationService from "primevue/confirmationservice";
import resize from "@/shared/lib/directives/resize";
import { errorActions } from "@/widgets/error";
import errorMessages from "@/widgets/error/model/config/errorMessages";
// adds reactive router module to global state

sync(store, router);
Expand All @@ -34,12 +35,11 @@ environment.load().then(() => {
app.config.errorHandler = (err) => {
// Handle the error globally
store.dispatch(errorActions.NEW_ERROR, {
message: `An unexpected error has occurred (${err.name})`,
userMessage: errorMessages.technicalError.codeError,
name: err.name,
details: err.message,
stack: err.stack,
type: "unexpected",
page: store.state.route.name,
});
};
app
Expand Down
Loading