146 lines
3.3 KiB
Python
146 lines
3.3 KiB
Python
load("@npm//@bazel/typescript:index.bzl", "ts_library")
|
|
load("//ts:prettier.bzl", "prettier_test")
|
|
load("//ts:eslint.bzl", "eslint_test")
|
|
load("//ts:esbuild.bzl", "esbuild")
|
|
load("//ts:vendor.bzl", "copy_bootstrap_icons", "copy_mdi_icons")
|
|
load("//ts:compile_sass.bzl", "compile_sass")
|
|
|
|
compile_sass(
|
|
srcs = [
|
|
"editable.scss",
|
|
],
|
|
group = "editable_scss",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//ts/sass:scrollbar_lib",
|
|
],
|
|
)
|
|
|
|
compile_sass(
|
|
srcs = [
|
|
"fields.scss",
|
|
"color.scss",
|
|
],
|
|
group = "base_css",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//ts/sass:base_lib",
|
|
"//ts/sass:buttons_lib",
|
|
"//ts/sass:scrollbar_lib",
|
|
],
|
|
)
|
|
|
|
ts_library(
|
|
name = "editor_ts",
|
|
srcs = glob(["*.ts"]),
|
|
tsconfig = "//ts:tsconfig.json",
|
|
deps = [
|
|
"//ts:image_module_support",
|
|
"//ts/lib",
|
|
"//ts/sveltelib",
|
|
"//ts/html-filter",
|
|
"//ts/editor-toolbar",
|
|
"@npm//svelte",
|
|
],
|
|
)
|
|
|
|
copy_bootstrap_icons(
|
|
name = "bootstrap-icons",
|
|
icons = [
|
|
"pin-angle.svg",
|
|
|
|
# inline formatting
|
|
"type-bold.svg",
|
|
"type-italic.svg",
|
|
"type-underline.svg",
|
|
"eraser.svg",
|
|
"square-fill.svg",
|
|
"paperclip.svg",
|
|
"mic.svg",
|
|
|
|
# block formatting
|
|
"paragraph.svg",
|
|
"list-ul.svg",
|
|
"list-ol.svg",
|
|
"text-paragraph.svg",
|
|
"justify.svg",
|
|
"text-left.svg",
|
|
"text-right.svg",
|
|
"text-center.svg",
|
|
"text-indent-left.svg",
|
|
"text-indent-right.svg",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
copy_mdi_icons(
|
|
name = "mdi-icons",
|
|
icons = [
|
|
"format-superscript.svg",
|
|
"format-subscript.svg",
|
|
"function-variant.svg",
|
|
"code-brackets.svg",
|
|
"xml.svg",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
esbuild(
|
|
name = "editor",
|
|
srcs = [
|
|
"//ts:protobuf-shim.js",
|
|
],
|
|
args = [
|
|
"--loader:.svg=text",
|
|
"--inject:$(location //ts:protobuf-shim.js)",
|
|
"--resolve-extensions=.mjs,.js",
|
|
"--log-level=warning",
|
|
],
|
|
output_css = "editor.css",
|
|
external = [
|
|
"protobufjs/light",
|
|
],
|
|
entry_point = "index_wrapper.ts",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"base_css",
|
|
"bootstrap-icons",
|
|
"mdi-icons",
|
|
"editor_ts",
|
|
"//ts/editor-toolbar:local_css",
|
|
"//ts/editor-toolbar:ButtonDropdown",
|
|
"//ts/editor-toolbar:ButtonGroup",
|
|
"//ts/editor-toolbar:IconButton",
|
|
"//ts/editor-toolbar:LabelButton",
|
|
"//ts/editor-toolbar:SelectButton",
|
|
"//ts/editor-toolbar:SelectOption",
|
|
"//ts/editor-toolbar:RawButton",
|
|
"//ts/editor-toolbar:EditorToolbar",
|
|
"//ts/editor-toolbar:CommandIconButton",
|
|
"//ts/editor-toolbar:WithDropdownMenu",
|
|
"//ts/editor-toolbar:DropdownItem",
|
|
"//ts/editor-toolbar:DropdownMenu",
|
|
"//ts/editor-toolbar:SquareButton",
|
|
"//ts/editor-toolbar:ColorPicker",
|
|
],
|
|
)
|
|
|
|
# Tests
|
|
################
|
|
|
|
prettier_test(
|
|
name = "format_check",
|
|
srcs = glob([
|
|
"*.ts",
|
|
]),
|
|
)
|
|
|
|
# eslint_test(
|
|
# name = "eslint",
|
|
# srcs = glob(
|
|
# [
|
|
# "*.ts",
|
|
# ],
|
|
# ),
|
|
# )
|