Frontend apps fixes

This commit is contained in:
cyber-dream 2023-05-07 22:56:40 +03:00
parent fa50328474
commit ea65976d01
10 changed files with 41 additions and 29 deletions

View File

@ -14,8 +14,9 @@
} }
.BlogView .Content { .BlogView .Content {
overflow: scroll;
width: 100%; width: 100%;
height: auto; height: 100%;
/* Auto layout */ /* Auto layout */
display: flex; display: flex;
flex-direction: column; flex-direction: column;

View File

@ -18,7 +18,7 @@ class BlogViewer{
// let fileView = new FileView("/kek", newWindow.querySelector(".FileTileView"), Finder.Click) // let fileView = new FileView("/kek", newWindow.querySelector(".FileTileView"), Finder.Click)
if (!WebDesktopEnvironment.isMobile){ if (!WebDesktopEnvironment.isMobile){
// let scrollBar = new WdeScrollBar(newWindow.children[1].children[1], newWindow.children[1].children[0])// TODO to querry selector let scrollBar = new WdeScrollBar(newWindow.querySelector(".ScrollbarPlace"), newWindow.querySelector(".ScrollContent"))
newWindow.querySelector("#closeWindowButton").addEventListener('click', function (params) { newWindow.querySelector("#closeWindowButton").addEventListener('click', function (params) {
WebDesktopEnvironment.CloseWindow(newWindow) WebDesktopEnvironment.CloseWindow(newWindow)
}) })

View File

@ -40,14 +40,14 @@ class Finder{
this.OpenDir('/') this.OpenDir('/')
}) })
// newWindow.querySelector("#HomeButton").addEventListener('click', () =>{ newWindow.querySelector("#HomeButton").addEventListener('click', () =>{
// this.OpenDir(this.homePath) this.OpenDir('/home/user')
// }) })
this.windowElement = newWindow this.windowElement = newWindow
if (!WebDesktopEnvironment.isMobile){ if (!WebDesktopEnvironment.isMobile){
// let scrollBar = new WdeScrollBar(newWindow.children[1].children[1], newWindow.children[1].children[0])// TODO to querry selector let scrollBar = new WdeScrollBar(newWindow.querySelector(".ScrollbarPlace"), newWindow.querySelector(".FileTileView"))
// console.log(newWindow.querySelector("#closeWindowButton")) // console.log(newWindow.querySelector("#closeWindowButton"))
newWindow.querySelector("#closeWindowButton").addEventListener('click', function (params) { newWindow.querySelector("#closeWindowButton").addEventListener('click', function (params) {

View File

@ -108,6 +108,7 @@
} }
.PropertiesList .Island{ .PropertiesList .Island{
width: 100%; width: 100%;
height: auto; height: auto;

View File

@ -22,11 +22,14 @@ class PersonalProperties{
let newWindow = WebDesktopEnvironment.CreateNewWindow(this.appId, 360, document.body.clientHeight*0.8 ) let newWindow = WebDesktopEnvironment.CreateNewWindow(this.appId, 360, document.body.clientHeight*0.8 )
newWindow.innerHTML = html newWindow.innerHTML = html
newWindow.style.height = 'auto'
let scrollBar = new WdeScrollBar(newWindow.querySelector('.ScrollBarScrollElement'), newWindow.querySelector('.PropsView')) // console.log(newWindow.querySelector('.ScrollBarScrollElement'))
// let scrollBar = new WdeScrollBar(newWindow.querySelector('.ScrollbarPlace'), newWindow.querySelector('.PropsView'))
newWindow.querySelector("#closeWindowButton").addEventListener('click', () => { newWindow.querySelector("#closeWindowButton").addEventListener('click', () => {
console.log("qewqweqweqweqwe") // console.log("qewqweqweqweqwe")
WebDesktopEnvironment.CloseWindow(newWindow) WebDesktopEnvironment.CloseWindow(newWindow)
}) })
}) })

View File

@ -87,20 +87,21 @@
filter: drop-shadow(1px 1px 0px #333399); filter: drop-shadow(1px 1px 0px #333399);
} }
/* TODO to wde css */
.ScrollContent { .ScrollContent {
width: 100%; /* width: 100%;
height: 100%; height: 100%; */
overflow: scroll; overflow: scroll;
overflow-x: hidden; overflow-x: hidden;
scrollbar-width: none; /* Firefox */ scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* Internet Explorer 10+ */ -ms-overflow-style: none; /* Internet Explorer 10+ */
/* Auto layout */ /* Auto layout */
display: flex; /* display: flex;
flex-direction: row; flex-direction: row;
justify-content: center; justify-content: center;
align-items: flex-start; align-items: flex-start;
padding: 0px; padding: 0px; */
} }
.ScrollContent::-webkit-scrollbar { /* WebKit */ .ScrollContent::-webkit-scrollbar { /* WebKit */

View File

@ -5,8 +5,11 @@ class WdeScrollBar{
*/ */
constructor(scrollBarContainer, content){ constructor(scrollBarContainer, content){
let nonNativeScroll = false let nonNativeScroll = false
// console.log(scrollBarContainer) // console.log(scrollBarContainer, content)
let handler = scrollBarContainer.children[0] // let handler = scrollBarContainer.children[0]
//TODO On scroll move focus on window?
let handler = scrollBarContainer.querySelector(".ScrollBarScrollElement") //TODO Refactor classes
// console.log(handler)
handler.style.height = (content.clientHeight /content.scrollHeight)* handler.parentElement.clientHeight + 'px' handler.style.height = (content.clientHeight /content.scrollHeight)* handler.parentElement.clientHeight + 'px'

View File

@ -4,9 +4,9 @@ document.addEventListener('DOMContentLoaded', function() {
// console.log(window.screen.width) // console.log(window.screen.width)
wde = new WebDesktopEnvironment wde = new WebDesktopEnvironment
if (!WebDesktopEnvironment.isMobile){ if (!WebDesktopEnvironment.isMobile){
// WebDesktopEnvironment.Open("finder", ["/home/user"]) WebDesktopEnvironment.Open("finder", ["/home/user"])
// WebDesktopEnvironment.Open("blog-viewer", ["/home/user/blog1.blog"]) // WebDesktopEnvironment.Open("blog-viewer", ["/home/user/blog1.blog"])
WebDesktopEnvironment.Open("personal-properties", ["/home/user/aboutme.props"]) // WebDesktopEnvironment.Open("personal-properties", ["/home/user/aboutme.props"])
} else { } else {
WebDesktopEnvironment.Open("blog-viewer", ["/home/user/blog/test-1.blog"]) WebDesktopEnvironment.Open("blog-viewer", ["/home/user/blog/test-1.blog"])
} }
@ -186,7 +186,7 @@ class WebDesktopEnvironment{
*/ */
static Alert(alertText){ static Alert(alertText){
WebDesktopEnvironment.CreateAlertWindow(alertText) WebDesktopEnvironment.CreateAlertWindow(alertText)
// console.log(alertText) console.log(alertText)
} }
/** /**

View File

@ -10,15 +10,17 @@
<div class="ContentBorder AdjectiveElement"> <div class="ContentBorder AdjectiveElement">
<div class="BlogView"> <div class="BlogView">
<div class="Content"> <div class="Content">
{{ range $block := .blocks }} <div class="ScrollContent">
<div class="{{$block.Type}}" > {{ range $block := .blocks }}
{{ range $data := $block.Data }} <div class="{{$block.Type}}" >
<div style="font-size: inherit;"> {{ range $data := $block.Data }}
{{$data}} <div style="font-size: inherit;">
</div> {{$data}}
{{ end }} </div>
</div> {{ end }}
{{ end }} </div>
{{ end }}
</div>
</div> </div>
{{template "wde-widgets/scrollbar.tmpl" .}} {{template "wde-widgets/scrollbar.tmpl" .}}
</div> </div>

View File

@ -12,7 +12,7 @@
<div class="PropsView"> <div class="PropsView">
<div class="PropertiesList"> <div class="PropertiesList">
<div class="ShortBio"> <div class="ShortBio">
<img class="Image" src="/system/libs/img/get?path={{ .headerProps.IconPath }}" alt="My Photo" > <img class="Image" src="/system/libs/img/get?path={{ .headerProps.IconPath }}" alt="My Photo">
<div class="Text"> <div class="Text">
<div class="Name">{{ .headerProps.Name }}</div> <div class="Name">{{ .headerProps.Name }}</div>
<div>{{ .headerProps.Info1 }}</div> <div>{{ .headerProps.Info1 }}</div>
@ -20,7 +20,8 @@
</div> </div>
</div> </div>
{{ range $propIsland := .allprops }} {{ range $propIsland := .allprops }}
<div class="Island"> <!-- FIXME -->
<div class="Island">
<div class="Title"> <div class="Title">
{{$propIsland.Header}}: {{$propIsland.Header}}:
</div> </div>
@ -49,7 +50,7 @@
{{ end }} {{ end }}
</div> </div>
</div> </div>
{{template "wde-widgets/scrollbar.tmpl" .}} <!-- {{template "wde-widgets/scrollbar.tmpl" .}} -->
</div> </div>
</div> </div>
{{ end }} {{ end }}