Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Feb 19, 2024
0 parents commit 139a688
Show file tree
Hide file tree
Showing 23 changed files with 6,420 additions and 0 deletions.
145 changes: 145 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
name: Build

on:
push:
branches:
- master
tags:
- "v*"
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install node
uses: actions/setup-node@v3
with:
node-version: "16.x"

# - name: Change version for non-releases
# if: ${{ ! startsWith(github.event.ref, 'refs/tags/v')}}
# run: python .github/ci_version.py

- name: npm install
run: (npm ci)

- name: Python requirements
run: pip install datamodel-code-generator==0.25.2 hatch

- name: Build antd es module
run: (npm run build)

- name: Package
run: hatch build

- name: Upload builds
uses: actions/upload-artifact@v3
with:
name: ipyantd-dist-${{ github.run_number }}
path: |
./dist
./*.tgz
# do we need unittests?
# test:
# needs: [build]
# runs-on: ubuntu-20.04
# strategy:
# fail-fast: false
# matrix:
# python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]

# steps:
# - uses: actions/checkout@v2

# - uses: actions/download-artifact@v3
# with:
# name: ipyantd-dist-${{ github.run_number }}

# - name: Install Python
# uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}

# - name: Install
# run: pip install `echo dist/*.whl`[unit-test] "jupyter_server<2"

# - name: Run unit tests
# run: pytest tests/unit

ui-test:
needs: [build]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

- uses: actions/download-artifact@v3
with:
name: ipyantd-dist-${{ github.run_number }}

- name: Install Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install ipyantd
run: pip install `echo dist/*.whl`[ui-test] "jupyter_server<2"

- name: Install playwright browsers
run: playwright install chromium

- name: Run ui-tests
run: pytest tests/ui/ --video=retain-on-failure

- name: Upload Test artifacts
if: always()
uses: actions/upload-artifact@v2
with:
name: ipyantd-test-results-${{ github.run_number }}
path: test-results

release:
if: startsWith(github.event.ref, 'refs/tags/v')
needs: [ui-test]
# needs: [test, ui-test]
runs-on: ubuntu-20.04
steps:
- uses: actions/download-artifact@v3
with:
name: ipyantd-dist-${{ github.run_number }}

- name: Install node
uses: actions/setup-node@v1
with:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"

- name: Install Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install twine wheel jupyter-packaging jupyterlab
- name: Publish the Python package
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: twine upload --skip-existing dist/*.whl dist/*.tar.gz

# - name: Publish the NPM package
# run: |
# echo $PRE_RELEASE
# if [[ $PRE_RELEASE == "true" ]]; then export TAG="next"; else export TAG="latest"; fi
# npm publish --tag ${TAG} --access public *.tgz
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# PRE_RELEASE: ${{ github.event.release.prerelease }}
24 changes: 24 additions & 0 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: code-quality

on:
pull_request:
push:
branches: [master]

jobs:
pre-commit:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install dependencies
run: |
pip install ".[dev]"
pre-commit install
- name: run pre-commit
run: |
pre-commit run --all-files
155 changes: 155 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,155 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask instance folder
instance/

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/
docs/source/_static/embed-bundle.js
docs/source/_static/embed-bundle.js.map

# PyBuilder
target/

# IPython Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# dotenv
.env

# virtualenv
venv/
ENV/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject

# =========================
# Operating System Files
# =========================

# OSX
# =========================

.DS_Store
.AppleDouble
.LSOverride

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Windows
# =========================

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk


# NPM
# ----

**/node_modules/
ipyantd/nbextension/index.*

# Coverage data
# -------------
**/coverage/

# Packed lab extensions
ipyantd/labextension
13 changes: 13 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
repos:
- repo: "https://github.com/pre-commit/mirrors-prettier"
rev: "v3.1.0"
hooks:
- id: prettier
stages: [commit]
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: "v0.1.9"
hooks:
- id: ruff
stages: [commit]
- id: ruff-format
stages: [commit]
19 changes: 19 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (c) 2023 Maarten A. Breddels

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Build on top of ipyreact
22 changes: 22 additions & 0 deletions fix_types.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
37823c37823
< 'preview': NotRequired[Union[ImagePreviewType, bool]],
---
> 'preview': NotRequired[Union["ImagePreviewType", bool]],
38023c38023
< 'items': NotRequired[List[ItemType]],
---
> 'items': NotRequired[List["ItemType"]],
38117,38118c38117,38118
< SubMenuTypeMenuItemType,
< MenuItemGroupTypeMenuItemType,
---
> "SubMenuTypeMenuItemType",
> "MenuItemGroupTypeMenuItemType",
38146c38146
< MenuItemGroupTypeMenuItemType,
---
> "MenuItemGroupTypeMenuItemType",
40523c40523
< ColorInput = Union[RGB, RGBA, HSL, HSLA, HSV, HSVA, TinyColor, Union[str, float]]
---
> ColorInput = Union[RGB, RGBA, HSL, HSLA, HSV, HSVA, "TinyColor", Union[str, float]]
Loading

0 comments on commit 139a688

Please sign in to comment.