feat: add tailwind css.
This commit is contained in:
72
src/App.tsx
72
src/App.tsx
@ -1,16 +1,15 @@
|
||||
import { createEffect, createSignal } from "solid-js";
|
||||
import { invoke } from "@tauri-apps/api/tauri";
|
||||
import "./App.css";
|
||||
import { DisplayInfo } from './displays/display-info.model';
|
||||
import { DisplayInfo } from './models/display-info.model';
|
||||
import { DisplayInfoPanel } from './components/display-info-panel';
|
||||
|
||||
function App() {
|
||||
const [image, setImage] = createSignal<string>();
|
||||
const [screenshots, setScreenshots] = createSignal<string[]>([]);
|
||||
const [name, setName] = createSignal("");
|
||||
const [displays, setDisplays] = createSignal<DisplayInfo[]>([]);
|
||||
|
||||
createEffect(() => {
|
||||
invoke<string>("list_display_info").then((displays) => {
|
||||
invoke<string>('list_display_info').then((displays) => {
|
||||
setDisplays(JSON.parse(displays));
|
||||
});
|
||||
});
|
||||
@ -20,9 +19,12 @@ function App() {
|
||||
}, [displays]);
|
||||
|
||||
async function take_all_display_screenshot() {
|
||||
console.log("take_all_display_screenshot")
|
||||
console.log('take_all_display_screenshot');
|
||||
displays().forEach((display) => {
|
||||
invoke<string>("take_screenshot", { displayId: display.id, scaleFactor: display.scale_factor }).then((image) => {
|
||||
invoke<string>('take_screenshot', {
|
||||
displayId: display.id,
|
||||
scaleFactor: display.scale_factor,
|
||||
}).then((image) => {
|
||||
setScreenshots((screenshots) => [...screenshots, image]);
|
||||
});
|
||||
});
|
||||
@ -31,49 +33,25 @@ function App() {
|
||||
return (
|
||||
<div class="container">
|
||||
<ol>
|
||||
{
|
||||
displays().map((display) => {
|
||||
return <li>
|
||||
<dl>
|
||||
<dt>id</dt>
|
||||
<dd>{display.id}</dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt>x</dt>
|
||||
<dd>{display.x}</dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt>y</dt>
|
||||
<dd>{display.y}</dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt>width</dt>
|
||||
<dd>{display.width}</dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt>height</dt>
|
||||
<dd>{display.height}</dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt>scale_factor</dt>
|
||||
<dd>{display.scale_factor}</dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt>is_primary</dt>
|
||||
<dd>{display.is_primary}</dd>
|
||||
</dl>
|
||||
</li>
|
||||
})
|
||||
}
|
||||
{displays().map((display) => {
|
||||
return (
|
||||
<li>
|
||||
<DisplayInfoPanel display={display} />
|
||||
</li>
|
||||
);
|
||||
})}
|
||||
</ol>
|
||||
<ol>
|
||||
{
|
||||
screenshots().map((screenshot) => {
|
||||
return <li>
|
||||
<img style="object-fit: contain; height: 400px; width: 600px" src={screenshot}/>
|
||||
</li>
|
||||
})
|
||||
}
|
||||
{screenshots().map((screenshot) => {
|
||||
return (
|
||||
<li>
|
||||
<img
|
||||
style="object-fit: contain; height: 400px; width: 600px"
|
||||
src={screenshot}
|
||||
/>
|
||||
</li>
|
||||
);
|
||||
})}
|
||||
</ol>
|
||||
</div>
|
||||
);
|
||||
|
39
src/components/display-info-panel.tsx
Normal file
39
src/components/display-info-panel.tsx
Normal file
@ -0,0 +1,39 @@
|
||||
import { Component, ParentComponent } from 'solid-js';
|
||||
import { DisplayInfo } from '../models/display-info.model';
|
||||
|
||||
type DisplayInfoItemProps = {
|
||||
label: string;
|
||||
};
|
||||
|
||||
export const DisplayInfoItem: ParentComponent<DisplayInfoItemProps> = (props) => {
|
||||
return (
|
||||
<dl class="m-1 flex hover:bg-gray-100 gap-2 text-gray-700">
|
||||
<dt class="uppercase w-1/3">{props.label}</dt>
|
||||
<dd>{props.children}</dd>
|
||||
</dl>
|
||||
);
|
||||
};
|
||||
|
||||
type DisplayInfoPanelProps = {
|
||||
display: DisplayInfo;
|
||||
};
|
||||
|
||||
export const DisplayInfoPanel: Component<DisplayInfoPanelProps> = (props) => {
|
||||
return (
|
||||
<section class="m-2">
|
||||
<DisplayInfoItem label="ID">
|
||||
<code>{props.display.id}</code>
|
||||
</DisplayInfoItem>
|
||||
<DisplayInfoItem label="Position">
|
||||
({props.display.x}, {props.display.y})
|
||||
</DisplayInfoItem>
|
||||
<DisplayInfoItem label="Size">
|
||||
{props.display.width} x {props.display.height}
|
||||
</DisplayInfoItem>
|
||||
<DisplayInfoItem label="Scale Factor">{props.display.scale_factor}</DisplayInfoItem>
|
||||
<DisplayInfoItem label="is Primary">
|
||||
{props.display.is_primary ? 'True' : 'False'}
|
||||
</DisplayInfoItem>
|
||||
</section>
|
||||
);
|
||||
};
|
112
src/styles.css
112
src/styles.css
@ -1,109 +1,3 @@
|
||||
:root {
|
||||
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
font-weight: 400;
|
||||
|
||||
color: #0f0f0f;
|
||||
background-color: #f6f6f6;
|
||||
|
||||
font-synthesis: none;
|
||||
text-rendering: optimizeLegibility;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
}
|
||||
|
||||
.container {
|
||||
margin: 0;
|
||||
padding-top: 10vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.logo {
|
||||
height: 6em;
|
||||
padding: 1.5em;
|
||||
will-change: filter;
|
||||
transition: 0.75s;
|
||||
}
|
||||
|
||||
.logo.tauri:hover {
|
||||
filter: drop-shadow(0 0 2em #24c8db);
|
||||
}
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
a {
|
||||
font-weight: 500;
|
||||
color: #646cff;
|
||||
text-decoration: inherit;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #535bf2;
|
||||
}
|
||||
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
input,
|
||||
button {
|
||||
border-radius: 8px;
|
||||
border: 1px solid transparent;
|
||||
padding: 0.6em 1.2em;
|
||||
font-size: 1em;
|
||||
font-weight: 500;
|
||||
font-family: inherit;
|
||||
color: #0f0f0f;
|
||||
background-color: #ffffff;
|
||||
transition: border-color 0.25s;
|
||||
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
button {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
border-color: #396cd8;
|
||||
}
|
||||
button:active {
|
||||
border-color: #396cd8;
|
||||
background-color: #e8e8e8;
|
||||
}
|
||||
|
||||
input,
|
||||
button {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#greet-input {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
color: #f6f6f6;
|
||||
background-color: #2f2f2f;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #24c8db;
|
||||
}
|
||||
|
||||
input,
|
||||
button {
|
||||
color: #ffffff;
|
||||
background-color: #0f0f0f98;
|
||||
}
|
||||
button:active {
|
||||
background-color: #0f0f0f69;
|
||||
}
|
||||
}
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
Reference in New Issue
Block a user