Skip to content

Commit

Permalink
Merge pull request #551 from SolidOS/styleStreamline
Browse files Browse the repository at this point in the history
Continuing to streamline style usage
  • Loading branch information
bourgeoa authored Dec 1, 2023
2 parents 28954ea + 5d95a9f commit 8782737
Show file tree
Hide file tree
Showing 28 changed files with 2,603 additions and 5,899 deletions.
7,841 changes: 2,292 additions & 5,549 deletions dist/solid-ui.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/solid-ui.js.map

This file was deleted.

3 changes: 0 additions & 3 deletions dist/solid-ui.min.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/solid-ui.min.js.map

This file was deleted.

14 changes: 5 additions & 9 deletions src/login/login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,10 +354,6 @@ export async function registrationList (context: AuthenticationContext, options:
return context
} // registrationList

function getDefaultSignInButtonStyle (): string {
return 'padding: 1em; border-radius:0.5em; font-size: 100%;'
}

/**
* Bootstrapping identity
* (Called by `loginStatusBox()`)
Expand All @@ -375,7 +371,7 @@ function signInOrSignUpBox (
} = {}
): HTMLElement {
options = options || {}
const signInButtonStyle = options.buttonStyle || getDefaultSignInButtonStyle()
const signInButtonStyle = options.buttonStyle || style.signInAndUpButtonStyle

const box: any = dom.createElement('div')
const magicClassName = 'SolidSignInOrSignUpBox'
Expand All @@ -389,7 +385,7 @@ function signInOrSignUpBox (
box.appendChild(signInPopUpButton)
signInPopUpButton.setAttribute('type', 'button')
signInPopUpButton.setAttribute('value', 'Log in')
signInPopUpButton.setAttribute('style', `${signInButtonStyle}background-color: #eef;${style.headerBannerLoginInput}`)
signInPopUpButton.setAttribute('style', `${signInButtonStyle}${style.headerBannerLoginInput}` + style.signUpBackground)

authSession.onLogin(() => {
const me = authn.currentUser()
Expand Down Expand Up @@ -437,7 +433,7 @@ function signInOrSignUpBox (
box.appendChild(signupButton)
signupButton.setAttribute('type', 'button')
signupButton.setAttribute('value', 'Sign Up for Solid')
signupButton.setAttribute('style', `${signInButtonStyle}background-color: #efe;${style.headerBannerLoginInput}`)
signupButton.setAttribute('style', `${signInButtonStyle}${style.headerBannerLoginInput}` + style.signInBackground)

signupButton.addEventListener(
'click',
Expand Down Expand Up @@ -653,7 +649,7 @@ export function loginStatusBox (
}

function logoutButton (me, options) {
const signInButtonStyle = options.buttonStyle || getDefaultSignInButtonStyle()
const signInButtonStyle = options.buttonStyle || style.signInAndUpButtonStyle
let logoutLabel = 'WebID logout'
if (me) {
const nick =
Expand All @@ -667,7 +663,7 @@ export function loginStatusBox (
// signOutButton.className = 'WebIDCancelButton'
signOutButton.setAttribute('type', 'button')
signOutButton.setAttribute('value', logoutLabel)
signOutButton.setAttribute('style', `${signInButtonStyle}background-color: #eee;`)
signOutButton.setAttribute('style', `${signInButtonStyle}`)
signOutButton.addEventListener('click', logoutButtonHandler, false)
return signOutButton
}
Expand Down
27 changes: 11 additions & 16 deletions src/media/media-capture.ts
Original file line number Diff line number Diff line change
@@ -1,33 +1,28 @@
/// /////////////////////////////////////////////
//
// Media input widget
//
//
// Workflow:
// The HTML5 functionality (on mobille) is to prompt for either
// a realtime camera capture , OR a selection from images already ont the device
// The HTML5 functionality (on mobile) is to prompt for either
// a realtime camera capture, OR a selection from images already on the device
// (eg camera roll).
//
// The solid alternative is to either take a phtoto
// or access cemra roll (etc) OR to access solid cloud storage of favorite photo almbums.
// The solid alternative is to either take a photo
// or access camera roll (etc) OR to access solid cloud storage of favorite photo albums.
// (Especially latest taken ones)
//
import * as debug from '../debug'

/** @module mediaCapture */

import { icons } from '../iconBase'
import * as style from '../style'
import * as widgets from '../widgets'
import { IndexedFormula, NamedNode } from 'rdflib'

const cameraIcon = icons.iconBase + 'noun_Camera_1618446_000000.svg' // Get it from github
const retakeIcon = icons.iconBase + 'noun_479395.svg' // Get it from github

const canvasWidth = '640'
const canvasHeight = '480'

const controlStyle = `border-radius: 0.5em; margin: 0.8em; width: ${canvasWidth}; height:${canvasHeight};`
// const controlStyle = 'border-radius: 0.5em; margin: 0.8em; width: 320; height:240;'
const contentType = 'image/png'

/** A control to capture a picture using camera
Expand Down Expand Up @@ -88,7 +83,7 @@ export function cameraCaptureControl (
player = main.appendChild(dom.createElement('video'))
player.setAttribute('controls', '1')
player.setAttribute('autoplay', '1')
player.setAttribute('style', controlStyle)
player.setAttribute('style', style.controlStyle)
if (!navigator.mediaDevices) {
throw new Error('navigator.mediaDevices not available')
}
Expand All @@ -112,9 +107,9 @@ export function cameraCaptureControl (
function grabCanvas () {
// Draw the video frame to the canvas.
canvas = dom.createElement('canvas')
canvas.setAttribute('width', canvasWidth)
canvas.setAttribute('height', canvasHeight)
canvas.setAttribute('style', controlStyle)
canvas.setAttribute('width', style.canvasWidth)
canvas.setAttribute('height', style.canvasHeight)
canvas.setAttribute('style', style.controlStyle)
main.appendChild(canvas)

const context = canvas.getContext('2d')
Expand Down Expand Up @@ -178,9 +173,9 @@ export function cameraCaptureControl (
* @param {IndexedForumla} store - The quadstore to store data in
* @param {fuunction} getImageDoc - returns NN of the image file to be created
* @param {function<Node>} doneCallback - called with the image taken
* @returns {DomElement} - A div element with the buton in it
* @returns {DomElement} - A div element with the button in it
*
* This expacts the buttton to a large control when it is pressed
* This expands the button to a large control when it is pressed
*/

export function cameraButton (
Expand Down
60 changes: 14 additions & 46 deletions src/pad.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import { newThing, errorMessageBlock } from './widgets'
import { beep } from './utils'
import { log } from './debug'
import { solidLogicSingleton } from 'solid-logic'
export { renderPartipants, participationObject, manageParticipation, recordParticipation } from './participation'
import * as style from './style'
export { renderParticipants, participationObject, manageParticipation, recordParticipation } from './participation'

const store = solidLogicSingleton.store

Expand Down Expand Up @@ -55,7 +56,7 @@ export function lightColorHash (author?: NamedNode): string {
/** notepad
*
* @param {HTMLDocument} dom - the web page of the browser
* @param {NamedNode} padDoc - the document into which the particpation should be shown
* @param {NamedNode} padDoc - the document in which the participation should be shown
* @param {NamedNode} subject - the thing in which participation is happening
* @param {NamedNode} me - person who is logged into the pod
* @param {notepadOptions} options - the options that can be passed in consist of statusArea, exists
Expand All @@ -72,10 +73,7 @@ export function notepad (dom: HTMLDocument, padDoc: NamedNode, subject: NamedNod

const PAD = Namespace('http://www.w3.org/ns/pim/pad#')

table.setAttribute(
'style',
'padding: 1em; overflow: auto; resize: horizontal; min-width: 40em;'
)
table.setAttribute('style', style.notepadStyle)

let upstreamStatus: HTMLElement | null = null
let downstreamStatus: HTMLElement | null = null
Expand All @@ -87,10 +85,10 @@ export function notepad (dom: HTMLDocument, padDoc: NamedNode, subject: NamedNod
downstreamStatus = tr.appendChild(dom.createElement('td'))

if (upstreamStatus) {
upstreamStatus.setAttribute('style', 'width:50%')
upstreamStatus.setAttribute('style', style.upstreamStatus)
}
if (downstreamStatus) {
downstreamStatus.setAttribute('style', 'width:50%')
downstreamStatus.setAttribute('style', style.downstreamStatus)
}
}
/* @@ TODO want to look into this, it seems upstream should be a boolean and default to false ?
Expand All @@ -112,15 +110,9 @@ export function notepad (dom: HTMLDocument, padDoc: NamedNode, subject: NamedNod
const setPartStyle = function (part: NotepadPart, colors?: string, pending?: any) {
const chunk = part.subject
colors = colors || ''
const baseStyle =
'font-size: 100%; font-family: monospace; width: 100%; border: none; white-space: pre-wrap;'
const headingCore =
'font-family: sans-serif; font-weight: bold; border: none;'
const headingStyle = [
'font-size: 110%; padding-top: 0.5em; padding-bottom: 0.5em; width: 100%;',
'font-size: 120%; padding-top: 1em; padding-bottom: 1em; width: 100%;',
'font-size: 150%; padding-top: 1em; padding-bottom: 1em; width: 100%;'
]
const baseStyle = style.baseStyle
const headingCore = style.headingCore
const headingStyle = style.headingStyle

const author = kb.any(chunk as any, ns.dc('author'))
if (!colors && author) {
Expand All @@ -139,12 +131,12 @@ export function notepad (dom: HTMLDocument, padDoc: NamedNode, subject: NamedNod
let indent: any = kb.any(chunk as any, PAD('indent'))

indent = indent ? indent.value : 0
const style =
const localStyle =
indent >= 0
? baseStyle + 'text-indent: ' + indent * 3 + 'em;'
: headingCore + headingStyle[-1 - indent]
// ? baseStyle + 'padding-left: ' + (indent * 3) + 'em;'
part.setAttribute('style', style + colors)
part.setAttribute('style', localStyle + colors)
}

const removePart = function (part: NotepadPart) {
Expand Down Expand Up @@ -236,28 +228,6 @@ export function notepad (dom: HTMLDocument, padDoc: NamedNode, subject: NamedNod
})
}

// Use this sort of code to split the line when return pressed in the middle @@
/*
function doGetCaretPosition doGetCaretPosition (oField) {
var iCaretPos = 0
// IE Support
if (document.selection) {
// Set focus on the element to avoid IE bug
oField.focus()
// To get cursor position, get empty selection range
var oSel = document.selection.createRange()
// Move selection start to 0 position
oSel.moveStart('character', -oField.value.length)
// The caret position is selection length
iCaretPos = oSel.text.length
// Firefox suppor
} else if (oField.selectionStart || oField.selectionStart === '0') {
iCaretPos = oField.selectionStart
}
// Return results
return (iCaretPos)
}
*/
const addListeners = function (part: any, chunk: any) {
part.addEventListener('keydown', function (event) {
if (!updater) {
Expand Down Expand Up @@ -299,8 +269,8 @@ export function notepad (dom: HTMLDocument, padDoc: NamedNode, subject: NamedNod
case 2: // contents need to be sent again
part.state = 4 // delete me
return
case 3: // being deleted already
case 4: // already deleme state
case 3: // already being deleted
case 4: // already deleted state
return
case undefined:
case 0:
Expand Down Expand Up @@ -644,8 +614,6 @@ export function notepad (dom: HTMLDocument, padDoc: NamedNode, subject: NamedNod
}
return
}
// var last = kb.the(undefined, PAD('previous'), subject)
// var chunk = first // = kb.the(subject, PAD('next'));
let row

// First see which of the logical chunks have existing physical manifestations
Expand Down Expand Up @@ -717,7 +685,7 @@ export function notepad (dom: HTMLDocument, padDoc: NamedNode, subject: NamedNod
log(' reloaded OK')
clearStatus()
if (!consistencyCheck()) {
complain('CONSITENCY CHECK FAILED')
complain('CONSISTENCY CHECK FAILED')
} else {
refreshTree(table)
}
Expand Down
Loading

0 comments on commit 8782737

Please sign in to comment.