web-dev-qa-db-ja.com

崇高な反応コードの構文ハイライト

私はいくつかの基本的なReact崇高なテキストのコードを書き始めています。ここに私の構文の強調表示は次のようになります。部分的に強調表示されます。 ?

enter image description here

import React, { Component } from 'react'
import { connect } from 'react-redux'   // <-- is the glue between react and redux
import { bindActionCreators } from 'redux'
import { selectBook } from '../actions/index'

// there is no intrinsic connection between React and Redux
// they are two seperate libraries
// they are connected using a seperate library called ReactRedux

// container? its a React component that hasa direct connection to state managed by Redux
class BookList extends Component {

    constructor(props) {
        super(props)
        //this.props = props;
    }

    renderList() {
        return this.props.books.map((book) => {
            return (
                <li key={book.title} className="list-group-item">{book.title}</li>
            )
        })
    }

    render() {
        return (
            <ul className="list-group col-sm-4">
                {this.renderList()}
            </ul>
        )
    }

}

// function is the glue between react and redux
function mapStateToProps(state) {
    // Whatever gets retrieved from here will show up as props inside
    // of book-list

    return {
        books: state.books
    }
}

// anything returned from this function will end up as props on the BookList container
function mapDispatchToProps(dispatch) {
    return bindActionCreators({selectBook: selectBook}, dispatch)
}

// Promote BookList from a component to a container - it needs to know
// about this new dispatch method, selectBook. Make it available as a prop
export default connect(mapStateToProps, mapDispatchToProps)(BookList);

編集:[いくつかの誤った構文を修正、コードテキストを追加]

44
nev.m

Babelをインストールすると、構文の強調表示が修正されます。

Sublime3にbabelをインストールする手順:

  1. Windowsの場合: 押す Ctrl+Shift+PMac用:Cmd+Shift+P
  2. それから タイプ installおよび 選択する Package control: Install Package
  3. それから タイプ Babelおよび 選択する 'Babel-Snippets'。すぐにbabelがインストールされます。
  4. それから babel構文を設定します Sublime3エディターで からView > Syntax > Babel > Javascript

一部のユーザーの場合、ステップ4でBabelが欠落していました。 さらにインストールする Babel同じ手順に従い、ステップ3でBabel-Snippetsの代わりにBabelを選択します。

私がそれをテストしたことを確認してください:

enter image description here

90
MYGz

babel-sublimeプラグインをインストールする必要があります。

package control of sublimeからインストールできます。

ここにリンクがあります- https://github.com/babel/babel-sublime

5
Prakash Sharma

これを構文をJSXに設定することで解決できました。このプラグインをインストールする必要はありませんでした。

0
DaveWoodall.com