o
    :6fv                     @   s   d dl Zd dlmZmZmZmZmZ ddlm	Z	m
Z
 ddlmZmZmZmZ ddlmZ ddlmZ ejG dd	 d	e	ejZdS )
    N)ListUnicodeDictobserveInteger   )
BaseFigureBasePlotlyType)BoxSelectorLassoSelectorInputDeviceStatePoints)custom_serializers)__frontend_version__c                       sx  e Zd ZdZedjddZedjddZeejddZ	edjddZ
edjddZeejddZe jd;ddieZe jd;ddieZe jd;ddieZeddjd;ddieZeddjd;ddieZeddjd;ddieZeddjd;ddieZeddjd;ddieZeddjd;ddieZeddjd;ddieZeddjd;ddieZeddjd;ddieZeddjd;ddieZeddjd;ddieZeddjd;ddieZeddjd;ddieZeddjd;ddieZ eddjd;ddieZ!e"d	jddZ#e"d	jddZ$dZ%d
Z&	
d@ fdd	Z'dAddZ(dBddZ)dd Z*dd Z+	dBddZ,dd Z-dd Z.e/ddd Z0e/dd d! Z1e/d"d#d$ Z2e/d%d&d' Z3e/d(d)d* Z4e/d+d,d- Z5d.d/ Z6dCd0d1Z7d2d3 Z8d4d5 Z9e:d6d7 Z;e;j<d8d7 Z;e=d9d: Z>e=dDd<d=Z?e=dEd>d?Z@  ZAS )FBaseFigureWidgetza
    Base class for FigureWidget. The FigureWidget class is code-generated as a
    subclass
    Z
FigureViewT)synczjupyterlab-plotlyZFigureModelr   )Z
allow_noner   FNc                    sV   t t| jd||||d| | jrt  d| _d| _g | _d| _d| _	d| _
d S )N)dataZlayout_plotlyframesskip_invalidr   F )superr   __init___frame_objs_display_frames_error_last_layout_edit_id_layout_edit_in_process_waiting_edit_callbacks_last_trace_edit_id_trace_edit_in_processZ_view_count)selfr   layoutr   r   kwargs	__class__r   1lib/python3.10/site-packages/plotly/basewidget.pyr   c   s    	
zBaseFigureWidget.__init__c                 C   s2   | j d }|| _ d| _|||d}|| _d| _dS )a  
        Send Plotly.relayout message to the frontend

        Parameters
        ----------
        layout_data : dict
            Plotly.relayout layout data
        source_view_id : str
            UID of view that triggered this relayout operation
            (e.g. By the user clicking 'zoom' in the toolbar). None if the
            operation was not triggered by a frontend view
        r   T)relayout_datalayout_edit_idsource_view_idN)r   r   _py2js_relayout)r   layout_datar'   r&   msg_datar   r   r$   _send_relayout_msg   s   

z#BaseFigureWidget._send_relayout_msgc                 C   sV   |  |}| jd }|| _d| _| jd }|| _d| _|||||d}|| _d| _dS )a  
        Send Plotly.restyle message to the frontend

        Parameters
        ----------
        restyle_data : dict
            Plotly.restyle restyle data
        trace_indexes : list[int]
            List of trace indexes that the restyle operation
            applies to
        source_view_id : str
            UID of view that triggered this restyle operation
            (e.g. By the user clicking the legend to hide a trace).
            None if the operation was not triggered by a frontend view
        r   T)restyle_dataZrestyle_tracestrace_edit_idr&   r'   N)_normalize_trace_indexesr   r   r   r   _py2js_restyle)r   r,   trace_indexesr'   r&   r-   restyle_msgr   r   r$   _send_restyle_msg   s   




z"BaseFigureWidget._send_restyle_msgc                 C   H   | j d }|| _ d| _| jd }|| _d| _|||d}|| _d| _dS )z
        Send Plotly.addTraces message to the frontend

        Parameters
        ----------
        new_traces_data : list[dict]
            List of trace data for new traces as accepted by Plotly.addTraces
        r   T)Z
trace_datar-   r&   N)r   r   r   r   _py2js_addTraces)r   Znew_traces_datar&   r-   Zadd_traces_msgr   r   r$   _send_addTraces_msg      


z$BaseFigureWidget._send_addTraces_msgc                 C   s   ||d}|| _ d| _ dS )z
        Send Plotly.moveTraces message to the frontend

        Parameters
        ----------
        current_inds : list[int]
            List of current trace indexes
        new_inds : list[int]
            List of new trace indexes
        )Zcurrent_trace_indsZnew_trace_indsN)_py2js_moveTraces)r   Zcurrent_indsZnew_indsZmove_msgr   r   r$   _send_moveTraces_msg  s   

z%BaseFigureWidget._send_moveTraces_msgc                 C   sX   |  |}| jd }|| _d| _| jd }|| _d| _||||||d}|| _d| _dS )a'  
        Send Plotly.update message to the frontend

        Parameters
        ----------
        restyle_data : dict
            Plotly.update restyle data
        relayout_data : dict
            Plotly.update relayout data
        trace_indexes : list[int]
            List of trace indexes that the update operation applies to
        source_view_id : str
            UID of view that triggered this update operation
            (e.g. By the user clicking a button).
            None if the operation was not triggered by a frontend view
        r   T)
style_datar)   style_tracesr-   r&   r'   N)r.   r   r   r   r   _py2js_update)r   r,   r%   r0   r'   r-   r&   
update_msgr   r   r$   _send_update_msg   s    



z!BaseFigureWidget._send_update_msgc                 C   sZ   |  |}| jd }|| _d| _| jd }|| _d| _||||||dd}|| _d| _dS )a  
        Send Plotly.update message to the frontend

        Note: there is no source_view_id parameter because animations
        triggered by the fontend are not currently supported

        Parameters
        ----------
        styles_data : list[dict]
            Plotly.animate styles data
        relayout_data : dict
            Plotly.animate relayout data
        trace_indexes : list[int]
            List of trace indexes that the animate operation applies to
        r   TN)r9   r)   r:   animation_optsr-   r&   r'   )r.   r   r   r   r   _py2js_animate)r   Zstyles_datar%   r0   r>   r-   r&   Zanimate_msgr   r   r$   _send_animate_msgR  s"   



z"BaseFigureWidget._send_animate_msgc                 C   r3   )z
        Send Plotly.deleteTraces message to the frontend

        Parameters
        ----------
        delete_inds : list[int]
            List of trace indexes of traces to delete
        r   T)delete_indsr&   r-   N)r   r   r   r   _py2js_deleteTraces)r   rA   r-   r&   Z
delete_msgr   r   r$   _send_deleteTraces_msg  r6   z'BaseFigureWidget._send_deleteTraces_msg_js2py_traceDeltasc                 C   s   |d }|sd| _ dS |d }|d }|| jkrh|D ];}|d }dd | jD }||}| j| }	t|	j|}
| |	j|	j}|rN||d}|| _	d| _	| 
|
|g qd	| _| jsh| jrh| j   | js_d| _ dS )
z@
        Process trace deltas message from the frontend
        newNtrace_deltasr-   uidc                 S   s   g | ]}|j qS r   )rG   ).0tracer   r   r$   
<listcomp>  s    z?BaseFigureWidget._handler_js2py_traceDeltas.<locals>.<listcomp>)Zremove_traceremove_propsF)rD   r   r   indexr   _transform_dataZ_prop_defaults_remove_overlapping_propsZ_props_py2js_removeTracePropsZ _dispatch_trace_change_callbacksr   r   r   pop)r   changer*   rF   r-   ZdeltaZ	trace_uidZ
trace_uidstrace_indexZ	uid_tracedelta_transformrK   Zremove_trace_props_msgr   r   r$   _handler_js2py_traceDeltas  s>   



z+BaseFigureWidget._handler_js2py_traceDeltas_js2py_layoutDeltac                 C   s   |d }|sd| _ dS |d }|d }|| jkret| j|}| | j| j}|r3d|i}|| _d| _|D ]}|d }	| j	|	}
|
rM|	| jvrMi | j|	< q5| 
| d| _| jse| jre| j   | js\d| _ dS )z@
        Process layout delta message from the frontend
        rE   Nlayout_deltar&   rK   r   F)rU   r   r   rM   Z_layout_defaultsrN   _layout_py2js_removeLayoutPropsr    Z_subplot_re_matchZ!_dispatch_layout_change_callbacksr   r   r   rP   )r   rQ   r*   rV   r&   rS   Zremoved_propsZremove_props_msgZproppathZpropmatchr   r   r$   _handler_js2py_layoutDelta  s<   



z+BaseFigureWidget._handler_js2py_layoutDelta_js2py_restylec                 C   sH   |d }|sd| _ dS |d }|d }|d }| j|||d d| _ dS )zB
        Process Plotly.restyle message from the frontend
        rE   Nr9   r:   r'   )r,   r0   r'   )r[   Zplotly_restyle)r   rQ   r1   r9   r:   r'   r   r   r$   _handler_js2py_restyle(  s   
z'BaseFigureWidget._handler_js2py_restyle_js2py_updatec                 C   sR   |d }|sd| _ dS |d }|d }|d }|d }| j||||d d| _ dS )zA
        Process Plotly.update message from the frontend
        rE   Nr9   r:   r)   r'   )r,   r%   r0   r'   )r]   Zplotly_update)r   rQ   r<   Zstyler0   r    r'   r   r   r$   _handler_js2py_updateD  s   
z&BaseFigureWidget._handler_js2py_update_js2py_relayoutc                 C   sP   |d }|sd| _ dS |d }|d }d|v r|d | j||d d| _ dS )zC
        Process Plotly.relayout message from the frontend
        rE   Nr%   r'   ZlastInputTime)r%   r'   )r_   rP   Zplotly_relayout)r   rQ   Zrelayout_msgr%   r'   r   r   r$   _handler_js2py_relayoutb  s   

z(BaseFigureWidget._handler_js2py_relayout_js2py_pointsCallbackc                    s  |d }|sd _ dS |d }|ddr?|d }|d }|d }|dkr-tdi |}n|dkr9tdi |}ntd	| d}|d
drS|d
 }tdi |}	nd}	|d }
 fddtt jD }t	|
d |
d |
d |
d D ]\}}}}|| }|d 
| |d 
| |d 
| qv| D ]E\}}tdi |} j| }|dkr|||	 q|dkr|||	 q|dkr|||	 q|dkr||| q|dkr|| qd _ dS )zC
        Process points callback message from the frontend
        rE   N
event_typeselectortypeselector_stateZboxZlassozUnsupported selector type: %sZdevice_statepointsc              	      s&   i | ]}|g g g  j | j|d qS ))
point_indsxsysZ
trace_namerR   )
_data_objsname)rH   	trace_indr   r   r$   
<dictcomp>  s    
zBBaseFigureWidget._handler_js2py_pointsCallback.<locals>.<dictcomp>rh   ri   Zpoint_indexesr0   rg   Zplotly_clickZplotly_hoverZplotly_unhoverZplotly_selectedZplotly_deselectr   )ra   getr
   r   
ValueErrorr   rangelenrj   zipappenditemsr   r   Z_dispatch_on_clickZ_dispatch_on_hoverZ_dispatch_on_unhoverZ_dispatch_on_selectionZ_dispatch_on_deselect)r   rQ   Zcallback_datarb   Zselector_dataZselector_typere   rc   Zdevice_state_datastateZpoints_dataZtrace_pointsxyZ	point_indrl   Z
trace_dictZtrace_points_datarf   rI   r   rm   r$   _handler_js2py_pointsCallback  s`   



z.BaseFigureWidget._handler_js2py_pointsCallbackc                 C      t )z/
        Customize html representation
        NotImplementedErrorrm   r   r   r$   _repr_html_     zBaseFigureWidget._repr_html_c                 K   s   ddd| j diS )zF
        Return mimebundle corresponding to default renderer.
        z(application/vnd.jupyter.widget-view+json   r   )Zversion_majorZversion_minorZmodel_id)Z	_model_id)r   ZincludeZexcludeZvalidater!   r   r   r$   _repr_mimebundle_  s   z"BaseFigureWidget._repr_mimebundle_c                 C   rz   )zD
        Handle rich display of figures in ipython contexts
        r{   rm   r   r   r$   _ipython_display_  r~   z"BaseFigureWidget._ipython_display_c                 C   s&   | j s| jr| j| dS |  dS )a  
        Register a function to be called after all pending trace and layout
        edit operations have completed

        If there are no pending edit operations then function is called
        immediately

        Parameters
        ----------
        fn : callable
            Function of zero arguments to be called when all pending edit
            operations have completed
        N)r   r   r   rt   )r   fnr   r   r$   on_edits_completed  s   
z#BaseFigureWidget.on_edits_completedc                 C   s   | j S N)r   rm   r   r   r$   r     s   zBaseFigureWidget.framesc                 C   s   |rt   d S d S r   )r   r   )r   Z
new_framesr   r   r$   r     s   c                  C   s   d} t | )z
        Display an informative error when user attempts to set frames on a
        FigureWidget

        Raises
        ------
        ValueError
            always
        z
Frames are not supported by the plotly.graph_objs.FigureWidget class.
Note: Frames are supported by the plotly.graph_objs.Figure class)rp   )msgr   r   r$   r     s   z&BaseFigureWidget._display_frames_errorr   c           
      C   sB  g }t | tr^t |tsJ | D ]I\}}t |ts t|rF|| v rE| | }||f }t|||}|| |sE| | |	| q|| v r[|dkr[| | |	||f  q|S t | t
rt |t
sjJ t|D ]0\}	}|	t| kr{ |S | |	 }|durt |tst|r||	f }t|||}|| qn|S )a  
        Remove properties in input_data that are also in delta_data, and do so
        recursively.

        Exception: Never remove 'uid' from input_data, this property is used
        to align traces

        Parameters
        ----------
        input_data : dict|list
        delta_data : dict|list

        Returns
        -------
        list[tuple[str|int]]
            List of removed property path tuples
        rG   N)
isinstancedictru   r   _is_dict_listr   rN   extendrP   rt   list	enumeraterr   )
Z
input_dataZ
delta_dataZ	prop_pathZremovedpZ	delta_val	input_valZrecur_prop_pathZrecur_removedir   r   r$   rN   $  sP   








z*BaseFigureWidget._remove_overlapping_propsc              	   C   s  i }t | tr}t |tstdj| |d| D ]J\}}t |ts't|rJ|| vr6t |tr2i ng | |< | | }|tj	|||||f d q|| vsVt
| | |sc|| |< ||f }|||< q|r{t|  t| D ]}	| |	 qs|S t | trt |tstdj| |dt|D ]D\}
}|
t| kr| d | |
 }|durt |tst|r|tj	|||||
f d qt
| |
 |s|| |
< ||||
f < q|S )aB  
        Transform to_data into from_data and return relayout-style
        description of the transformation

        Parameters
        ----------
        to_data : dict|list
        from_data : dict|list

        Returns
        -------
        dict
            relayout-style description of the transformation
        z,Mismatched data types: {to_dict} {from_data})Zto_dict	from_data)should_removerelayout_pathz5Mismatched data types: to_data: {to_data} {from_data})to_datar   N)r   r   rp   formatru   r   r   updater   rM   r	   Z_vals_equalsetkeys
differencerP   r   r   rr   rt   )r   r   r   r   r%   Z	from_propZfrom_valr   Zrelayout_path_propZremove_propr   r   r   r$   rM   s  s~   



+


z BaseFigureWidget._transform_data)NNNFr   )NN)NNT)r   )Tr   )B__name__
__module____qualname____doc__r   tagZ
_view_nameZ_view_moduler   Z_view_module_versionZ_model_nameZ_model_moduleZ_model_module_versionr   r   rW   r   _dataZ_configr4   r/   r(   r;   r?   rB   r7   rX   rO   rD   rU   r[   r_   r]   ra   r   r   r   Z_set_trace_uidZ_allow_disable_validationr   r+   r2   r5   r8   r=   r@   rC   r   rT   rZ   r\   r^   r`   ry   r}   r   r   r   propertyr   setterstaticmethodr   rN   rM   __classcell__r   r   r"   r$   r   
   s    	

9
 .!
22#
@
?



W



Nr   )Z
ipywidgetsZwidgetsZ	traitletsr   r   r   r   r   Zbasedatatypesr   r	   Z	callbacksr
   r   r   r   Zserializersr   versionr   registerZ	DOMWidgetr   r   r   r   r$   <module>   s    