page.ts 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. import { CompBase } from "./base";
  2. import { HistoryController } from "./history";
  3. import { utils } from "./utils";
  4. export type PageValue = {
  5. music: string;
  6. };
  7. export type CardValue = {
  8. test: number;
  9. };
  10. export class CompCard extends CompBase<CardValue> {
  11. override onCreated(): void {
  12. this.compKey = "StreamCard";
  13. this.state.size = [750, 300];
  14. this.state.position = "relative";
  15. }
  16. override init(): void {
  17. super.init();
  18. this.state.children.forEach((c) => {
  19. c.on("transformChange", () => {
  20. this.extendHeight();
  21. });
  22. });
  23. }
  24. addComp(comp: CompBase<any>) {
  25. const childrens = this.state.children.slice(0);
  26. childrens.push(comp);
  27. this.state.setChildren(childrens);
  28. this.extendHeight();
  29. comp.on("transformChange", ()=>{
  30. this.extendHeight();
  31. })
  32. }
  33. extendHeight() {
  34. const childrens = this.state.children;
  35. let maxH = 0,
  36. n = childrens.length;
  37. while (n--) {
  38. const c = childrens[n];
  39. const aabb = c.getLocalBounds();
  40. maxH = Math.max(maxH, aabb.y + aabb.height);
  41. }
  42. if (childrens.length < 1) {
  43. maxH = 200;
  44. }
  45. this.state.setSize([this.state.size[0], maxH]);
  46. }
  47. }
  48. export class CompPage extends CompBase<PageValue> {
  49. override onCreated(): void {
  50. this.state.position = "relative";
  51. this.state.bgColor = "#ffffff";
  52. this.compKey = "Page";
  53. this.state.size = [750, -1]; //默认设置一页的高度
  54. }
  55. insertCard(srcCardId: string, card: CompCard) {
  56. const state = this.state;
  57. const children = state.children.slice(0);
  58. let childs = children.map((item) => item.id);
  59. const index = childs.indexOf(srcCardId) + 1;
  60. children.splice(index, 0, card);
  61. state.setChildren(children);
  62. return index;
  63. }
  64. removeCard(srcCardId: string) {
  65. const state = this.state;
  66. const children = state.children.slice(0);
  67. let childs = children.map((item) => item.id);
  68. const index = childs.indexOf(srcCardId);
  69. children.splice(index, 1);
  70. state.setChildren(children);
  71. return index;
  72. }
  73. switchCard(fromIndex: number, toIndex: number) {
  74. console.log("switch");
  75. }
  76. }
  77. export function createPage(histry: HistoryController) {
  78. const obj = new CompPage({ music: "" });
  79. obj.state.children.push(createCard(histry)); //默认有一页卡片
  80. obj.init();
  81. obj.setHistory(histry);
  82. return obj;
  83. }
  84. export function createCard(histry: HistoryController) {
  85. const obj = new CompCard({ test: 1 });
  86. obj.init();
  87. obj.setHistory(histry);
  88. return obj;
  89. }