Remove some Debug statements.

This commit is contained in:
Dillon Kearns 2022-06-28 14:48:57 -07:00
parent dfb9a81761
commit da6e7d7313
5 changed files with 31 additions and 13 deletions

View File

@ -15,6 +15,7 @@ type Effect msg
| Cmd (Cmd msg)
| Batch (List (Effect msg))
| GetStargazers (Result Http.Error Int -> msg)
| SetField { formId : String, name : String, value : String }
| FetchRouteData
{ data : Maybe FormDecoder.FormData
, toMsg : Result Http.Error Url -> msg
@ -74,6 +75,9 @@ map fn effect =
, toMsg = fetchInfo.toMsg >> fn
}
SetField info ->
SetField info
SubmitFetcher fetcher ->
fetcher
|> Pages.Fetcher.map fn
@ -96,6 +100,7 @@ perform :
-> Cmd msg
, fromPageMsg : pageMsg -> msg
, key : Browser.Navigation.Key
, setField : { formId : String, name : String, value : String } -> Cmd msg
}
-> Effect pageMsg
-> Cmd msg
@ -107,6 +112,9 @@ perform ({ fromPageMsg, key } as helpers) effect =
Cmd cmd ->
Cmd.map fromPageMsg cmd
SetField info ->
helpers.setField info
Batch list ->
Cmd.batch (List.map (perform helpers) list)

View File

@ -615,9 +615,6 @@ config =
}
onActionData actionData =
let
_ = Debug.log "onActionData" actionData
in
case actionData of
${templates
.map(

View File

@ -93,7 +93,7 @@ update eventObject pageFormState =
-- pageFormState
--
--else
case eventObject |> Decode.decodeValue fieldEventDecoder |> Debug.log "fieldEvent" of
case eventObject |> Decode.decodeValue fieldEventDecoder of
Ok fieldEvent ->
pageFormState
|> Dict.update fieldEvent.formId

View File

@ -835,8 +835,17 @@ startFetcher options model =
|> Just
|> Ok
_ ->
Debug.todo ""
Http.BadUrl_ string ->
Err <| Http.BadUrl string
Http.Timeout_ ->
Err <| Http.Timeout
Http.NetworkError_ ->
Err <| Http.NetworkError
Http.BadStatus_ metadata body ->
Err <| Http.BadStatus metadata.statusCode
)
, tracker = Nothing
, body = Http.stringBody "application/x-www-form-urlencoded" encodedBody
@ -867,10 +876,17 @@ startFetcher2 formData model =
-- TODO maybe have an optional way to pass the bytes through?
Ok Nothing
_ ->
-- TODO where should errors go in application state? Should there be an onError where you can receive application-managed error events that are owned by
-- the Platform Model/Msg's?
Debug.todo ""
Http.BadUrl_ string ->
Err <| Http.BadUrl string
Http.Timeout_ ->
Err <| Http.Timeout
Http.NetworkError_ ->
Err <| Http.NetworkError
Http.BadStatus_ metadata body ->
Err <| Http.BadStatus metadata.statusCode
)
, tracker = Nothing

View File

@ -647,7 +647,6 @@ nextStepToEffect site config model ( updatedStaticResponsesModel, nextStep ) =
config.sharedData
model.allRawResponses
|> Result.mapError (StaticHttpRequest.toBuildError "")
|> Debug.log "@@@sharedData"
apiResponse : Effect
apiResponse =
@ -772,7 +771,6 @@ sendSinglePageProgress site contentJson config model info =
case includeHtml of
RenderRequest.OnlyJson ->
pageDataResult
|> Debug.log "pageDataResult"
|> Result.map
(\okPageData ->
case okPageData of
@ -896,7 +894,6 @@ sendSinglePageProgress site contentJson config model info =
}
)
--Debug.todo ""
currentUrl : Url
currentUrl =
{ protocol = Url.Https