image.ts 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. import { effect } from "vue";
  2. import { CompBase } from "./base"
  3. import { HistoryController } from "./history";
  4. import { Dict_Imgs } from "@/dict";
  5. export type ImageValue = {
  6. url: string;
  7. showLink: boolean;
  8. link: string;
  9. initSized?: boolean
  10. }
  11. export type ImageContenValue = {
  12. url: string;
  13. }
  14. export class CompImageContent extends CompBase<ImageContenValue> {
  15. override onCreated() {
  16. this.compKey = "ImageContent" as any;
  17. }
  18. }
  19. export class CompImage extends CompBase<ImageValue> {
  20. override onCreated() {
  21. this.compKey = "Image";
  22. this.state.size = [750, 400];
  23. this.state.bgColor = "green";
  24. this.value.initSized = false;
  25. this.state.children.push(new CompImageContent({url: this.value.url}))
  26. }
  27. get imageObj() {
  28. return this.state.children[0];
  29. }
  30. override init(): void {
  31. super.init();
  32. this.value.onUrlChanged((value, old)=>{
  33. console.log("iamge url change=>", value, old)
  34. if (value != old) {//重新把对象放置在容器中间
  35. }
  36. })
  37. this.updateTransform();
  38. }
  39. }
  40. export async function createImageComp(url:string = Dict_Imgs.Default): Promise<CompImage> {
  41. return new Promise((r)=>{
  42. const obj = new CompImage({url: url, showLink: false, link: ""})
  43. const isDefaultUrl = url == Dict_Imgs.Default;
  44. const size = obj.state.size;
  45. const temImg = new Image();
  46. temImg.src = url;
  47. temImg.onload = function () {
  48. const ratio = temImg.width / temImg.height;
  49. if (!isDefaultUrl) { //不是默认的图片
  50. const W = temImg.width > 750 ? 750 : temImg.width;
  51. const h = W / ratio;
  52. obj.state.size = [W, h];
  53. obj.imageObj.state.size = [W, h];
  54. obj.imageObj.updateTransform();
  55. } else { //保持默认的750x400尺寸 cantain
  56. const r1 = size[0] / size[1];
  57. let srcWidth = size[0]
  58. let srcHeight = size[1]
  59. let srcOffx = 0, srcOffy=0;
  60. if (r1 < ratio) {
  61. const s = size[1] / temImg.height
  62. srcWidth = temImg.width * s;
  63. srcOffx = (size[0] - srcWidth) /2.0;
  64. } else {
  65. //高度不变,计算宽度
  66. const s = size[0] / temImg.width
  67. srcHeight = s * temImg.height;
  68. srcOffy = (size[1] - srcHeight) / 2.0;
  69. }
  70. obj.imageObj.state.size = [srcWidth, srcHeight];
  71. obj.imageObj.state.pos = [srcOffx, srcOffy];
  72. obj.imageObj.updateTransform();
  73. }
  74. obj.init();
  75. r(obj);
  76. };
  77. })
  78. }