第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

故事書:故事渲染完成后的回調(diào)

故事書:故事渲染完成后的回調(diào)

UYOU 2023-03-18 11:20:47
我正在使用 Storybook 在純 HTML、CSS 和 JS(實(shí)際上是 jQuery)中創(chuàng)建組件。我想知道在屏幕上呈現(xiàn)故事時(shí)是否有回調(diào)函數(shù)(例如useEffectReact),因?yàn)橹挥挟?dāng)組件確實(shí)在 DOM 中時(shí)我才需要運(yùn)行相關(guān)的 jQuery 代碼。這是我的情況:// Button.stories.js// my pure HTML componentconst Button = () => `<button>My button </button>`;export default {    title: 'Buttons',};export const ButtonStory = () => Button()// would be great something like: ButtonStory.callback = function(){ do this}有沒有解決方法的東西?(比如將 HTML 組件包裝在 react 組件中并使用 useEffect 來觸發(fā)代碼)
查看完整描述

1 回答

?
慕婉清6462132

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超2個(gè)贊

我將分享我發(fā)現(xiàn)的一個(gè)不是最佳的解決方案,但可能對(duì)其他人有用:


我的故事.stories.js

import {ActionBar} from '../public/components/ActionBar/actionbar.module';

import controller from "!raw-loader!../public/components/ActionBar/controller.js";

import customRenderStory from "../utils/customRenderStory";


export default {

    title: 'Basic/ActionBar',

};


//

export const ActionBarToExport= () =>

    customRenderStory(

        ActionBar(),

        controller,

        2000

    );

customRenderStory.js

export default (component, javascript, timeout) => {

    if (javascript !== undefined) setTimeout(() => eval(javascript), timeout)

    return component;

}

這樣我controller.js每次渲染故事的時(shí)候都可以執(zhí)行里面的代碼。我需要一個(gè)超時(shí)時(shí)間(可以配置),因?yàn)槲也荒艽_定組件是否會(huì)在代碼執(zhí)行后掛載。


就我而言,純 HTML 和 jQuery 中的 StoryBook 似乎可以正常工作。


查看完整回答
反對(duì) 回復(fù) 2023-03-18
  • 1 回答
  • 0 關(guān)注
  • 118 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)