st server debug 관련 롤백

This commit is contained in:
opacity@t-win.kr
2025-08-18 10:30:01 +09:00
parent 7c016a755f
commit 98e8c9cf19
6 changed files with 43159 additions and 2410 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -34,12 +34,14 @@
"dist/*" "dist/*"
], ],
"dependencies": { "dependencies": {
"@enact/cli": "^7.1.0",
"@enact/core": "^3.3.0", "@enact/core": "^3.3.0",
"@enact/i18n": "^3.3.0", "@enact/i18n": "^3.3.0",
"@enact/sandstone": "^1.5.1", "@enact/sandstone": "^1.5.1",
"@enact/spotlight": "^3.3.0", "@enact/spotlight": "^3.3.0",
"@enact/ui": "^3.3.0", "@enact/ui": "^3.3.0",
"@enact/webos": "^3.3.0", "@enact/webos": "^3.3.0",
"@webos-tools/cli": "^3.2.1",
"axios": "^0.21.1", "axios": "^0.21.1",
"dashjs": "^5.0.3", "dashjs": "^5.0.3",
"google-libphonenumber": "^3.2.34", "google-libphonenumber": "^3.2.34",

View File

@@ -287,9 +287,6 @@ export const getUrl = (getState, endStr) => {
} else if (sdpURL.indexOf("qt") >= 0) { } else if (sdpURL.indexOf("qt") >= 0) {
// Qa - cdn // Qa - cdn
newUrl = "https://qt-" + ricCode + SHOPTIME_BASE_URL; newUrl = "https://qt-" + ricCode + SHOPTIME_BASE_URL;
} else if (sdpURL.indexOf("st") >= 0) {
// Staging
newUrl = "https://qt-" + ricCode + SHOPTIME_BASE_URL;
} else { } else {
// Prod // Prod
newUrl = "https://" + ricCode + SHOPTIME_BASE_URL; newUrl = "https://" + ricCode + SHOPTIME_BASE_URL;

View File

@@ -105,8 +105,6 @@ export default function DebugPanel({ spotlightId }) {
[dispatch] [dispatch]
); );
console.log("###localSettings.serverType", localSettings.serverType);
return ( return (
<TPanel isTabActivated={false} spotlightId={spotlightId}> <TPanel isTabActivated={false} spotlightId={spotlightId}>
<THeader title="Debug" /> <THeader title="Debug" />
@@ -135,14 +133,6 @@ export default function DebugPanel({ spotlightId }) {
> >
system system
</RadioItem> </RadioItem>
<RadioItem
className={css.switch}
selected={localSettings.serverType === "st"}
onClick={onChangeServer("st")}
disabled={localSettings.preventServerChange}
>
st
</RadioItem>
<RadioItem <RadioItem
className={css.switch} className={css.switch}
selected={localSettings.serverType === "qt2"} selected={localSettings.serverType === "qt2"}

View File

@@ -304,11 +304,6 @@ export default function MyInfo({ title, cbScrollTo }) {
return ( return (
<> <>
<THeader title={title} aria-label={title + " Heading 1"}> <THeader title={title} aria-label={title + " Heading 1"}>
{serverHOST && (
<span className={css.serverHostBadge}>[serverHost] {serverHOST}</span>
)}
</THeader>
<TBody className={css.tBody} cbScrollTo={cbScrollTo}>
<Container className={css.myInfoContainer}> <Container className={css.myInfoContainer}>
<div className={css.contentsBox}> <div className={css.contentsBox}>
<div className={css.infoBox}> <div className={css.infoBox}>

View File

@@ -35,17 +35,6 @@
font-family: @baseFont; font-family: @baseFont;
font-weight: bold; font-weight: bold;
} }
.serverHostBadge {
margin-left: auto;
margin-right: 60px;
color: fade(@COLOR_WHITE, 60%);
font-size: 22px;
line-height: 84px;
max-width: 520px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
} }
.infoBottomBox { .infoBottomBox {
margin-top: 18px; margin-top: 18px;