summaryrefslogtreecommitdiff
path: root/client/simple/tools/plg.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/simple/tools/plg.ts')
-rw-r--r--client/simple/tools/plg.ts43
1 files changed, 43 insertions, 0 deletions
diff --git a/client/simple/tools/plg.ts b/client/simple/tools/plg.ts
new file mode 100644
index 000000000..2db891d4f
--- /dev/null
+++ b/client/simple/tools/plg.ts
@@ -0,0 +1,43 @@
+/**
+ * Custom vite plugins to build the web-client components of the simple theme.
+ *
+ * HINT:
+ * This is an inital implementation for the migration of the build process
+ * from grunt to vite. For fully support (vite: build & serve) more work is
+ * needed.
+ */
+
+import type { Config } from "svgo";
+import type { Plugin } from "vite";
+import { type Src2Dest, svg2png, svg2svg } from "./img.ts";
+
+/**
+ * Vite plugin to convert a list of SVG files to PNG.
+ *
+ * @param items - Array of SVG files (src: SVG, dest:PNG) to convert.
+ */
+export const plg_svg2png = (items: Src2Dest[]): Plugin => {
+ return {
+ name: "searxng-simple-svg2png",
+ apply: "build",
+ async writeBundle() {
+ await svg2png(items);
+ }
+ };
+};
+
+/**
+ * Vite plugin to optimize SVG images for WEB.
+ *
+ * @param items - Array of SVG files (src:SVG, dest:SVG) to optimize.
+ * @param svgo_opts - Options passed to svgo.
+ */
+export const plg_svg2svg = (items: Src2Dest[], svgo_opts: Config): Plugin => {
+ return {
+ name: "searxng-simple-svg2svg",
+ apply: "build",
+ writeBundle() {
+ svg2svg(items, svgo_opts);
+ }
+ };
+};