generated from maximegris/angular-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add eslint and fix project, add Breakpoint manager, fix monaco breakp…
…oint, save file items in firebase store, refactor cypress, etc... Example prime.s
- Loading branch information
Showing
91 changed files
with
3,137 additions
and
2,197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
@startuml | ||
'https://plantuml.com/class-diagram | ||
skinparam defaultFontName consolas | ||
skinparam minClassWidth 100 | ||
skinparam conditionStyle inside | ||
'skinparam defaultTextAlignment center | ||
skinparam linetype polyline | ||
skinparam linetype ortho | ||
'left to right direction | ||
'!include styles.puml | ||
|
||
|
||
'class Users <<(T,red)>> { | ||
' Users table | ||
' == | ||
' -uid: int | ||
' -email: string | ||
' -displayName: string | ||
' -photoURL: string | ||
' -emailVerified: boolean | ||
'} | ||
' | ||
'class FileItem <<(T,red)>> { | ||
' FileItem table | ||
' == | ||
' #uid: int | ||
' -name: string | ||
' -path: string | ||
' -content: string | ||
' -pathKeys: string as JSON | ||
' -key: string | ||
' -dateModified: Date | ||
' -size: number | ||
' -isDirectory: boolean | ||
' -hasSubDirectories: boolean | ||
' -thumbnail: string | ||
' -dataItem: string as JSON | ||
' 'any | ||
'} | ||
|
||
'e01 ||..o{ e02 | ||
'one and only one <--> zero or many | ||
|
||
|
||
entity "Users" as e01 { | ||
*uid : number <<generated>> | ||
-- | ||
email: text | ||
displayName: text | ||
photoURL: text | ||
emailVerified: boolean | ||
} | ||
|
||
entity "FileItems" as e02 { | ||
*f_id : number <<generated>> | ||
key : text | ||
pathKeys: text as JSON | ||
-- | ||
description: text | ||
name: text | ||
path: text | ||
content: text | ||
dateModified: Date | ||
size: number | ||
isDirectory: boolean | ||
hasSubDirectories: boolean | ||
thumbnail: text | ||
dataItem: text as JSON | ||
e1_uid: number <<FK>> | ||
} | ||
|
||
e01 ||..o{ e02 | ||
|
||
|
||
@enduml |
Oops, something went wrong.