在ReactJs

时间:2017-12-27 15:52:24

标签: javascript reactjs leaflet

我在ReactJs中创建了一些组件。其中包含HTML代码。 一个组件是Leaflets map。

/**
 * Draws zones control container.
 *
 * @param map
 *
 * @return void
 */
addZoneControl = (map) => {
    let categories = this.generateZoneCategories();
    let control = L.Control.extend({
        options: {
            position: 'topleft'
        },
        onAdd: function (map) {
            let container = L.DomUtil.create('div', 'leaflet-bar leaflet-control leaflet-control-custom');
            container.style.backgroundColor = 'white';
            container.innerHTML = categories;
            container.id = 'categoriesContainer';
            container.onclick = function(){
                alert('buttonClicked');
            };
            return container;
        }
    });

    map.addControl(new control());
};

已导入地图控件的HTML代码 (此HTML代码是动态生成的,但现在编写为静态)

/**
 * Generates HTML code from JSON data 
 * 
 * @return {string}
 */
generateZoneCategories = () => {
    return '<div class="col-xs-12 col-md-3" id="categories">' +
            '<p class="text-uppercase" id="filter">Ansicht Filtern</p>' +
            '<p class="category purple">1. Kategorie <span>CHF 78.00</span></p>' +
            '<p class="category orange">2. Kategorie <span>CHF 68.00</span></p>' +
            '<p class="category green">3. Kategorie <span>CHF 58.00</span></p>' +
            '<p class="category blue">4. Kategorie <span>CHF 48.00</span></p>' +
        '</div>'
};

ReactJs Component

import React from 'react';
import ReactDOM from 'react-dom';
import L from 'leaflet';

import 'leaflet/dist/leaflet.css'
import './style.css';
import {childrenType, GridLayer} from 'react-leaflet'

class SeatMap extends React.Component {
    componentDidMount() {
        let map = this.map = L.map(ReactDOM.findDOMNode(this), {
            minZoom: -3,
            maxZoom: 3,
            crs: L.CRS.Simple,
            zoomsliderControl: false,
            zoomControl: false,
            attributionControl: false,
            doubleClickZoom: false,
        });

        this.addZoneControl(map);

        map.fitWorld();

        /* Here I want to bind click event on category class */
        console.log(ReactDOM.findDOMNode('.category').length);


       }
.
.
.

我想点击带有类别类的元素来做更多的事情。

使用jQuery我们知道它会像

$('.category').click(function () { /* magic */ });

我想知道如何在 ReactJs 中做同样的魔术?

1 个答案:

答案 0 :(得分:1)

经过一番调查,我发现了一些可能有用的东西。

https://reactjs.org/docs/integrating-with-other-libraries.html
在此链接上,您可以找到ReactJs推荐的有关其他库的内容。

有关其他库的一般建议,例如 bootstrap leaflet ,是搜索ReactJs优化的lib(带有组件),例如react-bootstrap反应传单。或者,如果没有ReactJs优化的lib,也许是时候搜索其他解决方案了。

页面上的所有可点击元素都应为 components ,以便本书使用ReactJs并获得所有好处。

这个主题可能是主题,但有一个解决方案如何绑定点击组件并从中获取数据。

Send data to ReactJs function via component