mirror of
https://github.com/jfmengels/elm-review.git
synced 2024-12-26 03:04:48 +03:00
Reorganized example
This commit is contained in:
parent
507dc5f02e
commit
19ffc231fd
@ -1,7 +1,5 @@
|
||||
module Main exposing (main)
|
||||
|
||||
-- Rules
|
||||
|
||||
import Browser
|
||||
import Html exposing (..)
|
||||
import Html.Attributes exposing (class, id, style)
|
||||
@ -13,11 +11,10 @@ import Lint.Rule.NoExtraBooleanComparison
|
||||
import Lint.Rule.NoImportingEverything
|
||||
import Lint.Rule.NoUnusedVariables
|
||||
import Lint.RuleError exposing (RuleError)
|
||||
import Result exposing (Result)
|
||||
|
||||
|
||||
type Msg
|
||||
= UserEditedSourceCode String
|
||||
|
||||
-- LINT CONFIGURATION
|
||||
|
||||
|
||||
config : List ( Severity, Rule )
|
||||
@ -42,6 +39,16 @@ config =
|
||||
]
|
||||
|
||||
|
||||
|
||||
-- MODEL
|
||||
|
||||
|
||||
type alias Model =
|
||||
{ sourceCode : String
|
||||
, lintResult : Result (List String) (List ( Severity, RuleError ))
|
||||
}
|
||||
|
||||
|
||||
init : Model
|
||||
init =
|
||||
let
|
||||
@ -65,10 +72,12 @@ g n = n + 1
|
||||
}
|
||||
|
||||
|
||||
type alias Model =
|
||||
{ sourceCode : String
|
||||
, lintResult : Result (List String) (List ( Severity, RuleError ))
|
||||
}
|
||||
|
||||
-- UPDATE
|
||||
|
||||
|
||||
type Msg
|
||||
= UserEditedSourceCode String
|
||||
|
||||
|
||||
update : Msg -> Model -> Model
|
||||
@ -81,30 +90,8 @@ update action model =
|
||||
}
|
||||
|
||||
|
||||
errorToString : RuleError -> String
|
||||
errorToString { rule, message, range } =
|
||||
rule ++ ": " ++ message ++ " (line " ++ String.fromInt range.start.row ++ ", column " ++ String.fromInt range.start.column ++ ")"
|
||||
|
||||
|
||||
lintErrors : Model -> List (Html Msg)
|
||||
lintErrors model =
|
||||
let
|
||||
messages : List String
|
||||
messages =
|
||||
case model.lintResult of
|
||||
Err errors ->
|
||||
errors
|
||||
|
||||
Ok errors ->
|
||||
if List.isEmpty errors then
|
||||
[ "No errors." ]
|
||||
|
||||
else
|
||||
List.map (Tuple.second >> errorToString) errors
|
||||
in
|
||||
List.map
|
||||
(\message -> li [] [ text message ])
|
||||
messages
|
||||
-- VIEW
|
||||
|
||||
|
||||
view : Model -> Html Msg
|
||||
@ -133,6 +120,37 @@ view model =
|
||||
]
|
||||
|
||||
|
||||
lintErrors : Model -> List (Html Msg)
|
||||
lintErrors model =
|
||||
let
|
||||
messages : List String
|
||||
messages =
|
||||
case model.lintResult of
|
||||
Err errors ->
|
||||
errors
|
||||
|
||||
Ok errors ->
|
||||
if List.isEmpty errors then
|
||||
[ "No errors." ]
|
||||
|
||||
else
|
||||
List.map (Tuple.second >> errorToString) errors
|
||||
in
|
||||
List.map
|
||||
(\message -> li [] [ text message ])
|
||||
messages
|
||||
|
||||
|
||||
errorToString : RuleError -> String
|
||||
errorToString { rule, message, range } =
|
||||
let
|
||||
location : String
|
||||
location =
|
||||
"(line " ++ String.fromInt range.start.row ++ ", column " ++ String.fromInt range.start.column ++ ")"
|
||||
in
|
||||
rule ++ ": " ++ message ++ " " ++ location
|
||||
|
||||
|
||||
main : Program () Model Msg
|
||||
main =
|
||||
Browser.sandbox
|
||||
|
Loading…
Reference in New Issue
Block a user