Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dunest/materialcomponents
This project prime goal is to bind the google's Material Components project to Seaside and as second goal to build widgets on top of Material Components to help Seaside developers to create web applications with material design faster.
https://github.com/dunest/materialcomponents
material-components material-design pharo seaside smalltalk web
Last synced: 21 days ago
JSON representation
This project prime goal is to bind the google's Material Components project to Seaside and as second goal to build widgets on top of Material Components to help Seaside developers to create web applications with material design faster.
- Host: GitHub
- URL: https://github.com/dunest/materialcomponents
- Owner: DuneSt
- License: mit
- Created: 2019-05-01T19:13:54.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-22T17:18:15.000Z (over 5 years ago)
- Last Synced: 2024-11-17T07:15:40.592Z (3 months ago)
- Topics: material-components, material-design, pharo, seaside, smalltalk, web
- Language: Smalltalk
- Size: 5.62 MB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# MaterialComponents for Seaside
Master [![Build Status](https://travis-ci.org/DuneSt/MaterialComponents.svg?branch=master)](https://travis-ci.org/DuneSt/MaterialComponents)| Development [![Build Status](https://travis-ci.org/DuneSt/MaterialComponents.svg?branch=development)](https://travis-ci.org/DuneSt/MaterialComponents)
Coverage:
[![Coverage Status](https://coveralls.io/repos/github/DuneSt/MaterialComponents/badge.svg)](https://coveralls.io/github/DuneSt/MaterialComponents)
**THIS PROJECT IS A WIP**
This project has as first goal to bind the Google's Material Components Web project to Seaside and as second goal to build widgets on top of Material Design to help [Seaside](https://github.com/SeasideSt/Seaside) developers in creating fast web application with flat design. For a tutorial on Seaside check [http://book.seaside.st](http://book.seaside.st).
- [Documentation](#documentation)
* [Version management](#version-management)
* [Installation](#installation)
* [Getting started](#getting-started)
* [Examples](#examples)
* [Latest supported Dependencies](#latest-supported-dependencies)
* [Smalltalk versions compatibility](#smalltalk-versions-compatibility)
* [Under the hood](#under-the-hood)
* [Contact](#contact)# Documentation
## Version management
This project use semantic versioning to define the releases. This means that each stable release of the project will be assigned a version number of the form `vX.Y.Z`.
- **X** defines the major version number
- **Y** defines the minor version number
- **Z** defines the patch version numberWhen a release contains only bug fixes, the patch number increases. When the release contains new features that are backward compatible, the minor version increases. When the release contains breaking changes, the major version increases.
Thus, it should be safe to depend on a fixed major version and moving minor version of this project.
## Installation
To install MaterialComponents on your Pharo image, execute the following script:
```Smalltalk
Metacello new
githubUser: 'DuneSt' project: 'MaterialComponents' commitish: 'master' path: 'src';
baseline: 'MaterialComponents';
onWarningLog;
load
```To add MaterialComponents Seaside to your baseline just add this:
```Smalltalk
spec
baseline: 'MaterialComponents'
with: [ spec repository: 'github://DuneSt/MaterialComponents:master/src' ]
```Note you can replace the #master by another branch such as #development or a tag such as #v1.0.0, #v1.? or #v1.2.? .
## Getting started
**TODO**
## Examples
You can find multiple examples when the application will be installed at the url: [http://localhost:8080/mdc](http://localhost:8080/mdc)
When you install in a plain Pharo image you need to start the seaside server first by opening `World menu > Tools > Seaside Control Panel` and adding and starting an appropropriate `ZnZincServerAdaptor`. If you do not use port 8080, change the port in the URL.
You can also open the demo from the menu bar under `MaterialComponents`.
You can find a demo at: [https://mdc.ferlicot.fr/](https://mdc.ferlicot.fr/)
## Latest supported Dependencies
- [Material Icons v3.0.1](https://github.com/google/material-design-icons/releases/tag/3.0.1)
- [Material Components Web v2.3.0](https://github.com/material-components/material-components-web/releases/tag/v2.3.0)## Smalltalk versions compatibility
| MDL version | Compatible Pharo versions | Compatible Gemstone versions |
|------------- |--------------------------- |--------------------------- |
| Dev | Pharo 61, 70, 80 | None |## Under the hood
Understanding what is going on under the hood is always useful. Have a look at [https://material.io/develop/web/](https://material.io/develop/web/).
## Contact
If you have any questions or problems do not hesitate to open an issue or contact cyril (a) ferlicot.me