feat: trying to add hashes to scripts
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import type { Signal } from "@preact/signals";
|
||||
import { Button } from "@components/Button.tsx";
|
||||
import { IconCircleMinus, IconCirclePlus } from "@components/icons.tsx";
|
||||
import { TbCircleMinus, TbCirclePlus } from "@preact-icons/tb";
|
||||
|
||||
interface CounterProps {
|
||||
count: Signal<number>;
|
||||
@@ -14,17 +14,20 @@ export default function Counter(props: CounterProps) {
|
||||
class=""
|
||||
onClick={() => props.count.value -= 1}
|
||||
>
|
||||
<IconCircleMinus />
|
||||
<TbCircleMinus />
|
||||
</Button>
|
||||
<input
|
||||
class="text-3xl bg-transparent inline text-center -mx-4"
|
||||
type="number"
|
||||
size={props.count.toString().length}
|
||||
value={props.count}
|
||||
onInput={(ev) => props.count.value = ev.target?.value}
|
||||
onInput={(ev) => {
|
||||
const target = ev.target as HTMLInputElement;
|
||||
props.count.value = Math.max(1, Number(target.value));
|
||||
}}
|
||||
/>
|
||||
<Button onClick={() => props.count.value += 1}>
|
||||
<IconCirclePlus />
|
||||
<TbCirclePlus />
|
||||
</Button>
|
||||
</div>
|
||||
);
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import { Signal } from "@preact/signals";
|
||||
import type { Ingredient, IngredientGroup } from "@lib/recipeSchema.ts";
|
||||
import { FunctionalComponent } from "preact";
|
||||
import { unitsOfMeasure } from "@lib/parseIngredient.ts";
|
||||
|
||||
function formatAmount(num: number) {
|
||||
@@ -50,14 +49,12 @@ const Ingredient = (
|
||||
);
|
||||
};
|
||||
|
||||
export const IngredientsList: FunctionalComponent<
|
||||
{
|
||||
export const IngredientsList = (
|
||||
{ ingredients, amount, portion }: {
|
||||
ingredients: (Ingredient | IngredientGroup)[];
|
||||
amount: Signal<number>;
|
||||
portion?: number;
|
||||
}
|
||||
> = (
|
||||
{ ingredients, amount, portion },
|
||||
},
|
||||
) => {
|
||||
return (
|
||||
<table class="w-full border-collapse table-auto">
|
||||
|
||||
@@ -4,7 +4,7 @@ import { useEventListener } from "@lib/hooks/useEventListener.ts";
|
||||
import { menus } from "@islands/KMenu/commands.ts";
|
||||
import { MenuEntry } from "@islands/KMenu/types.ts";
|
||||
import * as icons from "@components/icons.tsx";
|
||||
import { IS_BROWSER } from "$fresh/runtime.ts";
|
||||
import { IS_BROWSER } from "fresh/runtime";
|
||||
import { isKMenuOpen } from "@lib/kmenu.ts";
|
||||
const KMenuEntry = (
|
||||
{ entry, activeIndex, index }: {
|
||||
|
||||
@@ -5,7 +5,6 @@ import { createNewArticle } from "@islands/KMenu/commands/create_article.ts";
|
||||
import { getCookie } from "@lib/string.ts";
|
||||
import { addSeriesInfo } from "@islands/KMenu/commands/add_series_infos.ts";
|
||||
import { createNewSeries } from "@islands/KMenu/commands/create_series.ts";
|
||||
import { updateAllRecommendations } from "@islands/KMenu/commands/create_recommendations.ts";
|
||||
import { createNewRecipe } from "@islands/KMenu/commands/create_recipe.ts";
|
||||
import { enhanceArticleInfo } from "@islands/KMenu/commands/enhance_article_infos.ts";
|
||||
|
||||
|
||||
@@ -42,7 +42,11 @@ export const addMovieInfos: MenuEntry = {
|
||||
globalThis.location.reload();
|
||||
} catch (e) {
|
||||
state.activeState.value = "error";
|
||||
state.loadingText.value = e.message;
|
||||
if (e instanceof Error) {
|
||||
if ("message" in e) {
|
||||
state.loadingText.value = e.message;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
})),
|
||||
@@ -53,7 +57,11 @@ export const addMovieInfos: MenuEntry = {
|
||||
state.activeState.value = "normal";
|
||||
} catch (e) {
|
||||
state.activeState.value = "error";
|
||||
state.loadingText.value = e.message;
|
||||
if (e instanceof Error) {
|
||||
if ("message" in e) {
|
||||
state.loadingText.value = e.message;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
visible: () => {
|
||||
|
||||
@@ -42,7 +42,11 @@ export const addSeriesInfo: MenuEntry = {
|
||||
//window.location.reload();
|
||||
} catch (e) {
|
||||
state.activeState.value = "error";
|
||||
state.loadingText.value = e.message;
|
||||
if (e instanceof Error) {
|
||||
if ("message" in e) {
|
||||
state.loadingText.value = e.message;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
})),
|
||||
@@ -53,7 +57,11 @@ export const addSeriesInfo: MenuEntry = {
|
||||
state.activeState.value = "normal";
|
||||
} catch (e) {
|
||||
state.activeState.value = "error";
|
||||
state.loadingText.value = e.message;
|
||||
if (e instanceof Error) {
|
||||
if ("message" in e) {
|
||||
state.loadingText.value = e.message;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
visible: () => {
|
||||
|
||||
@@ -66,7 +66,11 @@ export const createNewMovie: MenuEntry = {
|
||||
globalThis.location.href = "/movies/" + movie.name;
|
||||
} catch (e) {
|
||||
state.activeState.value = "error";
|
||||
state.loadingText.value = e.message;
|
||||
if (e instanceof Error) {
|
||||
if ("message" in e) {
|
||||
state.loadingText.value = e.message;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
||||
@@ -75,7 +79,11 @@ export const createNewMovie: MenuEntry = {
|
||||
state.activeMenu.value = "input_link";
|
||||
} catch (e) {
|
||||
state.activeState.value = "error";
|
||||
state.loadingText.value = e.message;
|
||||
if (e instanceof Error) {
|
||||
if ("message" in e) {
|
||||
state.loadingText.value = e.message;
|
||||
}
|
||||
}
|
||||
}
|
||||
}, 500);
|
||||
|
||||
|
||||
@@ -68,7 +68,11 @@ export const createNewSeries: MenuEntry = {
|
||||
globalThis.location.href = "/series/" + series.name;
|
||||
} catch (e) {
|
||||
state.activeState.value = "error";
|
||||
state.loadingText.value = e.message;
|
||||
if (e instanceof Error) {
|
||||
if ("message" in e) {
|
||||
state.loadingText.value = e.message;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
||||
@@ -78,7 +82,11 @@ export const createNewSeries: MenuEntry = {
|
||||
state.activeMenu.value = "input_link";
|
||||
} catch (e) {
|
||||
state.activeState.value = "error";
|
||||
state.loadingText.value = e.message;
|
||||
if (e instanceof Error) {
|
||||
if ("message" in e) {
|
||||
state.loadingText.value = e.message;
|
||||
}
|
||||
}
|
||||
}
|
||||
}, 500);
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ import { IconLoader2, IconSearch } from "@components/icons.tsx";
|
||||
import { useEventListener } from "@lib/hooks/useEventListener.ts";
|
||||
import { resources } from "@lib/resources.ts";
|
||||
import { getCookie } from "@lib/string.ts";
|
||||
import { IS_BROWSER } from "$fresh/runtime.ts";
|
||||
import { IS_BROWSER } from "fresh/runtime";
|
||||
import Checkbox from "@components/Checkbox.tsx";
|
||||
import { Rating } from "@components/Rating.tsx";
|
||||
import { useSignal } from "@preact/signals";
|
||||
|
||||
Reference in New Issue
Block a user