From ed50861a3eabb3a06f424e637827ee2babd44d89 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sun, 15 Nov 2020 15:27:09 -0500 Subject: [PATCH] use create-elm-app --- frontend/.gitignore | 2 - frontend/elm-srcs.nix | 72 -- frontend/src/Main.elm | 79 -- frontend/src/Signup.elm | 115 --- sina/.gitignore | 14 + sina/README.md | 938 +++++++++++++++++++++++ {frontend => sina}/default.nix | 16 +- sina/elm-srcs.nix | 47 ++ {frontend => sina}/elm.json | 16 +- sina/public/favicon.ico | Bin 0 -> 103614 bytes sina/public/index.html | 22 + sina/public/logo.svg | 39 + sina/public/manifest.json | 15 + {frontend => sina}/registry.dat | Bin 101392 -> 102567 bytes {frontend => sina}/scripts/build-dev.sh | 0 sina/src/Main.elm | 56 ++ {frontend => sina}/src/Mi.elm | 0 {frontend => sina}/src/Mi/Switch.elm | 0 {frontend => sina}/src/Mi/WebMention.elm | 0 sina/src/index.js | 12 + sina/src/main.css | 26 + sina/src/serviceWorker.js | 135 ++++ sina/tests/Tests.elm | 22 + 23 files changed, 1346 insertions(+), 280 deletions(-) delete mode 100644 frontend/.gitignore delete mode 100644 frontend/elm-srcs.nix delete mode 100644 frontend/src/Main.elm delete mode 100644 frontend/src/Signup.elm create mode 100644 sina/.gitignore create mode 100644 sina/README.md rename {frontend => sina}/default.nix (63%) create mode 100644 sina/elm-srcs.nix rename {frontend => sina}/elm.json (69%) create mode 100644 sina/public/favicon.ico create mode 100644 sina/public/index.html create mode 100644 sina/public/logo.svg create mode 100644 sina/public/manifest.json rename {frontend => sina}/registry.dat (81%) rename {frontend => sina}/scripts/build-dev.sh (100%) create mode 100644 sina/src/Main.elm rename {frontend => sina}/src/Mi.elm (100%) rename {frontend => sina}/src/Mi/Switch.elm (100%) rename {frontend => sina}/src/Mi/WebMention.elm (100%) create mode 100644 sina/src/index.js create mode 100644 sina/src/main.css create mode 100644 sina/src/serviceWorker.js create mode 100644 sina/tests/Tests.elm diff --git a/frontend/.gitignore b/frontend/.gitignore deleted file mode 100644 index d86ae43..0000000 --- a/frontend/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -elm-stuff -elm.js \ No newline at end of file diff --git a/frontend/elm-srcs.nix b/frontend/elm-srcs.nix deleted file mode 100644 index 6f79e7c..0000000 --- a/frontend/elm-srcs.nix +++ /dev/null @@ -1,72 +0,0 @@ -{ - - "elm/json" = { - sha256 = "0kjwrz195z84kwywaxhhlnpl3p251qlbm5iz6byd6jky2crmyqyh"; - version = "1.1.3"; - }; - - "elm/html" = { - sha256 = "1n3gpzmpqqdsldys4ipgyl1zacn0kbpc3g4v3hdpiyfjlgh8bf3k"; - version = "1.0.0"; - }; - - "elm/browser" = { - sha256 = "0nagb9ajacxbbg985r4k9h0jadqpp0gp84nm94kcgbr5sf8i9x13"; - version = "1.0.2"; - }; - - "rtfeldman/elm-css" = { - sha256 = "0nxiyxyw3kw55whkpwhrcgc0dr6a8zlm2nqvsaqdw6mzkykg0ba6"; - version = "16.1.0"; - }; - - "elm/core" = { - sha256 = "19w0iisdd66ywjayyga4kv2p1v9rxzqjaxhckp8ni6n8i0fb2dvf"; - version = "1.0.5"; - }; - - "elm/url" = { - sha256 = "0av8x5syid40sgpl5vd7pry2rq0q4pga28b4yykn9gd9v12rs3l4"; - version = "1.0.0"; - }; - - "elm/http" = { - sha256 = "008bs76mnp48b4dw8qwjj4fyvzbxvlrl4xpa2qh1gg2kfwyw56v1"; - version = "2.0.0"; - }; - - "elm/time" = { - sha256 = "0vch7i86vn0x8b850w1p69vplll1bnbkp8s383z7pinyg94cm2z1"; - version = "1.0.0"; - }; - - "rtfeldman/elm-iso8601-date-strings" = { - sha256 = "1fa5sslklldy0dq8bm0zdkb9ni50yxhb09xb6lgk00x55bmza9ik"; - version = "1.1.3"; - }; - - "elm/bytes" = { - sha256 = "02ywbf52akvxclpxwj9n04jydajcbsbcbsnjs53yjc5lwck3abwj"; - version = "1.0.8"; - }; - - "elm/file" = { - sha256 = "1rljcb41dl97myidyjih2yliyzddkr2m7n74x7gg46rcw4jl0ny8"; - version = "1.0.5"; - }; - - "rtfeldman/elm-hex" = { - sha256 = "1y0aa16asvwdqmgbskh5iba6psp43lkcjjw9mgzj3gsrg33lp00d"; - version = "1.0.0"; - }; - - "elm/parser" = { - sha256 = "0a3cxrvbm7mwg9ykynhp7vjid58zsw03r63qxipxp3z09qks7512"; - version = "1.1.0"; - }; - - "elm/virtual-dom" = { - sha256 = "0q1v5gi4g336bzz1lgwpn5b1639lrn63d8y6k6pimcyismp2i1yg"; - version = "1.0.2"; - }; -} diff --git a/frontend/src/Main.elm b/frontend/src/Main.elm deleted file mode 100644 index c2cc158..0000000 --- a/frontend/src/Main.elm +++ /dev/null @@ -1,79 +0,0 @@ -module Main exposing (main) - -import Browser exposing (sandbox) -import Html exposing (Html, button, div, ul, li, span, input, text) -import Html.Attributes exposing (autofocus, class, value) -import Html.Events exposing (onClick, onInput) -import Mi -import Mi.Switch -import Mi.WebMention - - --- We added a new AddTodo message type. - - -type Msg - = UpdateText String - | AddTodo - | RemoveTodo Int - - - --- We added a new property called todos, which is a list of strings. - - -type alias Model = - { text : String - , todos : List String - } - - - --- We added (autofocus True), which is like the native HTML autofocus attribute. --- We also added a button that triggers an onClick event when clicked which --- passes an AddTodo message to the update function. - - -view : Model -> Html Msg -view model = - div [ class "text-center" ] - [ input [ onInput UpdateText, value model.text, autofocus True ] [] - , button [ onClick AddTodo, class "btn btn-primary" ] [ text "Add Todo" ] - , ul [] (List.indexedMap (\index todo -> li [] [ text todo, span [onClick (RemoveTodo index)] [text " X"] ]) model.todos) - ] - - -update : Msg -> Model -> Model -update msg model = - case msg of - UpdateText newText -> - { model | text = newText } - - AddTodo -> - { model | text = "", todos = model.todos ++ [ model.text ] } - - RemoveTodo index -> - let - beforeTodos = - List.take index model.todos - - afterTodos = - List.drop (index + 1) model.todos - - newTodos = - beforeTodos ++ afterTodos - in - { model | todos = newTodos } - - - --- We set the todos property so that it's initially an empty list. - - -main : Program () Model Msg -main = - sandbox - { init = { text = "", todos = [] } - , view = view - , update = update - } diff --git a/frontend/src/Signup.elm b/frontend/src/Signup.elm deleted file mode 100644 index 5582443..0000000 --- a/frontend/src/Signup.elm +++ /dev/null @@ -1,115 +0,0 @@ -module Signup exposing (main) - -import Browser -import Css exposing (..) -import Html exposing (Attribute, Html, button, div, h1, input, text) -import Html.Attributes exposing (id, style, type_) -import Html.Events exposing (onClick, onInput) - - -type alias User = - { name : String - , email : String - , password : String - , loggedIn : Bool - } - - -initialModel : User -initialModel = - { name = "" - , email = "" - , password = "" - , loggedIn = False - } - - -view : User -> Html Msg -view user = - div [ style "margin" "auto" ] - [ h1 [ style "padding-left" "3cm" ] [ text "Sign up" ] - , Html.form formStyle - [ div [] - [ text "Name" - , input ([ id "name", type_ "text", onInput SaveName ] ++ inputStyle) [] - ] - , div [] - [ text "Email" - , input ([ id "email", type_ "email", onInput SaveEmail ] ++ inputStyle) [] - ] - , div [] - [ text "Password" - , input ([ id "password", type_ "password", onInput SavePassword ] ++ inputStyle) [] - ] - , div [] - [ button - ([ type_ "submit", onClick Signup ] ++ buttonStyle) - [ text "Create my account" ] - ] - ] - ] - - -formStyle : List (Attribute msg) -formStyle = - [ style "border-radius" "5px" - , style "background-color" "#f2f2f2" - , style "padding" "20px" - , style "width" "300px" - ] - - -inputStyle : List (Attribute msg) -inputStyle = - [ style "display" "block" - , style "width" "260px" - , style "padding" "12px 20px" - , style "margin" "8px 0" - , style "border" "none" - , style "border-radius" "4px" - ] - - -buttonStyle : List (Attribute msg) -buttonStyle = - [ style "width" "300px" - , style "background-color" "#397cd5" - , style "color" "white" - , style "padding" "14px 20px" - , style "margin-top" "10px" - , style "border" "none" - , style "border-radius" "4px" - , style "font-size" "16px" - ] - - -type Msg - = SaveName String - | SaveEmail String - | SavePassword String - | Signup - - -update : Msg -> User -> User -update message user = - case message of - SaveName name -> - { user | name = name } - - SaveEmail email -> - { user | email = email } - - SavePassword password -> - { user | password = password } - - Signup -> - { user | loggedIn = True } - - -main : Program () User Msg -main = - Browser.sandbox - { init = initialModel - , view = view - , update = update - } diff --git a/sina/.gitignore b/sina/.gitignore new file mode 100644 index 0000000..e7e7f12 --- /dev/null +++ b/sina/.gitignore @@ -0,0 +1,14 @@ +# Distribution +build/ + +# elm-package generated files +elm-stuff + +# elm-repl generated files +repl-temp-* + +# Dependency directories +node_modules + +# Desktop Services Store on macOS +.DS_Store diff --git a/sina/README.md b/sina/README.md new file mode 100644 index 0000000..8d10983 --- /dev/null +++ b/sina/README.md @@ -0,0 +1,938 @@ +# Elm App + +This project is bootstrapped with [Create Elm App](https://github.com/halfzebra/create-elm-app). + +Below you will find some information on how to perform basic tasks. +You can find the most recent version of this guide [here](https://github.com/halfzebra/create-elm-app/blob/master/template/README.md). + +## Table of Contents + +* [Sending feedback](#sending-feedback) +* [Folder structure](#folder-structure) +* [Installing Elm packages](#installing-elm-packages) +* [Installing JavaScript packages](#installing-javascript-packages) +* [Available scripts](#available-scripts) + * [elm-app build](#elm-app-build) + * [elm-app start](#elm-app-start) + * [elm-app install](#elm-app-install) + * [elm-app test](#elm-app-test) + * [elm-app eject](#elm-app-eject) + * [elm-app \](#elm-app-elm-platform-command) + * [package](#package) + * [repl](#repl) + * [make](#make) + * [reactor](#reactor) +* [Turning on/off Elm Debugger](#turning-onoff-elm-debugger) +* [Dead code elimination](#dead-code-elimination) +* [Changing the Page ``](#changing-the-page-title) +* [JavaScript Interop](#javascript-interop) +* [Adding a Stylesheet](#adding-a-stylesheet) +* [Post-Processing CSS](#post-processing-css) +* [Using elm-css](#using-elm-css) +* [Adding a CSS Preprocessor (Sass, Less etc.)](#adding-a-css-preprocessor-sass-less-etc) +* [Adding Images and Fonts](#adding-images-and-fonts) +* [Using the `public` Folder](#using-the-public-folder) + * [Changing the HTML](#changing-the-html) + * [Adding Assets Outside of the Module System](#adding-assets-outside-of-the-module-system) + * [When to Use the `public` Folder](#when-to-use-the-public-folder) +* [Using custom environment variables](#using-custom-environment-variables) +* [Setting up API Proxy](#setting-up-api-proxy) +* [Using HTTPS in Development](#using-https-in-development) +* [Running tests](#running-tests) + * [Continuous Integration](#continuous-integration) +* [Making a Progressive Web App](#making-a-progressive-web-app) + * [Opting Out of Caching](#opting-out-of-caching) + * [Offline-First Considerations](#offline-first-considerations) + * [Progressive Web App Metadata](#progressive-web-app-metadata) +* [Overriding Webpack Config](#overriding-webpack-config) +* [Configuring the Proxy Manually](#configuring-the-proxy-manually) +* [Deployment](#deployment) + * [Building for Relative Paths](#building-for-relative-paths) + * [Static Server](#static-server) + * [Netlify](#netlify) + * [GitHub Pages](#github-pages) +* [IDE setup for Hot Module Replacement](#ide-setup-for-hot-module-replacement) + +## Sending feedback + +You are very welcome with any [feedback](https://github.com/halfzebra/create-elm-app/issues) + +Feel free to join [@create-elm-app](https://elmlang.slack.com/messages/CBBET0YMR/) channel at Slack. + +## Installing Elm packages + +```sh +elm-app install <package-name> +``` + +Other `elm-package` commands are also [available].(#package) + +## Installing JavaScript packages + +To use JavaScript packages from npm, you'll need to add a `package.json`, install the dependencies, and you're ready to go. + +```sh +npm init -y # Add package.json +npm install --save-dev pouchdb-browser # Install library from npm +``` + +```js +// Use in your JS code +import PouchDB from 'pouchdb-browser'; +const db = new PouchDB('mydb'); +``` + +## Folder structure + +```sh +my-app/ +├── .gitignore +├── README.md +├── elm.json +├── elm-stuff +├── public +│ ├── favicon.ico +│ ├── index.html +│ ├── logo.svg +│ └── manifest.json +├── src +│ ├── Main.elm +│ ├── index.js +│ ├── main.css +│ └── serviceWorker.js +└── tests + └── Tests.elm +``` + +For the project to build, these files must exist with exact filenames: + +* `public/index.html` is the page template; +* `public/favicon.ico` is the icon you see in the browser tab; +* `src/index.js` is the JavaScript entry point. + +You can delete or rename the other files. + +You may create subdirectories inside src. + +## Available scripts + +In the project directory you can run: + +### `elm-app build` + +Builds the app for production to the `build` folder. + +The build is minified, and the filenames include the hashes. +Your app is ready to be deployed! + +### `elm-app start` + +Runs the app in the development mode. + +The browser should open automatically to [http://localhost:3000](http://localhost:3000). If the browser does not open, you can open it manually and visit the URL. + +The page will reload if you make edits. +You will also see any lint errors in the console. + +You may change the listening port number by using the `PORT` environment variable. For example type `PORT=8000 elm-app start ` into the terminal/bash to run it from: [http://localhost:8000/](http://localhost:8000/). + +You can prevent the browser from opening automatically, +```sh +elm-app start --no-browser +``` + +### `elm-app install` + +Alias for [`elm install`](http://guide.elm-lang.org/get_started.html#elm-install) + +Use it for installing Elm packages from [package.elm-lang.org](http://package.elm-lang.org/) + +### `elm-app test` + +Run tests with [node-test-runner](https://github.com/rtfeldman/node-test-runner/tree/master) + +You can make test runner watch project files by running: + +```sh +elm-app test --watch +``` + +### `elm-app eject` + +**Note: this is a one-way operation. Once you `eject`, you can’t go back!** + +If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. + +Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Elm Platform, etc.) right into your project, so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point, you’re on your own. + +You don’t have to use 'eject' The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However, we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. + +### `elm-app <elm-platform-command>` + +Create Elm App does not rely on the global installation of Elm Platform, but you still can use its local Elm Platform to access default command line tools: + +#### `repl` + +Alias for [`elm repl`](http://guide.elm-lang.org/get_started.html#elm-repl) + +#### `make` + +Alias for [`elm make`](http://guide.elm-lang.org/get_started.html#elm-make) + +#### `reactor` + +Alias for [`elm reactor`](http://guide.elm-lang.org/get_started.html#elm-reactor) + +## Turning on/off Elm Debugger + +By default, in production (`elm-app build`) the Debugger is turned off and in development mode (`elm-app start`) it's turned on. + +To turn on/off Elm Debugger explicitly, set `ELM_DEBUGGER` environment variable to `true` or `false` respectively. + +## Dead code elimination + +Create Elm App comes with an setup for dead code elimination which relies on the elm compiler flag `--optimize` and `uglifyjs`. + +## Changing the base path of the assets in the HTML + +By default, assets will be linked from the HTML to the root url. For example `/css/style.css`. + +If you deploy to a path that is not the root, you can change the `PUBLIC_URL` environment variable to properly reference your assets in the compiled assets. For example: `PUBLIC_URL=./ elm-app build`. + +## Changing the Page `<title>` + +You can find the source HTML file in the `public` folder of the generated project. You may edit the `<title>` tag in it to change the title from “Elm App” to anything else. + +Note that normally you wouldn’t edit files in the `public` folder very often. For example, [adding a stylesheet](#adding-a-stylesheet) is done without touching the HTML. + +If you need to dynamically update the page title based on the content, you can use the browser [`document.title`](https://developer.mozilla.org/en-US/docs/Web/API/Document/title) API and JavaScript interoperation. The next section of this tutorial will explain it in more detail. + +## JavaScript Interop + +You can send and receive values to and from JavaScript using [ports](https://guide.elm-lang.org/interop/javascript.html#ports). + +In the following example we will use JavaScript to write a log in the console, every time the state changes in outrElm app. To make it work with files created by `create-elm-app` you need to modify +`src/index.js` file to look like this: + +```js +import { Elm } from './Main.elm'; + +const app = Elm.Main.init({ + node: document.getElementById('root') +}); + +app.ports.logger.subscribe(message => { + console.log('Port emitted a new message: ' + message); +}); +``` + +Please note the `logger` port in the above example, more about it later. + +First let's allow the Main module to use ports and in `Main.elm` file please prepend `port` to the module declaration: + +```elm +port module Main exposing (..) +``` + +Do you remember `logger` in JavaScript? Let's declare the port: + +```elm +port logger : String -> Cmd msg +``` + +and use it to call JavaScript in you update function. + +```elm +update : Msg -> Model -> ( Model, Cmd Msg ) +update msg model = + case msg of + Inc -> + ( { model | counter = model.counter + 1} + , logger ("Elm-count up " ++ (toString (model.counter + 1))) + ) + Dec -> + ( { model | counter = model.counter - 1} + , logger ("Elm-count down " ++ (toString (model.counter - 1)))) + NoOp -> + ( model, Cmd.none ) +``` + +Please note that for `Inc` and `Dec` operations `Cmd.none` was replaced with `logger` port call which sends a message string to the JavaScript side. + +## Adding a Stylesheet + +This project setup uses [Webpack](https://webpack.js.org/) for handling all assets. Webpack offers a custom way of “extending” the concept of `import` beyond JavaScript. To express that a JavaScript file depends on a CSS file, you need to **import the CSS from the JavaScript file**: + +### `main.css` + +```css +body { + padding: 20px; +} +``` + +### `index.js` + +```js +import './main.css'; // Tell Webpack to pick-up the styles from main.css +``` + +## Post-Processing CSS + +This project setup minifies your CSS and adds vendor prefixes to it automatically through [Autoprefixer](https://github.com/postcss/autoprefixer) so you don’t need to worry about it. + +For example, this: + +```css +.container { + display: flex; +} +``` + +becomes this: + +```css +.container { + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} +``` + +In development, expressing dependencies this way allows your styles to be reloaded on the fly as you edit them. In production, all CSS files will be concatenated into a single minified `.css` file in the build output. + +You can put all your CSS right into `src/main.css`. It would still be imported from `src/index.js`, but you could always remove that import if you later migrate to a different build tool. + +## Using elm-css + +### Step 1: Install [elm-css](https://github.com/rtfeldman/elm-css) npm package + +```sh +npm install elm-css -g +``` + +### Step 2: Install Elm dependencies + +```sh +elm-app install rtfeldman/elm-css +elm-app install rtfeldman/elm-css-helpers +``` + +### Step 3: Create the stylesheet file + +Create an Elm file at `src/Stylesheets.elm` (The name of this file cannot be changed). + +```elm +port module Stylesheets exposing (main, CssClasses(..), CssIds(..), helpers) + +import Css exposing (..) +import Css.Elements exposing (body, li) +import Css.Namespace exposing (namespace) +import Css.File exposing (..) +import Html.CssHelpers exposing (withNamespace) + + +port files : CssFileStructure -> Cmd msg + + +cssFiles : CssFileStructure +cssFiles = + toFileStructure [ ( "src/style.css", Css.File.compile [ css ] ) ] + + +main : CssCompilerProgram +main = + Css.File.compiler files cssFiles + + +type CssClasses + = NavBar + + +type CssIds + = Page + + +appNamespace = + "App" + + +helpers = + withNamespace appNamespace + + +css = + (stylesheet << namespace appNamespace) + [ body + [ overflowX auto + , minWidth (px 1280) + ] + , id Page + [ backgroundColor (rgb 200 128 64) + , color (hex "CCFFFF") + , width (pct 100) + , height (pct 100) + , boxSizing borderBox + , padding (px 8) + , margin zero + ] + , class NavBar + [ margin zero + , padding zero + , children + [ li + [ (display inlineBlock) |> important + , color primaryAccentColor + ] + ] + ] + ] + + +primaryAccentColor = + hex "ccffaa" +``` + +### Step 4: Compiling the stylesheet + +To compile the CSS file, just run + +```sh +elm-css src/Stylesheets.elm +``` + +This will generate a file called `style.css` + +### Step 5: Import the compiled CSS file + +Add the following line to your `src/index.js`: + +```js +import './style.css'; +``` + +### Step 6: Using the stylesheet in your Elm code + +```elm +import Stylesheets exposing (helpers, CssIds(..), CssClasses(..)) + + +view model = + div [ helpers.id Page ] + [ div [ helpers.class [ NavBar ] ] + [ text "Your Elm App is working!" ] + ] +``` + +Please note that `Stylesheets.elm` exposes `helpers` record, which contains functions for creating id and class attributes. + +You can also destructure `helpers` to make your view more readable: + +```elm +{ id, class } = + helpers +``` + +## Adding a CSS Preprocessor (Sass, Less etc.) + +If you find CSS preprocessors valuable you can integrate one. In this walkthrough, we will be using Sass, but you can also use Less, or another alternative. + +First we need to create a `package.json` file, since create-elm-app is not shipping one at the moment. Walk through the normal `npm init` process. + +```sh +npm init +``` + +Second, let’s install the command-line interface for Sass: + +```sh +npm install --save node-sass-chokidar +``` + +Alternatively you may use `yarn`: + +```sh +yarn add node-sass-chokidar +``` + +Then in `package.json`, add the following lines to `scripts`: + +```diff + "scripts": { ++ "build-css": "node-sass-chokidar src/ -o src/", ++ "watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive", + ... + } +``` + +> Note: To use a different preprocessor, replace `build-css` and `watch-css` commands according to your preprocessor’s documentation. + +Now you can rename `src/main.css` to `src/main.scss` and run `npm run watch-css`. The watcher will find every Sass file in `src` subdirectories, and create a corresponding CSS file next to it, in our case overwriting `src/main.css`. Since `src/index.js` still imports `src/main.css`, the styles become a part of your application. You can now edit `src/main.scss`, and `src/main.css` will be regenerated. + +To share variables between Sass files, you can use Sass imports. For example, `src/main.scss` and other component style files could include `@import "./shared.scss";` with variable definitions. + +To enable importing files without using relative paths, you can add the `--include-path` option to the command in `package.json`. + +```json +{ + "build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/", + "watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive", +} +``` + +This will allow you to do imports like + +```scss +@import 'styles/_colors.scss'; // assuming a styles directory under src/ +@import 'nprogress/nprogress'; // importing a css file from the nprogress node module +``` + +At this point you might want to remove all CSS files from the source control, and add `src/**/*.css` to your `.gitignore` file. It is generally a good practice to keep the build products outside of the source control. + +**Why `node-sass-chokidar`?** + +`node-sass` has been reported as having the following issues: + +* `node-sass --watch` has been reported to have _performance issues_ in certain conditions when used in a virtual machine or with docker. + +* Infinite styles compiling [#1939](https://github.com/facebookincubator/create-react-app/issues/1939) + +* `node-sass` has been reported as having issues with detecting new files in a directory [#1891](https://github.com/sass/node-sass/issues/1891) + +`node-sass-chokidar` is used here as it addresses these issues. + +## Adding Images and Fonts + +With Webpack, using static assets like images and fonts works similarly to CSS. + +By requiring an image in JavaScript code, you tell Webpack to add a file to the build of your application. The variable will contain a unique path to the said file. + +Here is an example: + +```js +import logoPath from './logo.svg'; // Tell Webpack this JS file uses this image +import { Main } from './Main.elm'; + +Main.embed( + document.getElementById('root'), + logoPath // Pass image path as a flag for Html.programWithFlags +); +``` + +Later on, you can use the image path in your view for displaying it in the DOM. + +```elm +view : Model -> Html Msg +view model = + div [] + [ img [ src model.logo ] [] + , div [] [ text model.message ] + ] +``` + +## Using the `public` Folder + +### Changing the HTML + +The `public` folder contains the HTML file so you can tweak it, for example, to [set the page title](#changing-the-page-title). +The `<script>` tag with the compiled code will be added to it automatically during the build process. + +### Adding Assets Outside of the Module System + +You can also add other assets to the `public` folder. + +Note that we normally encourage you to `import` assets in JavaScript files instead. +For example, see the sections on [adding a stylesheet](#adding-a-stylesheet) and [adding images and fonts](#adding-images-fonts-and-files). +This mechanism provides a few benefits: + +* Scripts and stylesheets get minified and bundled together to avoid extra network requests. +* Missing files cause compilation errors instead of 404 errors for your users. +* Result filenames include content hashes, so you don’t need to worry about browsers caching their old versions. + +However, there is a **escape hatch** that you can use to add an asset outside of the module system. + +If you put a file into the `public` folder, it will **not** be processed by Webpack. Instead, it will be copied into the build folder untouched. To reference assets in the `public` folder, you need to use a special variable called `PUBLIC_URL`. + +Inside `index.html`, you can use it like this: + +```html +<link rel="icon" href="%PUBLIC_URL%/favicon.ico"> +``` + +Only files inside the `public` folder will be accessible by `%PUBLIC_URL%` prefix. If you need to use a file from `src` or `node_modules`, you’ll have to copy it there to explicitly specify your intention to make this file a part of the build. + +When you run `elm-app build`, Create Elm App will substitute `%PUBLIC_URL%` with a correct absolute path, so your project works even if you use client-side routing or host it at a non-root URL. + +In Elm code, you can use `%PUBLIC_URL%` for similar purposes: + +```elm +{- Note: this is an escape hatch and should be used sparingly! + Normally we recommend using `import` and `Html.programWithFlags` for getting + asset URLs as described in “Adding Images and Fonts” above this section. +-} +img [ src "%PUBLIC_URL%/logo.svg" ] [] +``` + +In JavaScript code, you can use `process.env.PUBLIC_URL` for similar purposes: + +```js +const logo = `<img src=${process.env.PUBLIC_URL + '/img/logo.svg'} />`; +``` + +Keep in mind the downsides of this approach: + +* None of the files in `public` folder get post-processed or minified. +* Missing files will not be called at compilation time, and will cause 404 errors for your users. +* Result filenames won’t include content hashes so you’ll need to add query arguments or rename them every time they change. + +### When to Use the `public` Folder + +Normally we recommend importing [stylesheets](#adding-a-stylesheet), [images, and fonts](#adding-images-fonts-and-files) from JavaScript. +The `public` folder is used as a workaround for some less common cases: + +* You need a file with a specific name in the build output, such as [`manifest.webmanifest`](https://developer.mozilla.org/en-US/docs/Web/Manifest). +* You have thousands of images and need to dynamically reference their paths. +* You want to include a small script like [`pace.js`](http://github.hubspot.com/pace/docs/welcome/) outside of the bundled code. +* Some library may be incompatible with Webpack and you have no other option but to include it as a `<script>` tag. + +Note that if you add a `<script>` that declares global variables, you also need to read the next section on using them. + +## Using custom environment variables + +In your JavaScript code you have access to variables declared in your +environment, like an API key set in an `.env`-file or via your shell. They are +available on the `process.env`-object and will be injected during build time. + +Besides the `NODE_ENV` variable you can access all variables prefixed with +`ELM_APP_`: + +```bash +# .env +ELM_APP_API_KEY="secret-key" +``` + +Alternatively, you can set them on your shell before calling the start- or +build-script, e.g.: + +```bash +ELM_APP_API_KEY="secret-key" elm-app start +``` + +Both ways can be mixed, but variables set on your shell prior to calling one of +the scripts will take precedence over those declared in an `.env`-file. + +Passing the variables to your Elm-code can be done via `flags`: + +```javascript +// index.js +import { Main } from './Main.elm'; + +Main.fullscreen({ + environment: process.env.NODE_ENV, + apiKey: process.env.ELM_APP_API_KEY +}); +``` + +```elm +-- Main.elm +type alias Flags = { apiKey : String, environment : String } + +init : Flags -> ( Model, Cmd Msg ) +init flags = + ... + +main = + programWithFlags { init = init, ... } +``` + +Be aware that you cannot override `NODE_ENV` manually. See +[this list from the `dotenv`-library](https://github.com/bkeepers/dotenv#what-other-env-files-can-i-use) +for a list of files you can use to declare environment variables. + +**Note: Changes to your `.env` are only picked up on `elm-app start`. This means that you have to restart your server for your .env file changes to be picked up!** + + +## Setting up API Proxy + +To forward the API ( REST ) calls to backend server, add a proxy to the `elmapp.config.js` in the top level json object. + +```js +module.exports = { + ... + proxy: "http://localhost:1313", + ... +} +``` + +Make sure the XHR requests set the `Content-type: application/json` and `Accept: application/json`. +The development server has heuristics, to handle its own flow, which may interfere with proxying of +other html and javascript content types. + +```sh + curl -X GET -H "Content-type: application/json" -H "Accept: application/json" http://localhost:3000/api/list +``` + +## Using HTTPS in Development + +If you need to serve the development server over HTTPS, set the `HTTPS` environment variable to `true` before you start development server with `elm-app start`. + +Note that the server will use a self-signed certificate, so you will most likely have to add an exception to accept it in your browser. + +## Running Tests + +Create Elm App uses [elm-test](https://github.com/rtfeldman/node-test-runner) as its test runner. + +### Continuous Integration + +#### Travis CI + +1. Following the [Travis Getting started](https://docs.travis-ci.com/user/getting-started/) guide for syncing your GitHub repository with Travis. You may need to initialize some settings manually in your [profile](https://travis-ci.org/profile) page. +2. Add a `.travis.yml` file to your git repository. + +```yaml +language: node_js + +sudo: required + +node_js: + - '7' + +install: + - npm i create-elm-app -g + +script: elm-app test +``` + +1. Trigger your first build with a git push. +1. [Customize your Travis CI Build](https://docs.travis-ci.com/user/customizing-the-build/) if needed. + +## Making a Progressive Web App + +By default, the production build is a fully functional, offline-first +[Progressive Web App](https://developers.google.com/web/progressive-web-apps/). + +Progressive Web Apps are faster and more reliable than traditional web pages, and provide an engaging mobile experience: + +* All static site assets are cached so that your page loads fast on subsequent visits, regardless of network connectivity (such as 2G or 3G). Updates are downloaded in the background. +* Your app will work regardless of network state, even if offline. This means your users will be able to use your app at 10,000 feet and on the Subway. +* On mobile devices, your app can be added directly to the user's home screen, app icon and all. You can also re-engage users using web **push notifications**. This eliminates the need for the app store. + +The [`workbox-webpack-plugin`](https://www.npmjs.com/package/workbox-webpack-plugin) +is integrated into production configuration, +and it will take care of generating a service worker file that will automatically +precache all of your local assets and keep them up to date as you deploy updates. +The service worker will use a [cache-first strategy](https://developers.google.com/web/fundamentals/instant-and-offline/offline-cookbook/#cache-falling-back-to-network) +for handling all requests for local assets, including the initial HTML, ensuring +that your web app is reliably fast, even on a slow or unreliable network. + +### Opting Out of Caching + +If you would prefer not to enable service workers prior to your initial +production deployment, then remove the call to `serviceWorkerRegistration.register()` +from [`src/index.js`](src/index.js). + +If you had previously enabled service workers in your production deployment and +have decided that you would like to disable them for all your existing users, +you can swap out the call to `serviceWorkerRegistration.register()` in +[`src/index.js`](src/index.js) with a call to `serviceWorkerRegistration.unregister()`. +After the user visits a page that has `serviceWorkerRegistration.unregister()`, +the service worker will be uninstalled. Note that depending on how `/service-worker.js` is served, +it may take up to 24 hours for the cache to be invalidated. + +### Offline-First Considerations + +1. Service workers [require HTTPS](https://developers.google.com/web/fundamentals/getting-started/primers/service-workers#you_need_https), although to facilitate local testing, that policy [does not apply to `localhost`](http://stackoverflow.com/questions/34160509/options-for-testing-service-workers-via-http/34161385#34161385). If your production web server does not support HTTPS, then the service worker registration will fail, but the rest of your web app will remain functional. + +1. Service workers are [not currently supported](https://jakearchibald.github.io/isserviceworkerready/) in all web browsers. Service worker registration [won't be attempted](src/serviceWorker.js) on browsers that lack support. + +1. The service worker is only enabled in the [production environment](#deployment), e.g. the output of `npm run build`. It's recommended that you do not enable an offline-first service worker in a development environment, as it can lead to frustration when previously cached assets are used and do not include the latest changes you've made locally. + +1. If you _need_ to test your offline-first service worker locally, build the application (using `npm run build`) and run a simple http server from your build directory. After running the build script, `create-elm-app` will give instructions for one way to test your production build locally and the [deployment instructions](#deployment) have instructions for using other methods. _Be sure to always use an incognito window to avoid complications with your browser cache._ + +1. If possible, configure your production environment to serve the generated `service-worker.js` [with HTTP caching disabled](http://stackoverflow.com/questions/38843970/service-worker-javascript-update-frequency-every-24-hours). If that's not possible—[GitHub Pages](#github-pages), for instance, does not allow you to change the default 10 minute HTTP cache lifetime—then be aware that if you visit your production site, and then revisit again before `service-worker.js` has expired from your HTTP cache, you'll continue to get the previously cached assets from the service worker. If you have an immediate need to view your updated production deployment, performing a shift-refresh will temporarily disable the service worker and retrieve all assets from the network. + +1. Users aren't always familiar with offline-first web apps. It can be useful to [let the user know](https://developers.google.com/web/fundamentals/instant-and-offline/offline-ux#inform_the_user_when_the_app_is_ready_for_offline_consumption) when the service worker has finished populating your caches (showing a "This web app works offline!" message) and also let them know when the service worker has fetched the latest updates that will be available the next time they load the page (showing a "New content is available; please refresh." message). Showing this messages is currently left as an exercise to the developer, but as a starting point, you can make use of the logic included in [`src/serviceWorker.js`](src/serviceWorker.js), which demonstrates which service worker lifecycle events to listen for to detect each scenario, and which as a default, just logs appropriate messages to the JavaScript console. + +1. By default, the generated service worker file will not intercept or cache any cross-origin traffic, like HTTP [API requests](#integrating-with-an-api-backend), images, or embeds loaded from a different domain. If you would like to use a runtime caching strategy for those requests, you can [`eject`](#npm-run-eject) and then configure the [`runtimeCaching`](https://developers.google.com/web/tools/workbox/modules/workbox-webpack-plugin) option in the `WorkboxPlugin` section of [`webpack.config.prod.js`](../config/webpack.config.prod.js). + +### Progressive Web App Metadata + +The default configuration includes a web app manifest located at +[`public/manifest.json`](public/manifest.json), that you can customize with +details specific to your web application. + +When a user adds a web app to their homescreen using Chrome or Firefox on +Android, the metadata in [`manifest.json`](public/manifest.json) determines what +icons, names, and branding colors to use when the web app is displayed. +[The Web App Manifest guide](https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/) +provides more context about what each field means, and how your customizations +will affect your users' experience. + +## Overriding Webpack Config + +Create Elm App allows Webpack config overrides without [ejecting](#elm-app-eject). + +Create a CommonJS module with the name `elmapp.config.js` in the root directory of your project. The module has to export an object with `"configureWebpack"` property as shown in the example. + +```js +module.exports = { + configureWebpack: (config, env) => { + // Manipulate the config object and return it. + return config; + } +} +``` + +Mutate the configuration directly or use [webpack-merge](https://www.npmjs.com/package/webpack-merge) to override the config. + +`env` variable will help you distinguish `"development"` from `"production"` for environment-specific overrides. + +## Configuring the Proxy Manually + +If the `proxy` option is not flexible enough for you, you can get direct access to the Express app instance and hook up your own proxy middleware. + +You can use this feature in conjunction with the `proxy` property in `elmapp.config.js`, but it is recommended you consolidate all of your logic into `setupProxy` property`. + +First, install http-proxy-middleware using npm: + +``` +$ npm init --yes +$ npm install http-proxy-middleware --save +``` + +Next, create `elmapp.config.js` in the root of your project and place the following contents in it: + +```js +const {createProxyMiddleware} = require('http-proxy-middleware'); + +module.exports = { + setupProxy: function(app) { + // ... + } +}; +``` + +You can now register proxies as you wish! Here's an example using the above http-proxy-middleware: + +```js +const {createProxyMiddleware} = require('http-proxy-middleware'); + +module.exports = { + setupProxy: function(app) { + app.use(createProxyMiddleware('/api', { target: 'http://localhost:5000/' })); + } +}; +``` + +## Deployment + +`elm-app build` creates a `build` directory with a production build of your app. Set up your favourite HTTP server so that a visitor to your site is served `index.html`, and requests to static paths like `/static/js/main.<hash>.js` are served with the contents of the `/static/js/main.<hash>.js` file. + +### Building for Relative Paths + +By default, Create Elm App produces a build assuming your app is hosted at the server root. + +To override this, specify the `homepage` in your `elmapp.config.js`, for example: + +```js +module.exports = { + homepage: "http://mywebsite.com/relativepath" +} +``` + +This will let Create Elm App correctly infer the root path to use in the generated HTML file. + +### Static Server + +For environments using [Node](https://nodejs.org/), the easiest way to handle this would be to install [serve](https://github.com/zeit/serve) and let it handle the rest: + +```sh +npm install -g serve +serve -s build +``` + +The last command shown above will serve your static site on the port **5000**. Like many of [serve](https://github.com/zeit/serve)’s internal settings, the port can be adjusted using the `-p` or `--port` flags. + +Run this command to get a full list of the options available: + +```sh +serve -h +``` + +### Netlify + +#### Step 1: Create a `package.json` file +#### Step 2: `npm install --save-dev create-elm-app` +Since netlify runs the build step on their server we need to install create-elm-app. +#### Step 3: Add a build script to the `package.json` file +``` +"scripts": { + "build": "elm-app build", + ... +} +``` +#### Step 4: Add a netlify.toml file in the repo's root +``` +[[redirects]] + from = "/*" + to = "/index.html" + status = 200 +``` +#### Step 5: Go to the netlify settings and set the publish directory to `build` and the build command to `npm run build` +This step is important to make sure netlify uses the correct build command. + +### GitHub Pages + +#### Step 1: Add `homepage` to `elmapp.config.js` + +**The step below is important!** + +**If you skip it, your app will not deploy correctly.** + +Open your `elmapp.config.js` (if you don't have such a file, then you will need to create one in the root directory of your project) and add a `homepage` field: + +```js +// and the home page field to the other fields if required: +module.exports = { + homepage: "https://myusername.github.io/my-app" +} +``` + +Create Elm App uses the `homepage` field to determine the root URL in the built HTML file. + +#### Step 2: Build the static site + +```sh +elm-app build +``` + +#### Step 3: Deploy the site by running `gh-pages -d build` + +We will use [gh-pages](https://www.npmjs.com/package/gh-pages) to upload the files from the `build` directory to GitHub. If you haven't already installed it, do so now (`npm install -g gh-pages`) + +Now run: + +```sh +gh-pages -d build +``` + +#### Step 4: Ensure your project’s settings use `gh-pages` + +Finally, make sure **GitHub Pages** option in your GitHub project settings is set to use the `gh-pages` branch: + +![GH Pages branch](https://i.imgur.com/HUjEr9l.png) + +#### Step 5: Optionally, configure the domain + +You can configure a custom domain with GitHub Pages by adding a `CNAME` file to the `public/` folder. + +#### Notes on client-side routing + +GitHub Pages doesn’t support routers that use the HTML5 `pushState` history API under the hood (for example, React Router using `browserHistory`). This is because when there is a fresh page load for a url like `http://user.github.io/todomvc/todos/42`, where `/todos/42` is a frontend route, the GitHub Pages server returns 404 because it knows nothing of `/todos/42`. If you want to add a router to a project hosted on GitHub Pages, here are a couple of solutions: + +* You could switch from using HTML5 history API to routing with hashes. +* Alternatively, you can use a trick to teach GitHub Pages to handle 404 by redirecting to your `index.html` page with a special redirect parameter. You would need to add a `404.html` file with the redirection code to the `build` folder before deploying your project, and you’ll need to add code handling the redirect parameter to `index.html`. You can find a detailed explanation of this technique [in this guide](https://github.com/rafrex/spa-github-pages). + +## IDE setup for Hot Module Replacement + +Remember to disable [safe write](https://webpack.js.org/guides/development/#adjusting-your-text-editor) if you are using VIM or IntelliJ IDE, such as WebStorm. diff --git a/frontend/default.nix b/sina/default.nix similarity index 63% rename from frontend/default.nix rename to sina/default.nix index 99e8345..4000dfc 100644 --- a/frontend/default.nix +++ b/sina/default.nix @@ -1,8 +1,8 @@ -{ sources ? import ../nix/sources.nix -, pkgs ? import sources.nixpkgs {} +{ nixpkgs ? <nixpkgs> +, config ? {} }: -with pkgs; +with (import nixpkgs config); let mkDerivation = @@ -17,7 +17,8 @@ let stdenv.mkDerivation { inherit name src; - buildInputs = [ elmPackages.elm ]; + buildInputs = [ elmPackages.elm ] + ++ lib.optional outputJavaScript nodePackages_10_x.uglify-js; buildPhase = pkgs.elmPackages.fetchElmDeps { elmPackages = import srcs; @@ -33,11 +34,16 @@ let ${lib.concatStrings (map (module: '' echo "compiling ${elmfile module}" elm make ${elmfile module} --output $out/${module}.${extension} --docs $out/share/doc/${module}.json + ${lib.optionalString outputJavaScript '' + echo "minifying ${elmfile module}" + uglifyjs $out/${module}.${extension} --compress 'pure_funcs="F2,F3,F4,F5,F6,F7,F8,F9,A2,A3,A4,A5,A6,A7,A8,A9",pure_getters,keep_fargs=false,unsafe_comps,unsafe' \ + | uglifyjs --mangle --output=$out/${module}.min.${extension} + ''} '') targets)} ''; }; in mkDerivation { - name = "mi-frontend-0.1.0"; + name = "sina-1.0.0"; srcs = ./elm-srcs.nix; src = ./.; targets = ["Main"]; diff --git a/sina/elm-srcs.nix b/sina/elm-srcs.nix new file mode 100644 index 0000000..d64d2bb --- /dev/null +++ b/sina/elm-srcs.nix @@ -0,0 +1,47 @@ +{ + + "elm/html" = { + sha256 = "1n3gpzmpqqdsldys4ipgyl1zacn0kbpc3g4v3hdpiyfjlgh8bf3k"; + version = "1.0.0"; + }; + + "elm/browser" = { + sha256 = "0nagb9ajacxbbg985r4k9h0jadqpp0gp84nm94kcgbr5sf8i9x13"; + version = "1.0.2"; + }; + + "elm/core" = { + sha256 = "0gyk7lx3b6vx2jlfbxdsb4xffn0wdvg5yxldq50jr2kk5dzc2prj"; + version = "1.0.4"; + }; + + "elm/json" = { + sha256 = "1a107nmm905dih4w4mjjkkpdcjbgaf5qjvr7fl30kkpkckfjjnrw"; + version = "1.1.2"; + }; + + "elm/url" = { + sha256 = "0av8x5syid40sgpl5vd7pry2rq0q4pga28b4yykn9gd9v12rs3l4"; + version = "1.0.0"; + }; + + "elm/time" = { + sha256 = "0vch7i86vn0x8b850w1p69vplll1bnbkp8s383z7pinyg94cm2z1"; + version = "1.0.0"; + }; + + "elm/virtual-dom" = { + sha256 = "0q1v5gi4g336bzz1lgwpn5b1639lrn63d8y6k6pimcyismp2i1yg"; + version = "1.0.2"; + }; + + "elm-explorations/test" = { + sha256 = "0rpynrm9irgzyynd1bws0xspww5lnwv7w7998750jb8kcrw39h0n"; + version = "1.0.0"; + }; + + "elm/random" = { + sha256 = "138n2455wdjwa657w6sjq18wx2r0k60ibpc4frhbqr50sncxrfdl"; + version = "1.0.0"; + }; +} diff --git a/frontend/elm.json b/sina/elm.json similarity index 69% rename from frontend/elm.json rename to sina/elm.json index 18d3742..200eee3 100644 --- a/frontend/elm.json +++ b/sina/elm.json @@ -7,25 +7,27 @@ "dependencies": { "direct": { "elm/browser": "1.0.2", - "elm/core": "1.0.5", + "elm/core": "1.0.4", "elm/html": "1.0.0", "elm/http": "2.0.0", - "elm/json": "1.1.3", + "elm/json": "1.1.2", "elm/time": "1.0.0", "elm/url": "1.0.0", - "rtfeldman/elm-css": "16.1.0", "rtfeldman/elm-iso8601-date-strings": "1.1.3" }, "indirect": { "elm/bytes": "1.0.8", "elm/file": "1.0.5", "elm/parser": "1.1.0", - "elm/virtual-dom": "1.0.2", - "rtfeldman/elm-hex": "1.0.0" + "elm/virtual-dom": "1.0.2" } }, "test-dependencies": { - "direct": {}, - "indirect": {} + "direct": { + "elm-explorations/test": "1.0.0" + }, + "indirect": { + "elm/random": "1.0.0" + } } } diff --git a/sina/public/favicon.ico b/sina/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..d7057bd07e970a1212f6a8a048c2343026118353 GIT binary patch literal 103614 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 |fV=|2vr1 z|Mo{f_GmcpUUA?Mx)S;zUKZ|`dFytI;2l#UZ{B@J_Q{o2Glffw%2$u7N-H`2-pW3m zrVmZ*CG_u`nOX95Q{waJPrmBW_?`D>dNlEpcD^~`UV8xKQU<*Ly9eUI*<%ju4%_t_ z?7n#q?Y8n|vbYm2fj7SHJsNo5Xbs+YbKe};t!f=uR1$N4VAi(7S0O5T{}#{N>Yw7% z?-NiUdB;Ll<Fl1J7QT4U?Ox`>>5x6_WMI*a$_STY@%qH|6Ce;0-0yMjx01Pp4|wzV zT$E$;mOw#8YN`)d94~5L{#(D>|7`7fH>9WZ&kv_Rc(CVgS$kr7uU@^52TsjA7Q7(u zR@VnjH@FP;x>V4r*GQt}l;j~(2TJps?k>Fj#3ips-&42F{WUlGt@)Rhb=u<rHz#Rd zM)0~dEtX2JoY*nv)IWD+oBRLrZ(#Nj=h$@xzeHZV+We<ivpYzgy@u`2ir_MLA6;D4 zk`WyLu)-yd_g8n1%m8BTA2X{Oc{=a8mfeFRh^%yviDjRe@~C1si`!&DcIK4m89(1Y zxZ5LS=>SjX)sNBXPoHJS%u7jpxnu9metif2!_Up{$o%%uwu>L$oZ!7|6%nxSTIIz- z!=79kDB9YI*~PD)bX)Unu4T`Ina*8?7MCqK{x2sX{luQF%X=&rM|cwdo!4KwHFcj$ zZ1bPq%xD?w{C*q2w7qzG)qqi>Sbw~~6yU~vb+6+2Nw}pB|Dob~&*mIK@ZsLltsB}i z=kD^89_cOnt@)>45NCepuP*N499z`KRrXom$mBaLZnR^n|EG&aTtKJ!xgN5WWe<|p ztRG(0ig*9G8_;B>UaQ=9czfjlrt^Mh<ek$|K0sha*W?P9)`60+(#KJ$IY-+9p24sE zQQ0iL{daR0Pin)Nw*7A9?aL>RWr4pgujnsja;A-6UNP$7<?!MSY+mpTQOx}4dC6yy zhi6uafa15i1}q!aW6#YB7h&>LxRuOKgPZ;<=gTTPGMztn&5nt^QXC+0l%dl3e<1(+ z=3Rnoms6mV;4<TXll{2W>C&`_L~wpmx9Orx9;@{XFKL^@qdr&^vNVu+`Bd+0$k(Tj zTW0UDdm&ADC$753d^?C0`E-}K+ZX%(hl-6@BFr4!i`i!OmV&KgS;vu&3)kjXHVa4+ z&qlg?|LF%jHV%0XAOv%kh`~m8P8NVDdbPMLkaelaRM4UPi;7>e?pIu?`1xXpIOWyY z@4y3uhilBS?8idhVpMXbFve?BAU6k0N;+mmj3{M)I6YO|?4K*ss(PF+M%6VfK9KqW z%e(vL0?trYYjKPyb@ewxiOrL%E_P@gTaKXYbj@tDDv%qGU=Q4}p;hL4s{*)N(UJR( z4XOUoi{2_;)crC0OdpWy{p`x6t9vsmke744q#0-4h@Cz;{p}3M&5sgh&N>*tFFe2Z zL;vVMoI+ZB;RPjL`LbeB$EWOf$8CDOjZ0hqF?U9HMt+YGX3k7+&)qaMI{f~Y`v}Io zKG`w(2X}`|s_LHm;_&Z*+1dRAlcbfIX}7y3pz3Eg&ziG$05_{FtTSht_p&|dEy}LC zGB!3Zb_&Vo1kV6>9d#>q8b6j3JR9x17K;O~bAsogeL+R`&VB3-{Q%CEvz3$Y^kWV~ zEkWqN?38ChRb|Qz2TA37zxQQ^3M0<@!RbExJrgcgri7!@xxJa8qKNZ7;q-#^_Flbv zee%i3;tlhf5yig*?qgRyefXv<{7%I|am4v9ki|#5uhq8bbNOGVdM)d+f$)<4Cv>`4 z%uarLS(lY?wD(v%@15ceW1NWMl{cUp^LbJ^qAMJ?Ac}{IcXE9FmreiXr<n`7UnIPi z<!m3u8hCWjkuC=-hIeT!sMry3lO2BIouR_q*&d5Z#*ATnca@PPURDxRv^lqMa~NxF z6G38&=+bUuy_UVQg1sd%fcUCHED~LO-!HrJNf4_g8*IFKY$&$`>OPwA32S?E05SYn z5cfQss7#p5+TM(Jv*LhX-}KEDJGR~MbPgdl3vahR5h3(&IM;=Fg#{2sjPT@6->|aV z5>6oD>VN!l(XU?~>9Us1@*uLr-Ba9SlfYw~&)2ng{unL~UOR*J`72;GZj6u@#o$-5 zLuYW<T?wH_&)_c1(@<agPP+rRabW&T=P%gv-Jz0=XWe5*LM3aM-AY>x@O~DR`$@Zi zq(hLU!`Z@{J%f_IM!Q{pWFJPkll!ce>~Np`ep)V^jr?{QD`U?c_Te|+%HDvMu^%v@ zo)orc(Eu<R+N?iw0#wXs)Rr*^u<*pZ_C+1x!p1-WCkiTaTF3qm6Pb=>uwG+KMOhlf z21tehk<mj4&NMg3();pUR_jKB3WpZ+U1JL&i(p9Gz@!f#OVOaO*&mkfeX=$Y*$|fm z!NBIXRlHo{uc=jnsc!{IgnO@l?D%O?&aIzbxStq%l_&1uwJfRA<cz;$(h;Afx%XQT zEIv2w1y|hmetR%9Kj{lG>t7Jvq3vV0*sH*fOSrf9nhKVjokwvt_5tARgq7^@Hw4Fv zJ=*&JGbGDt@s!d>C*rr>81t+koO84@F(RwSrVVE*8D+wrC&B}ZqET6=u^iX6khXW> zxK66#o!lJ6zyCxmU9t_%?d!zx3UTVWjQeh0;XcRp(K8n%_DTd7#(ozfl1Pw0+|mO0 zNeD~#<v~evP<^R`JV&<%yl3`Bu%u2MW#^B(ZM}04o|K7Ufg=O<59WW~8TJL}1UyEg z=WK0$IY+}=<)rfqV3XN5oAg1^&)<)4r!E%kF<_IrqxP&(dmI<`7_hk*P^taG$gy3p z?)20i12z)_DzzuJm$zFyIqddg{)b$;_ITeO16Cgcs<lrpbt6*Bu7mzEdkk2;&dSE? z8np-gk@k2iUOYLx18)2D)ZPzRU3{q4KDD$hYWGO{TKc0nu*ZP)Kl^IZ{sz`wiT?H& zux|Zz(q4uB_873v7|>aJHTsh=uz(*1t9R=D?BfB88xQEEy$1bdiz7q-w8wzOX<d7) zuebIZ^+(SJ_86$`Z%aBhNPDgHx5t1b=}pICu=ZN(Z;t`G-z{O^DBA0!zdZ&lL3e~f zwf5T|xr3$(&-X}UbsKH|4~_XXZ}#y(ea3+%?Qg2nTG=(NG_M^O_86#-7%;l_C?53E z-+nJJxBkDYT(=|d^L1|bxG&IKe+@Bk>ENW+aIdnjB{O_3(PY{i)c)~3LCw9u9s>r? z9hp>nqv&t%2TXM@FuC?d)88Hg#*P8AXm3>g?J;1i7|^8sEu@>VHiO20cnm;K?c)JM z;=ruh8@>JGIIzcnJ~3c+?M<e?{a&D}{;IW4Df0lGjN0eZ?;S?(|8XBc#lVt}#&)W^ zf`lOK&xX~{hV`bsN!x!-9Ne+TK(*Gj`-OVd-c0(VIc9qd)SU;cckRunzdZ&N^;fMu zx>=@_FQVV0O}TH<`+v<n0KaFl_XFvC_1fdX(#|rmDRswnn_2&c-VbP}y%}Sm9`tXh zF`!a=pX+N|V9D#GChiC7N&kix11h!emAl5>Ctq~kJ1>569qsW66UIP2>fcaeK$G@2 zL4O%+FY6-)>REqVj{$A9NBY-G3|N5vwi*K}weRz*s4eJ?+dbAEr)KR3EJS}>ivhLT zd*_L6Q0*OSUOP2g3|Nr<wh{w|YL8>VEHPkV`dfPp7)$%=81N|&O~Q`>3aL!SAdK)_ zV1fFRF|cq__?rrRsRIjsZ)j}o%@P9^s=u|xfT^@Mc??*v{?-x$rq<r1F<{~PTY3zb zOM8>WfEDO(sWD(~?X`=6l(Gc;Zcm%kO7yq17^pApjUEG5q`#%aKz(a()EKZb{p&jh zEJb^x#efy+UtckxQhT54tK77h)5V$@JAJ8kj!46Jz)JNucMPc29_I3|YnabBw&u0# zgBXaPsBFHBK=XuZV!(>^M=@~M4D*DRu04(g^)ZnAXrr>{0V~&En;5uez~3^m7VY(p z0UOZYR59@Tg~O9PmG!CUes2MNKGwW;s#8B;Bl;UV2CP+k91B{<fDP$ytQfF%?RAO) z8`Iy=7_b%XwTpq2N1JR=e|=-X*0isV0pENPU)eYYowHH>b&UaA)m~!^*s%U&3@n)v zivARCogcN12t6CB)V@#dSFS#JqP%*Z+rb(dn!Z%l57@Z=>SG{d;_H_WO=wdmIN*eh zX^&&4P7E{v{nf@m1JYh;3^Wk^wT=NBZTDDvoL2V(4M=|!1Al!Q8QNW0n@8vR<_SIE zUVqC*?)O-0RjJfFUo^FW>0kKS1m*X8q`%Lv2`-?0ZUfO@2JfubHz57hYLE0sKfi17 zZG7_M3mZTTY$Id>W&_b*EA8bG&>&)f)E@C|0Q#%eKBb}~k^JZ_tUEom;eMc6`v#!D zYVB+OZpIyA*JGvMsI<WtP|)7S_18vw{2lEE5Cg)k=zdS{<7`-eU9@iiF`!&~8`WPQ z?QJ*)RBI3KKBn2&_|FjSYhqx>W2OK0-1^1?s<pqE&gX;vFKtMFV`y(fF`!v{v@X_0 z^w*@lKHty3Ls)G;pq=(MqQ5D$*RmfFU9-G-LhZG;0sT#>y~Y^mSFoxz=x;$Wpqutq zuD?07x1Jct6MduX`5ryv;jtdlyY^<K_kVM0Z}~Bxr}kFb{_8_~%Z&j8w6{Y2>r;En ziva_*w=(@LL3_)I0V8N{MfzKk_VphFM$+C&^tVLq>n{e3sJ#{FZ^_!5KL(7fy@l&< z4ceP8227y61?z83+M7NGOr*Vq>TiwOYZ(K=0-fI%m{5BQ)Zd!5H+~G5SbGc8-xjnt zUJRH)dkfOvmb5oK2F#?rh3IdK+Up$yz6GK!`n<<OTI#da^ZP$r)?VirFt_&g-2NMa z_FBh4eP~~g`Zpx)wTXe|<ac_}VvSlqb!#{D>F;ZosfYewwf2a6+LPCblyXm-+;%>7 zsU@%4LsM&C5A9#Q_G-P+ur8WIdo$~A*IvsIHkbBh)ZebX1!`|5{q5RYsP<;iU#0ea z3dNrAF61I?=<lF6h|N1sI9F9Dn6uAEy5r4+<A2rK|0-%*kAE*m)%UPWd)|z5x>#Fn zQWNQK*FIlV6HgYZJ&F$#=x^8FO0+kD{&wxHNP8peZ`a<+v^S#ucI~ZDdn4&@*WOCC zH-i3l?X6gQ1NFCSZ{^w>pub&v8_-@){q5S@i1vEuZ`a<2wAWF8yY@Dwy$<@@wWn!c zUu!jyUdG<EnE$tHZ=>34(f+Ti`g=Kj8sIxzTWa^XA5qi(uP=-o=ca7Ef?az>uhiGt z4XmLdsS5q=+S_oSPmdQR`rEZ{AljoisHMMM`v#<aE&c7<H!$sK`rEZ{fZ9{~+qG|? z+9UlJ@Izb`pJwDo_GdgruUPXl9@1IWrpVH+y)u8;s`e-*YV)<Xdqt1fvi7z0?|c2L z_C5uoKXm>^9qs;Ug=N>M`t}0&XBuo$<R@F*$`!-isZ#OSqe}7EU#fT<6Qg)6^%u}j zFseKx^kaugry}~XW4WUO0H-1c1pporh5`VnT>$`CR{#JP=>Sk+IsjBT9RM;;2Y{~8 z0id#U0A$@X0Hkdi0P<1|0C~|G0P?D90LV?(0FYm)0U$3~1AwZz8USUv8US?x1Hc6_ z00+vI7=R;ni~%@N<uL#cnOrJdkAJ2>euByugDa*0NO8q-0E{YJu{@tcC9YVW&#@d= zEYAmL6#zgfs$zLQs1-9K^T9<00C18H02QJGK*s3+&^0;$vMdb%SvL&;X`2RsyhH;) z7Oepwuet_++;j~9`IQ;~RLN=pRL#`@D9iqG1qdm1!Gk)Ep$a-t$NpGb>ez#7Ru0s$ z6V>b(wT`Jn0_VrqaecTvw&zF{z<4P8j4BE*h0mdq;zQwgET{NVG@ObkPf;{HByvw- z|M&~!d)R+ajLeDs3kPIPRIMm834pSSijlh%DpZWjT5X<+m1^_ySgA2Dj}@AE5&+FS z34msv1VA%S0-%{E0np5o0BGhB0J?buK*2l!P%sYw6wCvFZ4y!)T+BlzAdeko_(vWR zPWTX;$H!C*`Qu|MhGOtB6+=`p!lQ_+52MDd6Pw4a7o*0ln?g+~TGOa;J(Sa`8!zRw z>c)-D*J9r=%@dSnm_0#hhMiAPnqlV?ok24mYy#LA1Q-6V`j?r>XTvz?n5~Y5YV*2~ z&Oe=-IpY=Nk@@4tH$!Pd@d2GXkyhMf@#JxbXU!T$_V>2#14Zt##>CFDgYx%ew(kRF z+=-Mj+IvFV^+6r(DP`Xy?uz`wz!$dX19jZ%^0zG?XyUG%zis$H8}6$4TelCi<*uH; zb^1UF_d|%Ms;$;K5!(F#@wYA?=*nHQ{?_9IeYk7S-?HOCU+%i`w^$$ih@WMM44ETv zQrq4UXZohO{o^)()0#0-R$54tdVX#+h`a9kTa*uKxT6Qy<We`_bBnI6Hv78kZxKGI z;Vu&}5q<KvqoM<FF4l%O&Z9qn<cE4`3)S4a<q8`6=8N{j_7Qdgp`#BB<8O8!C~${& zng^)&l2Qd9?E0$<kz9TcYpgCcoIm(rQrICphhoA$Q5ARmJ-WI+NGZFojyt+$6#i(O zXj&g=;$H0opM2qz>b8(v+7&pe^?}j&o6ZM{-19`=X?Pbe)x`%!<!^i+=*nH^I50YY z<M}{e?mGFvB>WBcfuY>B_JPUx>+b_&aaZnxou%ENPkeyy3nt~SyAO=bU84_7&R=^U zn2NhvADD%|W*?ZEd$kX|^F>pu#|J4D9nHpHwGR}z=Zg+%xW8jA`leF456sHHmJf2% zLK>rYjz|ymECakv%^mx!+6QLmk9;sWG!wsfM%?|1<C_5Y<0jS}bFWU}yY&m}ga4Ar zVaMl&gfv0i(XUs|rba&b@%zlpA8f8PH-820o9;Fx(n`p62)x?@HnhtlX7fRTNQ~CU znv=f*_cVC_E}yGBiPj;YI53+JDDKFnx%jK#j^|=en9T<??&mTh-ORyX3HR#v?|2*v zsp)+{<9_AX_&0J6^M5lne=WJ2J`NCf>W8_bby23|uOoNU`9KACQ}Wl7yHX$c<i%&` zeP2++-BkSRaEEnPw04d;s!x;44wLV*AZF2hK`$R@;BE^3M&XX%(HY_cEw~$-zfrjx z;sY(Y8<W3Dxa;8q-~9M^W&J$js%$ex|8G+6*av8=h{lZY8+LuIqq6=$SMJ8pzYh15 zvhQ^6>uNZv?-SMdKp*ag@;5Vg?3+4qpf7hr_$zQnL77q>LZm#}WR`8`qflg${L$Wj z)5mqn+PboH`n3N#+%cAVO!eWekN&pAU042e?r6@6ny+{SV^gzk-UaasaH#34J8lcw z#y_1qnyd8A7k;nznB0(mSFOX?26I%GYQx`FxoZ>uw#;1<e_Q9Sj(<bou8My{;jWB- zL*ibWe?#L==id;yWBv`5JL2Dvxg-8~-Ks5(X%R1NH}o6<@1L8(H{eg!$9Nv*F22Ce zGU$C=&f$pb+G00GK8f78Ly<gnjFP7<eC4T|n>_VxAy1>I4}%mr2+#?JgdssG92KF| zks!zlAU9b7lqM^H1F{0R2w4b}*+BrsA!SHlAAP+5_8k{P3VB-ehZM@VxkCyS_@d8` zKm}2b0<wZ42MMYGtQVmQpenKgM|hnJ8KWR4Spk$JD}b8F3MlK2PzZhR1XY5*gMw1@ zb1ae{w}5=;x*L>(DhXex2cbvx!Y)w+C*cxl7iASNBt(%M7wnNZ9RzaRj*uO)x{<}< z5?LIwqT;9sz;-}i-9Y;&mB=k2nkXw(Ty7nXsp4|$a7<c<v`C(nA(0n%5NIq;Kvq&J z^qmMV*!Zw%`cA}!Lwp{@+*4!3otf%*b}?h(V4y}UnjAI|rB=kD8at8vs2@D1KUy3a z*2_vb)L>67>k0GWrPMq_#ga*(eiqK54t6x3Pn##PWDd`A4o?__{7X=N$L}I&_z@RN z<e(CJE&pRJEQy0!>?-gp=x{z`qJKU0ts1eb!C&7Tw8E|de|>S#8oL(w&CNk4>{{X{ zIV}3<!@j8dGGTkD!4B&miR7}g2%n~{R{x2xs@f_{$l)pO-}@AbJ&~V?)Q7DB`!yrt zSJ2^7dc;5@^-E9D*b71SEfDvEXRXJu{`M1etPKY>{?@325jZHpE+W@a!@oP7rws=^ z@FQN2aV%XrG{FyasL*5FtP(qZ-qnVKp7<3wT+HD6>d2uQyI;PjuRLbte#h8x3TxTt zs?)&${Q7dx8oM?e48*T12c5BN;$Q^)+H%kvJLce%CxRzy_|f`SBjG1GESWs6AF5tS zdoUb3ez#nUgAws7<4}(75x9S++G<6$KQSg<Q_NxelQ)cvUx7o;p^0ywKf>>WH1W<C z`vGplvCFwieF}tgP`xI=k2pO0bn>_%sDAYG&0oy}>`x8$do7)O^F)hGhJR9+{CO4d z!@7>%@J)v@W8?QO5XG4Q|Fcgq_8pG~5If3vNCUt8cz>g6kQbj|f`6w&!(RS2j2%m1 zs~~okl5;agjH8VRd(Md|PDb><GVFN#ZbT08n-F$bU(_rogP&<6{OYi);_yuO_MnIz zjTw!A|JmZmP;xGn*ijub7<28kS_f#)g8;t{9O_~>0{$B8wdTdtJU3OqH<e(bo*=a6 zpd7n_`1Qe#^>_s9Qpq`EEjVnZ$2-DI-}H<hL$K?@K`nMY{cjBHbvSqztR7seJ!r(P z2YzE>ui=2&J^W}Kw8E|<{u=CQPhN-ixevAzM%oS#JD<8B4tV|q_wV#rSGKQZ{40#d zkR4P0w8gHa|Esb4Tod+3V?I-C{R&pKMn2I6yB7GXvDeHkDW50M{a&h2&uV?JYrt>u z*j3_>4Eq~De^{#D5q72c0XuxNECA_gTI@ohzA=Nb*THXP*cI^C19tdZZxXsM_1P!; ze;Rg8^O1)2Gc_?|4D6);tr$DPkJoQlo8NJ)p+0~%ZmRwUi(zq6b8mt<d;zlY%K^Ug zh4hFE*sifs391}cMHQjcQNDHvtxF;wkYHUBTAG9o&`Kw?un4k{nbBG#hD5%heWHlE z26@Q5P=+iE|05UZz{y3B4OLJqfE1Qjot8j~mRl7;ik4rIv$L=qi!=_)v*Z={$}5EB zTTm7%C?Z#Jq2*m@l^1=P7kLc%fDc&rB^sj?>LI_x0`<D0W3b}|39`$F6fN_TKnivL zE`Stpk}t0?Zhx7q3QiL-GFc@`i{$I77!vu~DhB~UuDOEZ4A@1*<<<$xIzd?{DC_d# zs0<&nlYh^L3n>pab?dY?O_|aN^xtYM-L<U;=CV_#Y}(Wa=C(Jcg@ibm69cj>$P}>P zS$93^r_G6hZX3-dR6i#~hHWslAF6F9mnS0I3ii?aX%k{lX1k7k6JbzgTd92`W2m;B zQnn8JoSs(ekL=PnBWQtar=^8BfW5hNoAiAJn{@jI`hnz)zR^|?KZ^L~VRNu~hHe+{ ztF^Bu2JCZqmy(F?m*l%%6&N(y*AYW)+xUL13WHYmwZx#xHpW1{r$m0BtzpsHz6J~$ zZR2-D=p7vmgHHBo7~np$4c}|Dwygw%&h~3zK(;rb@6l1QR_$wSOL;1P&j;Ug)5|_! zfPaUQA`tLc0-1mXZEU-ib`{2v2EM1;)@xHvBO*rz-{KRk)5pF6-_zR`l9mSjTKNX} zn`}w&$M{(A4ePBsVSs-ZosluiQ4jyu*v9L?bj1L+(f9-6H$_ML*!Ftde^#f-kKo-| zngjS?n_556Y@_z0gMHPuu^%*HsJ0!k6SrM0?Q6D;F`$?LKltVglN9`*#I~0Fb+C=s z1(t8%$;g;YB{6_)bRW)1ui>pF|7`*R{Jn~lvN^Ej=(O!Dn}^=dz<p<QP7WI5^Y>w! z^i+-i<+kDZ!H^%aos%(fKiwvMUxoc`JZK-_yUnoa^{oi>%?C}k5e_BxNxk9u_-lpu zQQnU$^rtvK`o4@dww2f?Z9_eJ_NOA5F1BmgH`q3O-$O+5PUjz>Ypiac^1s}+Zuihy zz84C0wN3Fiif#05VyI7R-q<H7&cScVICgYT<Cl?thc$zL6xXRsDuC$$9zig<1i^A9 z2sV6N*_lNUTqaB%z_f>ifN2bZ$K(@SmKWj7b|u)(uMjM5V}i+ZfSCyfIXl6GtSl(P zhN8|;1sAH~L6s5*2}6cHIOIUE2)GRYcZUCS;r~4NzW}O7|DFu&!jbxUik)l6j{sf| zbm2zjeK7yKZ6hGgic{A{4A-%a2aEP?84mq!F&U?kp?~U7M+sSWXW5@nzNVk4siQ;< zmy+cN)&@bj>c2&z&`&`fY3oTY%IYW)otZb%r(kUqlutvp73`z&D>;S@{d3Q{3GV_1 zdL1Qe&qfW0aal2nL+|`G^I&|nM`?L^J$GnzP-R7b(qdTZoeOoqJ6Q$%7=t`5*|92o z<chQNM?tv<w6ZnrJ6F6!W%)^A4+h6>8PWFi4?!4r?K=FfiM~`?9?Fi0CjERHFcy1A zGKSU0;CC%P{=#9txK4S+viP0%?RKXR0S-A2-)qn(rSlVz&b7*yP<C^{F08qrZOP?% z+#fUiVNKP%ob-unaE#E(mxQgGJ4)TVR^IhhZm<SvEiOy5Uos(K&bxq*u2GGjL36(X z;a3+AM|@2$OO?lE@6`4$K1O9>oUyKUS#<p2H}gh9KUaeD)=vB8eH9ISzg1Qior9hR tx)kUqpmTDDP6~P=g4F>!uEEf6#KI<keIA_S%CC8p%li~KMF<20@qbEsl)nG~ literal 0 HcmV?d00001 diff --git a/sina/public/index.html b/sina/public/index.html new file mode 100644 index 0000000..29ceaa1 --- /dev/null +++ b/sina/public/index.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <meta http-equiv="x-ua-compatible" content="ie=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <meta name="theme-color" content="#000000"> + <!-- + manifest.json provides metadata used when your web app is added to the + homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/ + --> + <link rel="manifest" href="%PUBLIC_URL%/manifest.json"> + <link rel="icon" href="%PUBLIC_URL%/favicon.ico"> + <title>Elm App + + + +
+ + diff --git a/sina/public/logo.svg b/sina/public/logo.svg new file mode 100644 index 0000000..4321d4d --- /dev/null +++ b/sina/public/logo.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sina/public/manifest.json b/sina/public/manifest.json new file mode 100644 index 0000000..9b7dc41 --- /dev/null +++ b/sina/public/manifest.json @@ -0,0 +1,15 @@ +{ + "short_name": "Elm App", + "name": "Create Elm App Sample", + "icons": [ + { + "src": "favicon.ico", + "sizes": "192x192", + "type": "image/png" + } + ], + "start_url": "./index.html", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/frontend/registry.dat b/sina/registry.dat similarity index 81% rename from frontend/registry.dat rename to sina/registry.dat index 7d12c07ac537d519eb941d0e3af0d2a98bb2e089..2ee8d42b3b7de2ff8defa7d3073ce96a62dd603c 100644 GIT binary patch delta 1773 zcmZWqTZ|J`7(V~p+HNmfy6xUlqRV#0K#Huv7!p_(G;yN|5kVx9fYX_?+p*J`c4oR4 zjEO=5#FYg-F_i}|_^_f6iXP0c5;S5^#2^q~G$>vkc~B$XUNoN5?X(#GKD0CE{Fm?h z{{Qch7nRqKDM{3@m1B$F;iuk7ijg=hJ|Ps95YVNO1tBIjUxfrDknf^zkVD}CIv@K< z>=c?OnXmw10g;!I#aI-Z<-D$X`H7lAeofvdNQlfY$igCwxv|8#E`R))v0 zQP#0(c5pwt;u)GNqM!FbTQLhu7JI+!N=b0hWdN1=y)m0J_Zb_DgG zibYT?jA9`aQy`|Gn2c!mDpP3%Py_+!?3y@q1^`F0AY=jPvAbr%Z6e~Fh}_6(Io!=l z)Lggz{s!o$oA22hN+>}(l#l_DtM?!72x@16st=4N+krS3dU~fGPqd0esR-kAg|QT>t{7G35qYXyO zs#h$V#16)t+L2fX0S(|*c2tgquqq;pGtS=s#R1i-N9;t`*}tglj`O)*>oU9vj-lOqDl)) zguMA%KRGyi+h9UhCk?$~m$8Fc&Mxj*aqNPL88+LTG^`2w>g>*TQ>SGnfHb!)$xCe* z7g9!u6y|m%LM?fdOlkW0++X3oULJG8Q7gr&nb&clHj&4UV>>R{c(jL}uOH4X58+8{ z8n&BhT*a&!&zZ?rYpU)!7zc?EdHCc^B4|EF0q5ZBlNW_dn;MBz!v}!%;M@MQVkD3` zN-q48tzXN4LLWPQLaw`AkfF;yIwLI(pj$C43p@0)b9V~^9gIg~yokruJ&lT{Y)8LS zH#9HLxv zbZIR>{kd-Fqo*%zg9M|kX^OM(ADBLF|! z4~jx=Tuu4Ix58GaYtKNhe{=w1ZTZ)vkl?>H2swFq$SxSBUDGq3>X!0&+H=&rW?Nd# zVXbsi#>=cEE6GussEQ88HP|%SeJK z34$a5+p`iN|CQY^B(75!uv*E8@R$YDw#%(h2sO_d8>LdSW;9#JEkwMYvjvz}qU}PX zWbDRL|BwL#;(s@sf64?$>I-`n&n@DL-O1C9n|L~Jsxx-YtDl&LbbUn?c9Apt`sy!N zVTfGrO4qMc;XL`cl&K$gphA}RWc^hxtnK*UT>8}~A+2-(LGlV*Ez2O3G)O+Yk<1;WF zSuwEc!JS4Mb8a|Z;G#~qp88$Zmnx>NojAbs}W4FmEN_j zg@7Wx?g;K~!S_ut?eI9&^O071Gc}x>kHn;YAHC_X7B$fvBV*oR7L5*;@QNWg@}9pm z}=v{I4%ZG|>bAMS)o)u`e`-P#3dJb)hT1h-z+1v7fP7o2*s54?E! kOca~&LADyg*x1fZaLIaJCU{s{KU9dSsfA~c?toqV2a{IP+5i9m diff --git a/frontend/scripts/build-dev.sh b/sina/scripts/build-dev.sh similarity index 100% rename from frontend/scripts/build-dev.sh rename to sina/scripts/build-dev.sh diff --git a/sina/src/Main.elm b/sina/src/Main.elm new file mode 100644 index 0000000..c3ab483 --- /dev/null +++ b/sina/src/Main.elm @@ -0,0 +1,56 @@ +module Main exposing (..) + +import Browser +import Html exposing (Html, text, div, h1, img) +import Html.Attributes exposing (src) + + +---- MODEL ---- + + +type alias Model = + {} + + +init : ( Model, Cmd Msg ) +init = + ( {}, Cmd.none ) + + + +---- UPDATE ---- + + +type Msg + = NoOp + + +update : Msg -> Model -> ( Model, Cmd Msg ) +update msg model = + ( model, Cmd.none ) + + + +---- VIEW ---- + + +view : Model -> Html Msg +view model = + div [] + [ img [ src "/logo.svg" ] [] + , h1 [] [ text "Your Elm App is working!" ] + ] + + + +---- PROGRAM ---- + + +main : Program () Model Msg +main = + Browser.element + { view = view + , init = \_ -> init + , update = update + , subscriptions = always Sub.none + } diff --git a/frontend/src/Mi.elm b/sina/src/Mi.elm similarity index 100% rename from frontend/src/Mi.elm rename to sina/src/Mi.elm diff --git a/frontend/src/Mi/Switch.elm b/sina/src/Mi/Switch.elm similarity index 100% rename from frontend/src/Mi/Switch.elm rename to sina/src/Mi/Switch.elm diff --git a/frontend/src/Mi/WebMention.elm b/sina/src/Mi/WebMention.elm similarity index 100% rename from frontend/src/Mi/WebMention.elm rename to sina/src/Mi/WebMention.elm diff --git a/sina/src/index.js b/sina/src/index.js new file mode 100644 index 0000000..c9bbd20 --- /dev/null +++ b/sina/src/index.js @@ -0,0 +1,12 @@ +import './main.css'; +import { Elm } from './Main.elm'; +import * as serviceWorker from './serviceWorker'; + +Elm.Main.init({ + node: document.getElementById('root') +}); + +// If you want your app to work offline and load faster, you can change +// unregister() to register() below. Note this comes with some pitfalls. +// Learn more about service workers: https://bit.ly/CRA-PWA +serviceWorker.unregister(); diff --git a/sina/src/main.css b/sina/src/main.css new file mode 100644 index 0000000..d9f0b64 --- /dev/null +++ b/sina/src/main.css @@ -0,0 +1,26 @@ +/* + elm-hot creates an additional div wrapper around the app to make HMR possible. + This could break styling in development mode if you are using Elm UI. + + More context in the issue: + https://github.com/halfzebra/create-elm-app/issues/320 +*/ +[data-elm-hot="true"] { + height: inherit; +} + +body { + font-family: 'Source Sans Pro', 'Trebuchet MS', 'Lucida Grande', 'Bitstream Vera Sans', 'Helvetica Neue', sans-serif; + margin: 0; + text-align: center; + color: #293c4b; +} + +h1 { + font-size: 30px; +} + +img { + margin: 20px 0; + max-width: 200px; +} diff --git a/sina/src/serviceWorker.js b/sina/src/serviceWorker.js new file mode 100644 index 0000000..f8c7e50 --- /dev/null +++ b/sina/src/serviceWorker.js @@ -0,0 +1,135 @@ +// This optional code is used to register a service worker. +// register() is not called by default. + +// This lets the app load faster on subsequent visits in production, and gives +// it offline capabilities. However, it also means that developers (and users) +// will only see deployed updates on subsequent visits to a page, after all the +// existing tabs open on the page have been closed, since previously cached +// resources are updated in the background. + +// To learn more about the benefits of this model and instructions on how to +// opt-in, read https://bit.ly/CRA-PWA + +const isLocalhost = Boolean( + window.location.hostname === 'localhost' || + // [::1] is the IPv6 localhost address. + window.location.hostname === '[::1]' || + // 127.0.0.1/8 is considered localhost for IPv4. + window.location.hostname.match( + /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/ + ) +); + +export function register(config) { + if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) { + // The URL constructor is available in all browsers that support SW. + const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href); + if (publicUrl.origin !== window.location.origin) { + // Our service worker won't work if PUBLIC_URL is on a different origin + // from what our page is served on. This might happen if a CDN is used to + // serve assets; see https://github.com/facebook/create-react-app/issues/2374 + return; + } + + window.addEventListener('load', () => { + const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`; + + if (isLocalhost) { + // This is running on localhost. Let's check if a service worker still exists or not. + checkValidServiceWorker(swUrl, config); + + // Add some additional logging to localhost, pointing developers to the + // service worker/PWA documentation. + navigator.serviceWorker.ready.then(() => { + console.log( + 'This web app is being served cache-first by a service ' + + 'worker. To learn more, visit https://bit.ly/CRA-PWA' + ); + }); + } else { + // Is not localhost. Just register service worker + registerValidSW(swUrl, config); + } + }); + } +} + +function registerValidSW(swUrl, config) { + navigator.serviceWorker + .register(swUrl) + .then(registration => { + registration.onupdatefound = () => { + const installingWorker = registration.installing; + if (installingWorker == null) { + return; + } + installingWorker.onstatechange = () => { + if (installingWorker.state === 'installed') { + if (navigator.serviceWorker.controller) { + // At this point, the updated precached content has been fetched, + // but the previous service worker will still serve the older + // content until all client tabs are closed. + console.log( + 'New content is available and will be used when all ' + + 'tabs for this page are closed. See https://bit.ly/CRA-PWA.' + ); + + // Execute callback + if (config && config.onUpdate) { + config.onUpdate(registration); + } + } else { + // At this point, everything has been precached. + // It's the perfect time to display a + // "Content is cached for offline use." message. + console.log('Content is cached for offline use.'); + + // Execute callback + if (config && config.onSuccess) { + config.onSuccess(registration); + } + } + } + }; + }; + }) + .catch(error => { + console.error('Error during service worker registration:', error); + }); +} + +function checkValidServiceWorker(swUrl, config) { + // Check if the service worker can be found. If it can't reload the page. + fetch(swUrl) + .then(response => { + // Ensure service worker exists, and that we really are getting a JS file. + const contentType = response.headers.get('content-type'); + if ( + response.status === 404 || + (contentType != null && contentType.indexOf('javascript') === -1) + ) { + // No service worker found. Probably a different app. Reload the page. + navigator.serviceWorker.ready.then(registration => { + registration.unregister().then(() => { + window.location.reload(); + }); + }); + } else { + // Service worker found. Proceed as normal. + registerValidSW(swUrl, config); + } + }) + .catch(() => { + console.log( + 'No internet connection found. App is running in offline mode.' + ); + }); +} + +export function unregister() { + if ('serviceWorker' in navigator) { + navigator.serviceWorker.ready.then(registration => { + registration.unregister(); + }); + } +} diff --git a/sina/tests/Tests.elm b/sina/tests/Tests.elm new file mode 100644 index 0000000..3cf3499 --- /dev/null +++ b/sina/tests/Tests.elm @@ -0,0 +1,22 @@ +module Tests exposing (..) + +import Test exposing (..) +import Expect + + +-- Check out https://package.elm-lang.org/packages/elm-explorations/test/latest to learn more about testing in Elm! + + +all : Test +all = + describe "A Test Suite" + [ test "Addition" <| + \_ -> + Expect.equal 10 (3 + 7) + , test "String.left" <| + \_ -> + Expect.equal "a" (String.left 1 "abcdefg") + , test "This test should fail" <| + \_ -> + Expect.fail "failed as expected!" + ]