-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PureScript 0.15 updates #24
Changes from all commits
801a5b0
3a9f39b
a809332
af31e84
a576a50
5282668
f5021a4
b4e66e4
fd4a36d
57a9af8
330e07e
a90143d
8bff7b1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [12.x, 14.x, 16.x, 18.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up PureScript toolchain | ||
uses: purescript-contrib/setup-purescript@main | ||
with: | ||
purescript: "0.15.0" | ||
|
||
- name: Set up Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Cache NPM dependencies | ||
uses: actions/cache@v2 | ||
env: | ||
cache-name: cache-node-modules | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-build-${{ env.cache-name }}- | ||
${{ runner.os }}-build- | ||
${{ runner.os }}- | ||
|
||
- name: Install NPM dependencies | ||
run: npm install | ||
|
||
- name: Install spago deps | ||
run: npm run deps | ||
|
||
- name: Build the project | ||
run: npm run build | ||
|
||
- name: Build examples | ||
run: npm run example |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,6 @@ | |
/.purs* | ||
/.psa* | ||
/.vscode/ | ||
/.spago/ | ||
/output-pulp/ | ||
.psc-* |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,32 @@ | ||
{ | ||
"name": "purescript-react-dnd-basic", | ||
"license": [ | ||
"Apache-2.0" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/lumihq/purescript-react-dnd-basic" | ||
}, | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"output" | ||
], | ||
"license": "Apache-2.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/lumihq/purescript-react-dnd-basic.git" | ||
}, | ||
"dependencies": { | ||
"purescript-prelude": "^4.1.1", | ||
"purescript-nullable": "^4.1.1", | ||
"purescript-promises": "^3.1.1", | ||
"purescript-react-basic-dom": "lumihq/purescript-react-basic-dom#^3.3.0", | ||
"purescript-react-basic-hooks": "^6.0.0" | ||
"purescript-console": "^v6.0.0", | ||
"purescript-effect": "^v4.0.0", | ||
"purescript-maybe": "^v6.0.0", | ||
"purescript-nullable": "^v6.0.0", | ||
"purescript-prelude": "^v6.0.0", | ||
"purescript-react-basic-hooks": "^v8.0.0", | ||
"purescript-web-dom": "^v6.0.0" | ||
}, | ||
"devDependencies": { | ||
"purescript-psci-support": "^4.0.0" | ||
"resolutions": { | ||
"purescript-prelude": "^6.0.0", | ||
"purescript-newtype": "^5.0.0", | ||
"purescript-control": "^6.0.0", | ||
"purescript-unsafe-coerce": "^6.0.0", | ||
"purescript-safe-coerce": "^2.0.0" | ||
} | ||
} |
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
let config = ./../../spago.dhall | ||
|
||
in config | ||
// { sources = config.sources # [ "examples/basic/**/*.purs" ] | ||
, dependencies = | ||
config.dependencies | ||
# [ "arrays" | ||
, "exceptions" | ||
, "foldable-traversable" | ||
, "integers" | ||
, "react-basic" | ||
, "react-basic-dom" | ||
, "web-html" | ||
] | ||
} | ||
Comment on lines
+1
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This formatting looks a bit strange, but this is how |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,31 @@ | ||
module Basic where | ||
module Example.Basic where | ||
|
||
import Prelude | ||
import Data.Array ((!!), drop, mapWithIndex, take) | ||
import Data.Foldable (traverse_) | ||
import Data.Int as Int | ||
import Data.Maybe (fromMaybe, maybe) | ||
import Data.Maybe (fromMaybe, maybe, Maybe(..)) | ||
import Effect (Effect) | ||
import Effect.Class.Console as Console | ||
import Effect.Exception (throw) | ||
import React.Basic.DOM (render) | ||
import React.Basic.DOM as R | ||
import React.Basic.DOM.Events (targetChecked) | ||
import React.Basic.Events as Events | ||
import React.Basic.Hooks (Component, component, fragment, mkReducer, useReducer, (/\)) | ||
import React.Basic.Hooks as React | ||
import React.Basic.ReactDND (dndProvider, mergeTargets, useDrag, useDrop) | ||
import React.Basic.ReactDND.Backends.HTML5Backend (html5Backend) | ||
import Web.DOM.NonElementParentNode (getElementById) | ||
import Web.HTML (window) | ||
import Web.HTML.HTMLDocument (toNonElementParentNode) | ||
import Web.HTML.Window (document) | ||
|
||
data Action | ||
= Move { from :: Int, to :: Int } | ||
| SetDone String Boolean | ||
|
||
type Todo | ||
= { id :: String, text :: String, done :: Boolean } | ||
type Todo = { id :: String, text :: String, done :: Boolean } | ||
|
||
mkTodoExample :: Component Unit | ||
mkTodoExample = do | ||
|
@@ -34,7 +40,7 @@ mkTodoExample = do | |
, R.p_ [ R.text "Drag to reorder the list:" ] | ||
, R.section_ | ||
$ state.todos | ||
# mapWithIndex \index t -> todo { index, todo: t, dispatch } | ||
# mapWithIndex \index t -> todo { index, todo: t, dispatch } | ||
] | ||
where | ||
initialState = | ||
|
@@ -53,20 +59,20 @@ mkTodoExample = do | |
SetDone id done -> | ||
state | ||
{ todos = | ||
state.todos | ||
<#> \t -> | ||
state.todos | ||
<#> \t -> | ||
if t.id == id then | ||
t { done = done } | ||
else | ||
t | ||
} | ||
|
||
mkTodo :: | ||
Component | ||
{ index :: Int | ||
, todo :: Todo | ||
, dispatch :: Action -> Effect Unit | ||
} | ||
mkTodo | ||
:: Component | ||
{ index :: Int | ||
, todo :: Todo | ||
, dispatch :: Action -> Effect Unit | ||
} | ||
mkTodo = do | ||
let | ||
todoDND = "todo-dnd" | ||
|
@@ -119,3 +125,15 @@ moveItem fromIndex toIndex items = | |
take toIndex items' | ||
<> maybe [] pure item | ||
<> drop toIndex items' | ||
|
||
main :: Effect Unit | ||
main = do | ||
maybeContainer <- window | ||
>>= document | ||
>>= toNonElementParentNode | ||
>>> getElementById "container" | ||
case maybeContainer of | ||
Nothing -> throw "Container element not found." | ||
Just container -> do | ||
todoExample <- mkTodoExample | ||
render (todoExample unit) container | ||
Comment on lines
+129
to
+139
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This used to be in a separate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed this to be a bit more like the Halogen examples: https://github.com/purescript-halogen/purescript-halogen/tree/master/examples/basic (removed the Makefile and
package.json
from this directory in favor of runningspago
from root directory and adding NPM deps to top-leveldevDependencies
).It would be nice to have some tests 😄 and to be able to use any
examples/
modules in the tests. Started looking into that, but seemed too much for this PR, just manually tested that the basic example still works.