anki/sass
Damien Elmes 45f5709214
Migrate to protobuf-es (#2547)
* Fix .no-reduce-motion missing from graphs spinner, and not being honored

* Begin migration from protobuf.js -> protobuf-es

Motivation:

- Protobuf-es has a nicer API: messages are represented as classes, and
fields which should exist are not marked as nullable.
- As it uses modules, only the proto messages we actually use get included
in our bundle output. Protobuf.js put everything in a namespace, which
prevented tree-shaking, and made it awkward to access inner messages.
- ./run after touching a proto file drops from about 8s to 6s on my machine. The tradeoff
is slower decoding/encoding (#2043), but that was mainly a concern for the
graphs page, and was unblocked by
37151213cd

Approach/notes:

- We generate the new protobuf-es interface in addition to existing
protobuf.js interface, so we can migrate a module at a time, starting
with the graphs module.
- rslib:proto now generates RPC methods for TS in addition to the Python
interface. The input-arg-unrolling behaviour of the Python generation is
not required here, as we declare the input arg as a PlainMessage<T>, which
marks it as requiring all fields to be provided.
- i64 is represented as bigint in protobuf-es. We were using a patch to
protobuf.js to get it to output Javascript numbers instead of long.js
types, but now that our supported browser versions support bigint, it's
probably worth biting the bullet and migrating to bigint use. Our IDs
fit comfortably within MAX_SAFE_INTEGER, but that may not hold for future
fields we add.
- Oneofs are handled differently in protobuf-es, and are going to need
some refactoring.

Other notable changes:

- Added a --mkdir arg to our build runner, so we can create a dir easily
during the build on Windows.
- Simplified the preference handling code, by wrapping the preferences
in an outer store, instead of a separate store for each individual
preference. This means a change to one preference will trigger a redraw
of all components that depend on the preference store, but the redrawing
is cheap after moving the data processing to Rust, and it makes the code
easier to follow.
- Drop async(Reactive).ts in favour of more explicit handling with await
blocks/updating.
- Renamed add_inputs_to_group() -> add_dependency(), and fixed it not adding
dependencies to parent groups. Renamed add() -> add_action() for clarity.

* Remove a couple of unused proto imports

* Migrate card info

* Migrate congrats, image occlusion, and tag editor

+ Fix imports for multi-word proto files.

* Migrate change-notetype

* Migrate deck options

* Bump target to es2020; simplify ts lib list

Have used caniuse.com to confirm Chromium 77, iOS 14.5 and the Chrome
on Android support the full es2017-es2020 features.

* Migrate import-csv

* Migrate i18n and fix missing output types in .js

* Migrate custom scheduling, and remove protobuf.js

To mostly maintain our old API contract, we make use of protobuf-es's
ability to convert to JSON, which follows the same format as protobuf.js
did. It doesn't cover all case: users who were previously changing the
variant of a type will need to update their code, as assigning to a new
variant no longer automatically removes the old one, which will cause an
error when we try to convert back from JSON. But I suspect the large majority
of users are adjusting the current variant rather than creating a new one,
and this saves us having to write proxy wrappers, so it seems like a
reasonable compromise.

One other change I made at the same time was to rename value->kind for
the oneofs in our custom study protos, as 'value' was easily confused
with the 'case/value' output that protobuf-es has.

With protobuf.js codegen removed, touching a proto file and invoking
./run drops from about 8s to 6s.

This closes #2043.

* Allow tree-shaking on protobuf types

* Display backend error messages in our ts alert()

* Make sourcemap generation opt-in for ts-run

Considerably slows down build, and not used most of the time.
2023-06-14 22:47:37 +10:00
..
_button-mixins.scss Swap impressed shadow for border effect on button hover (#2392) 2023-02-27 15:43:44 +10:00
_color-palette.scss Add comments to Sass variables and tweak main window (#2137) 2022-10-29 10:48:53 +10:00
_functions.scss Add comments to Sass variables and tweak main window (#2137) 2022-10-29 10:48:53 +10:00
_root-vars.scss Use less specific html selector to not override user CSS (#2218) 2022-11-28 20:52:19 +10:00
_vars.scss Revamp Preferences, implement Minimalist Mode and Qt widget gallery to test GUI changes (#2289) 2023-01-18 21:24:16 +10:00
base.scss Migrate to protobuf-es (#2547) 2023-06-14 22:47:37 +10:00
bootstrap-dark.scss Give containers brighter color than canvas (#2220) 2022-11-29 17:54:42 +10:00
bootstrap-forms.scss Move away from Bazel (#2202) 2022-11-27 15:24:20 +10:00
bootstrap-tooltip.scss Move away from Bazel (#2202) 2022-11-27 15:24:20 +10:00
breakpoints.scss Mathjax editor improvements (#1502) 2021-11-23 10:27:32 +10:00
buttons.scss Fix black on grey minimalist buttons in KDE (#2414) 2023-03-06 19:46:34 +10:00
card-counts.scss Introduce new color palette using Sass maps (#2016) 2022-09-16 14:11:18 +10:00
core.scss Auto-hide toolbar in Reviewer (#2262) 2023-01-09 14:39:31 +10:00
elevation.scss Add comments to Sass variables and tweak main window (#2137) 2022-10-29 10:48:53 +10:00
night-mode.scss Give containers brighter color than canvas (#2220) 2022-11-29 17:54:42 +10:00
panes.scss Make tags editor resizable using Henrik's components (#2046) 2022-09-28 14:02:32 +10:00
scrollbar.scss Fix custom webview scrollbar not showing (#2085) 2022-09-26 09:13:06 +10:00