Browse Source

Merge pull request #963 from iharbukach/master

feat(node): add .Net & Next.js frameworks
pull/1037/head
Filipe Oliveira 3 weeks ago
committed by GitHub
parent
commit
dd8ab99755
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
9 changed files with 26 additions and 1 deletions
  1. +3
    -1
      config.py
  2. +14
    -0
      diagrams/programming/framework.py
  3. +9
    -0
      docs/nodes/programming.md
  4. BIN
      resources/programming/framework/dotnet.png
  5. BIN
      resources/programming/framework/nextjs.png
  6. BIN
      resources/programming/framework/vercel.png
  7. BIN
      website/static/img/resources/programming/framework/dotnet.png
  8. BIN
      website/static/img/resources/programming/framework/nextjs.png
  9. BIN
      website/static/img/resources/programming/framework/vercel.png

+ 3
- 1
config.py View File

@@ -429,7 +429,9 @@ ALIASES = {
"programming": {
"framework": {
"Fastapi": "FastAPI",
"Graphql": "GraphQL"
"Graphql": "GraphQL",
"Dotnet": "DotNet",
"Nextjs": "NextJs"
},
"language": {
"Javascript": "JavaScript",


+ 14
- 0
diagrams/programming/framework.py View File

@@ -24,6 +24,10 @@ class Django(_Framework):
_icon = "django.png"


class Dotnet(_Framework):
_icon = "dotnet.png"


class Ember(_Framework):
_icon = "ember.png"

@@ -60,6 +64,10 @@ class Micronaut(_Framework):
_icon = "micronaut.png"


class Nextjs(_Framework):
_icon = "nextjs.png"


class Quarkus(_Framework):
_icon = "quarkus.png"

@@ -84,6 +92,10 @@ class Svelte(_Framework):
_icon = "svelte.png"


class Vercel(_Framework):
_icon = "vercel.png"


class Vue(_Framework):
_icon = "vue.png"

@@ -92,4 +104,6 @@ class Vue(_Framework):

FastAPI = Fastapi
GraphQL = Graphql
DotNet = Dotnet
NextJs = Nextjs
JHipster = Jhipster

+ 9
- 0
docs/nodes/programming.md View File

@@ -95,6 +95,9 @@ Node classes list of the programming provider.
<img width="30" src="/img/resources/programming/framework/django.png" alt="Django" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Django**

<img width="30" src="/img/resources/programming/framework/dotnet.png" alt="Dotnet" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Dotnet**, **DotNet** (alias)

<img width="30" src="/img/resources/programming/framework/ember.png" alt="Ember" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Ember**

@@ -122,6 +125,9 @@ Node classes list of the programming provider.
<img width="30" src="/img/resources/programming/framework/micronaut.png" alt="Micronaut" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Micronaut**

<img width="30" src="/img/resources/programming/framework/nextjs.png" alt="Nextjs" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Nextjs**, **NextJs** (alias)

<img width="30" src="/img/resources/programming/framework/quarkus.png" alt="Quarkus" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Quarkus**

@@ -140,6 +146,9 @@ Node classes list of the programming provider.
<img width="30" src="/img/resources/programming/framework/svelte.png" alt="Svelte" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Svelte**

<img width="30" src="/img/resources/programming/framework/vercel.png" alt="Vercel" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Vercel**

<img width="30" src="/img/resources/programming/framework/vue.png" alt="Vue" style="float: left; padding-right: 5px;" >
**diagrams.programming.framework.Vue**



BIN
resources/programming/framework/dotnet.png View File

Before After
Width: 256  |  Height: 256  |  Size: 15 KiB

BIN
resources/programming/framework/nextjs.png View File

Before After
Width: 256  |  Height: 256  |  Size: 12 KiB

BIN
resources/programming/framework/vercel.png View File

Before After
Width: 256  |  Height: 225  |  Size: 3.0 KiB

BIN
website/static/img/resources/programming/framework/dotnet.png View File

Before After
Width: 256  |  Height: 256  |  Size: 15 KiB

BIN
website/static/img/resources/programming/framework/nextjs.png View File

Before After
Width: 256  |  Height: 256  |  Size: 12 KiB

BIN
website/static/img/resources/programming/framework/vercel.png View File

Before After
Width: 256  |  Height: 225  |  Size: 3.0 KiB

Loading…
Cancel
Save