Added "srcset" property to ImageView

This commit is contained in:
anoshenko 2022-11-11 12:55:58 +03:00
parent ff5c73b7c3
commit 7bb4da32bf
5 changed files with 590 additions and 533 deletions

File diff suppressed because it is too large Load Diff

View File

@ -631,7 +631,7 @@ which implements the Properties interface (see above). BoundsProperty has 4 Size
| "top" | rui.Top | Top padding |
| "right" | rui.Right | Right padding |
| "bottom" | rui.Bottom | Bottom padding |
| "left" | rui.Left | Дуае padding |
| "left" | rui.Left | Left padding |
The NewBoundsProperty function is used to create the BoundsProperty interface. Example
@ -1255,7 +1255,7 @@ The textual description of the polygonal cropping area is in the following forma
polygon{ points = "<x1 value>, <y1 value>, <x2 value>, <y2 value>,…" }
### "оpacity" property
### "opacity" property
The "opacity" property (constant Opacity) of the float64 type sets the transparency of the View. Valid values are from 0 to 1.
Where 1 - View is fully opaque, 0 - fully transparent.
@ -1311,7 +1311,7 @@ The argument lists the effects to apply. The following effects are possible:
| "invert" | Invert | float64 0…100% | Invert colors |
| "opacity" | Opacity | float64 0…100% | Changing transparency |
| "saturate" | Saturate | float64 0…10000% | Saturation change |
| "sepia" | Sepia | float64 0…100% | Conversion to serpia |
| "sepia" | Sepia | float64 0…100% | Conversion to sepia |
Example
@ -1871,7 +1871,7 @@ Several kinds of mouse events can be generated for the View
| "mouse-up" | MouseUp | The mouse button has been released. |
| "mouse-move" | MouseMove | Mouse cursor moved |
| "mouse-out" | MouseOut | The mouse cursor has moved outside the View, or entered the child View |
| "mouse-over" | MouseOver | The mouse cursor has moved within the arrea of View |
| "mouse-over" | MouseOver | The mouse cursor has moved within the area of View |
| "click-event" | ClickEvent | There was a mouse click |
| "double-click-event" | DoubleClickEvent | There was a double mouse click |
| "context-menu-event" | ContextMenuEvent | The key for calling the context menu (right mouse button) is pressed |
@ -2130,7 +2130,7 @@ In addition to all View properties, this element has only one additional propert
### "content" property
The "content" property (constant Сontent) defines an array of child Views. Interface Get function
The "content" property (constant Content) defines an array of child Views. Interface Get function
always returns []View for the given property.
The following 5 data types can be passed as the value of the "content" property:
@ -2298,7 +2298,7 @@ The "grid-auto-flow" property can take the following values:
* RowAutoFlow (0) (text name "row") - Views are placed by filling each row in turn, adding new columns as necessary;
* ColumnAutoFlow (1) (text name "colunm") - Views are placed by filling each column in turn, adding new columns as necessary;
* ColumnAutoFlow (1) (text name "column") - Views are placed by filling each column in turn, adding new columns as necessary;
* RowDenseAutoFlow (2) (text name "row-dense") - Views are placed by filling each row, adding new rows as necessary.
"dense" packing algorithm attempts to fill in holes earlier in the grid, if smaller items come up later.
@ -3765,7 +3765,7 @@ A custom View is created based on another, which is named Super View.
To simplify the task, there is already a basic CustomView implementation in the form of a CustomViewData structure.
Let's consider creating a custom View using the built-in Buttom element as an example:
Let's consider creating a custom View using the built-in Button element as an example:
1) declare the Button interface as extending CustomView, and the buttonData structure as extending CustomViewData
@ -4237,7 +4237,7 @@ without having to stop to further buffer the content.
* "loaded-metadata-event" (LoadedMetadataEvent constant) is fired when the metadata has been loaded.
* "loadstart-event" (LoadstartEvent constant) is fired when the browser starts loading the resource.
* "loadstart-event" (LoadStartEvent constant) is fired when the browser starts loading the resource.
* "pause-event" (PauseEvent constant) is fired when a pause request is processed and the action pauses, most often when the Pause () method is called.
@ -4387,7 +4387,7 @@ The "arrow" property can take the following values
| 0 | NoneArrow | No arrow (default value) |
| 1 | Top Arrow | Arrow at the top side of the pop-up window |
| 2 | RightArrow | Arrow on the right side of the pop-up window |
| 3 | bottomarrow | Arrow at the bottom of the pop-up window |
| 3 | BottomArrow | Arrow at the bottom of the pop-up window |
| 4 | LeftArrow | Arrow on the left side of the pop-up window |
The size of the arrow is specified using the "arrow-size" (ArrowSize constant) and "arrow-width" (ArrowWidth constant) SizeUnit properties.
@ -5224,7 +5224,7 @@ For example
}
],
styles:portrait:width320 = [
sapmplePage {
samplePage {
width = 100%,
height = 50%,
},

View File

@ -90,6 +90,7 @@ func (app *wasmApp) init(params AppParams) {
head.Call("appendChild", meta)
if params.Icon != "" {
url := params.Icon
if image, ok := resources.images[params.Icon]; ok && image.fs != nil {
dataType := map[string]string{
".svg": "data:image/svg+xml",
@ -101,15 +102,17 @@ func (app *wasmApp) init(params AppParams) {
ext := strings.ToLower(filepath.Ext(params.Icon))
if prefix, ok := dataType[ext]; ok {
if data, err := image.fs.ReadFile(image.path); err == nil {
meta = document.Call("createElement", "link")
meta.Set("rel", "icon")
meta.Set("href", prefix+";base64,"+base64.StdEncoding.EncodeToString(data))
head.Call("appendChild", meta)
url = prefix + ";base64," + base64.StdEncoding.EncodeToString(data)
} else {
DebugLog(err.Error())
}
}
}
meta = document.Call("createElement", "link")
meta.Set("rel", "icon")
meta.Set("href", url)
head.Call("appendChild", meta)
}
script := document.Call("createElement", "script")

View File

@ -84,6 +84,9 @@ func (imageView *imageViewData) normalizeTag(tag string) string {
case "source":
tag = Source
case "src-set", "source-set":
tag = SrcSet
case VerticalAlign:
tag = ImageVerticalAlign
@ -130,7 +133,7 @@ func (imageView *imageViewData) set(tag string, value any) bool {
switch tag {
case Source:
if text, ok := value.(string); ok {
imageView.properties[Source] = text
imageView.properties[tag] = text
if imageView.created {
src, srcset := imageView.src(text)
imageView.session.updateProperty(imageView.htmlID(), "src", src)
@ -146,6 +149,26 @@ func (imageView *imageViewData) set(tag string, value any) bool {
}
notCompatibleType(Source, value)
case SrcSet:
if text, ok := value.(string); ok {
if text == "" {
delete(imageView.properties, tag)
} else {
imageView.properties[tag] = text
}
if imageView.created {
_, srcset := imageView.src(text)
if srcset != "" {
imageView.session.updateProperty(imageView.htmlID(), "srcset", srcset)
} else {
imageView.session.removeProperty(imageView.htmlID(), "srcset")
}
}
imageView.propertyChangedEvent(Source)
return true
}
notCompatibleType(Source, value)
case AltText:
if text, ok := value.(string); ok {
imageView.properties[AltText] = text
@ -196,6 +219,30 @@ func (imageView *imageViewData) imageListeners(tag string) []func(ImageView) {
}
func (imageView *imageViewData) srcSet(path string) string {
if value := imageView.getRaw(SrcSet); value != nil {
if text, ok := value.(string); ok {
srcset := strings.Split(text, ",")
buffer := allocStringBuilder()
defer freeStringBuilder(buffer)
for i, src := range srcset {
if i > 0 {
buffer.WriteString(", ")
}
src = strings.Trim(src, " \t\n")
buffer.WriteString(src)
if index := strings.LastIndex(src, "@"); index > 0 {
if ext := strings.LastIndex(src, "."); ext > index {
buffer.WriteRune(' ')
buffer.WriteString(src[index+1 : ext])
}
} else {
buffer.WriteString(" 1x")
}
}
return buffer.String()
}
}
if srcset, ok := resources.imageSrcSets[path]; ok {
buffer := allocStringBuilder()
defer freeStringBuilder(buffer)

View File

@ -483,8 +483,15 @@ const (
GridColumnGap = "grid-column-gap"
// Source is the constant for the "src" property tag.
// The "src" property specifies the image to display in the ImageView.
Source = "src"
// SrcSet is the constant for the "srcset" property tag.
// The "srcset" property is a string which identifies one or more image candidate strings, separated using commas (,)
// each specifying image resources to use under given screen density.
// This property is only used if you are building an application for js/wasm platform
SrcSet = "srcset"
// Fit is the constant for the "fit" property tag.
Fit = "fit"
backgroundFit = "background-fit"