Dante 3 Documentation

Configurable Extensions

Working examples and integration notes for the current Dante editor surface.

Extensions

file

Upload handler example for audio recorder

Live example
<DanteEditor readOnly={false} 
  widgets={[
    AudioRecorderBlockConfig({
      options: {
        seconds_to_record: 20000,
        upload_handler: (a, editor)=>{
          console.log("UPLOAD HANDLER HERE")
          //editor.updateAttributes({
          //  url: "/aaaa",
          //});
        },
        //upload_url: `/attachments.json?id=${this.props.data.id}&app_id=${this.props.app.key}`,
      },
    })
  ]}
  tooltips={[
    AddButtonConfig({
      placement: "up",
      fixed: true
    }),
  ]} 
  content={null} 
/>