Skip to content
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

Merged
merged 13 commits into from
Jul 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .github/workflows/ci.yml
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
26 changes: 0 additions & 26 deletions .github/workflows/nodejs.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@
/.purs*
/.psa*
/.vscode/
/.spago/
/output-pulp/
.psc-*
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

32 changes: 20 additions & 12 deletions bower.json
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"
}
}
8 changes: 0 additions & 8 deletions examples/basic/Makefile

This file was deleted.

6 changes: 4 additions & 2 deletions examples/basic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

## Building

You can build this example from the root of the `purescript-react-dnd-basic` project:

```sh
npm install
make all
npm run example:basic
```

This will compile the PureScript source files, bundle them, and use Browserify to combine PureScript and NPM sources into a single bundle.
This will compile the PureScript source files, bundle them, and combine PureScript and NPM sources into a single bundle.
Comment on lines +5 to +12
Copy link
Member Author

@pete-murphy pete-murphy Jun 14, 2022

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 running spago from root directory and adding NPM deps to top-level devDependencies).

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.


Then open `html/index.html` in your browser.
9 changes: 0 additions & 9 deletions examples/basic/index.js

This file was deleted.

17 changes: 0 additions & 17 deletions examples/basic/package.json

This file was deleted.

15 changes: 15 additions & 0 deletions examples/basic/spago.dhall
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
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This formatting looks a bit strange, but this is how dhall format likes things 🤷

44 changes: 31 additions & 13 deletions examples/basic/src/Basic.purs
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
Expand All @@ -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 =
Expand All @@ -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"
Expand Down Expand Up @@ -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
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This used to be in a separate index.js, and there was a Browserify command in the Makefile that would bundle it with the purs output (after writing module.exports = PS.Basic;). It seemed simpler to just use spago bundle-app with a single PS module.

Loading