-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2297 from Avaiga/docs/get_resource
Adding example for get_resource for taipy extension
- Loading branch information
Showing
6 changed files
with
105 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
26 changes: 26 additions & 0 deletions
26
doc/gui/extension/example_library/front-end/scripts/logoAnimation.js
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,26 @@ | ||
const style = document.createElement('style'); | ||
style.innerHTML = ` | ||
@keyframes logoAnimation { | ||
from { | ||
transform: scale(1); | ||
} | ||
to { | ||
transform: scale(1.5); | ||
} | ||
} | ||
.logo-animate { | ||
animation: logoAnimation 2s infinite alternate; | ||
} | ||
`; | ||
document.head.appendChild(style); | ||
|
||
document.addEventListener("DOMContentLoaded", () => { | ||
const checkForElement = setInterval(() => { | ||
const logoImage = document.querySelector('img[alt="LogoWithText"]'); | ||
if (logoImage) { | ||
logoImage.classList.add('logo-animate'); | ||
clearInterval(checkForElement); | ||
} | ||
}, 100); | ||
}); |
37 changes: 37 additions & 0 deletions
37
doc/gui/extension/example_library/front-end/src/LogoWithText.tsx
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,37 @@ | ||
import React from "react"; | ||
import { useDynamicProperty } from "taipy-gui"; | ||
|
||
interface CaptionProps { | ||
text: string; | ||
defaultText: string; | ||
logoPath: string; | ||
} | ||
|
||
const styles = { | ||
container: { | ||
display: "flex", | ||
alignItems: "center", | ||
}, | ||
logo: { | ||
width: "4em", | ||
height: "4em", | ||
marginRight: "10px", | ||
}, | ||
}; | ||
|
||
const LogoWithText = ({ text, defaultText, logoPath }: CaptionProps) => { | ||
const value = useDynamicProperty(text, defaultText, ""); | ||
|
||
return ( | ||
<div style={styles.container}> | ||
<img | ||
src={`data:image/png;base64,${logoPath}`} | ||
alt="LogoWithText" | ||
style={styles.logo} | ||
/> | ||
<div>{value}</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default LogoWithText; |
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,22 @@ | ||
# Copyright 2021-2024 Avaiga Private Limited | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
# an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations under the License. | ||
from example_library import ExampleLibrary | ||
|
||
from taipy.gui import Gui | ||
|
||
name = "Taipy" | ||
|
||
page = """ | ||
<|{name}|logo_with_text|> | ||
""" | ||
|
||
if __name__ == "__main__": | ||
Gui(page, libraries=[ExampleLibrary()]).run(title="Logo with text") |