From 609aaabf7ec8dd7efd8bcd57a07f10bedce7fcc6 Mon Sep 17 00:00:00 2001 From: Luke Melia Date: Wed, 20 Mar 2024 16:21:24 -0400 Subject: [PATCH] boxel-motion improvements - Add Split View example to boxel-motion test app as a study for the AI Assistant Panel animation - Incorporate boxel-motion builds into CI - Generalize fill behavior of behaviors rather than special casing StaticBehavior treatment - Default StaticBehavior to a duration of 1, since you can now opt into forward fill - when using StaticBehavior with SpringBehavior, you don't know how long the animation will be, and you may want a static animation to persist for the duration of the animation - Use context-relative bounds for removed sprites --- .github/workflows/ci.yaml | 19 ++++ QUICKSTART.md | 4 +- README.md | 5 +- packages/boxel-motion/addon/package.json | 1 + packages/boxel-motion/addon/rollup.config.mjs | 4 + .../boxel-motion/addon/src/behaviors/base.ts | 2 + .../addon/src/behaviors/spring.ts | 1 + .../addon/src/behaviors/static.ts | 11 ++- .../boxel-motion/addon/src/behaviors/tween.ts | 1 + .../boxel-motion/addon/src/behaviors/wait.ts | 1 + .../src/components/animation-context.gts | 22 ++++- packages/boxel-motion/addon/src/index.ts | 7 +- .../addon/src/models/orchestration.ts | 15 ++-- .../boxel-motion/addon/src/models/sprite.ts | 25 +++--- .../boxel-motion/addon/src/styles/addon.css | 9 ++ .../addon/src/utils/generate-frames.ts | 3 +- packages/boxel-motion/test-app/app/app.js | 1 + .../test-app/app/controllers/split-view.ts | 88 +++++++++++++++++++ packages/boxel-motion/test-app/app/router.js | 1 + .../boxel-motion/test-app/app/styles/app.css | 1 - .../test-app/app/templates/application.hbs | 7 +- .../templates/removed-sprite-interruption.hbs | 49 ++++++++++- .../test-app/app/templates/split-view.hbs | 32 +++++++ packages/boxel-motion/test-app/vendor/app.css | 7 -- 24 files changed, 278 insertions(+), 38 deletions(-) create mode 100644 packages/boxel-motion/addon/src/styles/addon.css create mode 100644 packages/boxel-motion/test-app/app/controllers/split-view.ts create mode 100644 packages/boxel-motion/test-app/app/templates/split-view.hbs diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9a971b28e6..e55ae53ac8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -52,6 +52,19 @@ jobs: if: always() run: pnpm run lint working-directory: packages/boxel-ui/test-app + - name: Lint Boxel Motion + if: always() + run: pnpm run lint + working-directory: packages/boxel-motion/addon + - name: Build Boxel Motion + # To faciliate linting of projects that depend on Boxel Motion + if: always() + run: pnpm run build + working-directory: packages/boxel-motion/addon + - name: Lint Boxel Motion Test App + if: always() + run: pnpm run lint + working-directory: packages/boxel-motion/test-app - name: Lint Host if: always() run: pnpm run lint @@ -159,6 +172,9 @@ jobs: - name: Build boxel-ui run: pnpm build working-directory: packages/boxel-ui/addon + - name: Build boxel-motion + run: pnpm build + working-directory: packages/boxel-motion/addon - name: Build host dist/ for fastboot run: pnpm build env: @@ -192,6 +208,9 @@ jobs: - name: Build boxel-ui run: pnpm build working-directory: packages/boxel-ui/addon + - name: Build boxel-motion + run: pnpm build + working-directory: packages/boxel-motion/addon - name: Build host dist/ for fastboot run: pnpm build env: diff --git a/QUICKSTART.md b/QUICKSTART.md index fb89937cab..239dcf63e5 100644 --- a/QUICKSTART.md +++ b/QUICKSTART.md @@ -21,12 +21,14 @@ To build the entire repository and run the application, follow these steps: pnpm install ``` -4. Build the boxel-ui: +4. Build the boxel-ui and boxl-motion addons: ```zsh cd ./packages/boxel-ui/addon pnpm rebuild:icons pnpm build + cd ../../boxel-motion/addon + pnpm build ``` 5. Build the host: diff --git a/README.md b/README.md index beee4d4ebd..2f09879f03 100644 --- a/README.md +++ b/README.md @@ -43,8 +43,9 @@ Make sure that you have created a matrix user for the base realm, drafts realm, In order to run the ember-cli hosted app: 1. `pnpm build` in the boxel-ui/addon workspace to build the boxel-ui addon. -2. `pnpm start` in the host/ workspace to serve the ember app. Note that this script includes the environment variable `OWN_REALM_URL=http://localhost:4201/draft/` which configures the host to point to the draft realm's cards realm by default. -3. `pnpm start:all` in the realm-server/ to serve the base realm, draft realm and published realm -- this will also allow you to switch between the app and the tests without having to restart servers) +2. `pnpm build` in the boxel-motion/addon workspace to build the boxel-motion addon. +3. `pnpm start` in the host/ workspace to serve the ember app. Note that this script includes the environment variable `OWN_REALM_URL=http://localhost:4201/draft/` which configures the host to point to the draft realm's cards realm by default. +4. `pnpm start:all` in the realm-server/ to serve the base realm, draft realm and published realm -- this will also allow you to switch between the app and the tests without having to restart servers) The app is available at http://localhost:4200. It will serve the draft realm (configurable with OWN_REALM_URL, as mentioned above). You can open the base and draft cards workspace directly by entering http://localhost:4201/base or http://localhost:4201/draft in the browser (and additionally the published realm by entering http://localhost:4201/published). diff --git a/packages/boxel-motion/addon/package.json b/packages/boxel-motion/addon/package.json index 82c4edf296..d7966f5653 100644 --- a/packages/boxel-motion/addon/package.json +++ b/packages/boxel-motion/addon/package.json @@ -117,6 +117,7 @@ "types": "./declarations/*.d.ts", "default": "./dist/*.js" }, + "./styles/*.css": "./dist/styles/*.css", "./addon-main.js": "./addon-main.cjs" }, "files": [ diff --git a/packages/boxel-motion/addon/rollup.config.mjs b/packages/boxel-motion/addon/rollup.config.mjs index a2f9794fda..6a274c35ae 100644 --- a/packages/boxel-motion/addon/rollup.config.mjs +++ b/packages/boxel-motion/addon/rollup.config.mjs @@ -51,6 +51,10 @@ export default { // Ensure that .gjs files are properly integrated as Javascript addon.gjs(), + // addons are allowed to contain imports of .css files, which we want rollup + // to leave alone and keep in the published output. + addon.keepAssets(['styles/*']), + // Remove leftover build artifacts when starting a new build. addon.clean({ runOnce: true }), diff --git a/packages/boxel-motion/addon/src/behaviors/base.ts b/packages/boxel-motion/addon/src/behaviors/base.ts index 786645b40b..7dfa70f387 100644 --- a/packages/boxel-motion/addon/src/behaviors/base.ts +++ b/packages/boxel-motion/addon/src/behaviors/base.ts @@ -36,6 +36,8 @@ export type Frame = { export type FrameGenerator = Generator; export default interface Behavior { + fill: boolean; + /** * Calculates the frames for the given parameters. * diff --git a/packages/boxel-motion/addon/src/behaviors/spring.ts b/packages/boxel-motion/addon/src/behaviors/spring.ts index 4774f964d4..1060239f8d 100644 --- a/packages/boxel-motion/addon/src/behaviors/spring.ts +++ b/packages/boxel-motion/addon/src/behaviors/spring.ts @@ -36,6 +36,7 @@ type SpringValues = { }; export default class SpringBehavior implements Behavior { + fill = true; private options: SpringOptions; constructor(options?: SpringOptionsArgument) { diff --git a/packages/boxel-motion/addon/src/behaviors/static.ts b/packages/boxel-motion/addon/src/behaviors/static.ts index dcc958be47..ea5fcc3658 100644 --- a/packages/boxel-motion/addon/src/behaviors/static.ts +++ b/packages/boxel-motion/addon/src/behaviors/static.ts @@ -1,16 +1,23 @@ -import type Behavior from './base.ts'; +import type Behavior from './base'; import { type Frame, type StaticToFramesArgument, timeToFrame, } from './base.ts'; +export interface StaticBehaviorOptions { + fill?: boolean; +} export default class StaticBehavior implements Behavior { + fill: boolean; + constructor(options?: StaticBehaviorOptions) { + this.fill = options?.fill ?? false; + } + *getFrames(options: StaticToFramesArgument) { let frameCount = timeToFrame(options.duration) + 1; for (let i = 0; i < frameCount; i++) { - // TODO: this can explicitly be non-numeric, fix TS yield { value: options.value, velocity: 0 } as Frame; } } diff --git a/packages/boxel-motion/addon/src/behaviors/tween.ts b/packages/boxel-motion/addon/src/behaviors/tween.ts index 2ee71369ea..6133558049 100644 --- a/packages/boxel-motion/addon/src/behaviors/tween.ts +++ b/packages/boxel-motion/addon/src/behaviors/tween.ts @@ -15,6 +15,7 @@ export interface TweenBehaviorOptions { } export default class TweenBehavior implements Behavior { + fill = true; easing: Easing; constructor(options?: TweenBehaviorOptions) { diff --git a/packages/boxel-motion/addon/src/behaviors/wait.ts b/packages/boxel-motion/addon/src/behaviors/wait.ts index b9ceb3b155..3ee01536a1 100644 --- a/packages/boxel-motion/addon/src/behaviors/wait.ts +++ b/packages/boxel-motion/addon/src/behaviors/wait.ts @@ -2,6 +2,7 @@ import type Behavior from './base.ts'; import { type WaitToFramesArgument, timeToFrame } from './base.ts'; export default class WaitBehavior implements Behavior { + fill = false; *getFrames(options: WaitToFramesArgument) { let frameCount = timeToFrame(options.duration) + 1; diff --git a/packages/boxel-motion/addon/src/components/animation-context.gts b/packages/boxel-motion/addon/src/components/animation-context.gts index b35c2d25cc..1736230f6c 100644 --- a/packages/boxel-motion/addon/src/components/animation-context.gts +++ b/packages/boxel-motion/addon/src/components/animation-context.gts @@ -1,6 +1,7 @@ import { assert } from '@ember/debug'; import { action } from '@ember/object'; import { inject as service } from '@ember/service'; +import { htmlSafe } from '@ember/template'; import Component from '@glimmer/component'; // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore @@ -19,6 +20,7 @@ const { VOLATILE_TAG, consumeTag } = Ember.__loader.require('@glimmer/validator'); interface AnimationContextArgs { + debugging?: boolean; id?: string; use: ((changeset: Changeset) => AnimationDefinition) | undefined; } @@ -37,7 +39,7 @@ export default class AnimationContextComponent {