Make all resource paths relative
Closes: https://todo.sr.ht/~emersion/gamja/17
This commit is contained in:
parent
a5608a40d5
commit
80e0175d36
14 changed files with 47 additions and 43 deletions
|
@ -1,4 +1,4 @@
|
||||||
import { SERVER_BUFFER } from "/state.js";
|
import { SERVER_BUFFER } from "./state.js";
|
||||||
|
|
||||||
function getActiveClient(app) {
|
function getActiveClient(app) {
|
||||||
var buf = app.state.buffers.get(app.state.activeBuffer);
|
var buf = app.state.buffers.get(app.state.activeBuffer);
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
import * as irc from "/lib/irc.js";
|
import * as irc from "../lib/irc.js";
|
||||||
import Client from "/lib/client.js";
|
import Client from "../lib/client.js";
|
||||||
import Buffer from "/components/buffer.js";
|
import Buffer from "./buffer.js";
|
||||||
import BufferList from "/components/buffer-list.js";
|
import BufferList from "./buffer-list.js";
|
||||||
import BufferHeader from "/components/buffer-header.js";
|
import BufferHeader from "./buffer-header.js";
|
||||||
import MemberList from "/components/member-list.js";
|
import MemberList from "./member-list.js";
|
||||||
import Connect from "/components/connect.js";
|
import Connect from "./connect.js";
|
||||||
import Composer from "/components/composer.js";
|
import Composer from "./composer.js";
|
||||||
import ScrollManager from "/components/scroll-manager.js";
|
import ScrollManager from "./scroll-manager.js";
|
||||||
import { html, Component, createRef } from "/lib/index.js";
|
import { html, Component, createRef } from "../lib/index.js";
|
||||||
import { strip as stripANSI } from "/lib/ansi.js";
|
import { strip as stripANSI } from "../lib/ansi.js";
|
||||||
import { SERVER_BUFFER, BufferType, ReceiptType, NetworkStatus, Unread } from "/state.js";
|
import { SERVER_BUFFER, BufferType, ReceiptType, NetworkStatus, Unread } from "../state.js";
|
||||||
import commands from "/commands.js";
|
import commands from "../commands.js";
|
||||||
import { setup as setupKeybindings } from "/keybindings.js";
|
import { setup as setupKeybindings } from "../keybindings.js";
|
||||||
|
|
||||||
const CHATHISTORY_MAX_SIZE = 4000;
|
const CHATHISTORY_MAX_SIZE = 4000;
|
||||||
|
|
||||||
|
@ -189,6 +189,10 @@ export default class App extends Component {
|
||||||
if (window.location.protocol != "https:") {
|
if (window.location.protocol != "https:") {
|
||||||
proto = "ws:";
|
proto = "ws:";
|
||||||
}
|
}
|
||||||
|
var path = window.location.pathname || "/";
|
||||||
|
if (!window.location.host) {
|
||||||
|
path = "/";
|
||||||
|
}
|
||||||
|
|
||||||
var serverURL;
|
var serverURL;
|
||||||
if (params.server) {
|
if (params.server) {
|
||||||
|
@ -198,7 +202,7 @@ export default class App extends Component {
|
||||||
serverURL = params.server;
|
serverURL = params.server;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
serverURL = proto + "//" + host + "/socket";
|
serverURL = proto + "//" + host + path + "socket";
|
||||||
}
|
}
|
||||||
this.state.connectParams.serverURL = serverURL;
|
this.state.connectParams.serverURL = serverURL;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { html, Component } from "/lib/index.js";
|
import { html, Component } from "../lib/index.js";
|
||||||
import linkify from "/lib/linkify.js";
|
import linkify from "../lib/linkify.js";
|
||||||
import { strip as stripANSI } from "/lib/ansi.js";
|
import { strip as stripANSI } from "../lib/ansi.js";
|
||||||
import { BufferType, NetworkStatus } from "/state.js";
|
import { BufferType, NetworkStatus } from "../state.js";
|
||||||
|
|
||||||
const UserStatus = {
|
const UserStatus = {
|
||||||
HERE: "here",
|
HERE: "here",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import * as irc from "/lib/irc.js";
|
import * as irc from "../lib/irc.js";
|
||||||
import { html, Component } from "/lib/index.js";
|
import { html, Component } from "../lib/index.js";
|
||||||
import { BufferType, Unread, getBufferURL } from "/state.js";
|
import { BufferType, Unread, getBufferURL } from "../state.js";
|
||||||
|
|
||||||
function getNetworkName(network) {
|
function getNetworkName(network) {
|
||||||
var bouncerStr = network.isupport.get("BOUNCER");
|
var bouncerStr = network.isupport.get("BOUNCER");
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import { html, Component } from "/lib/index.js";
|
import { html, Component } from "../lib/index.js";
|
||||||
import linkify from "/lib/linkify.js";
|
import linkify from "../lib/linkify.js";
|
||||||
import * as irc from "/lib/irc.js";
|
import * as irc from "../lib/irc.js";
|
||||||
import { strip as stripANSI } from "/lib/ansi.js";
|
import { strip as stripANSI } from "../lib/ansi.js";
|
||||||
import { BufferType, getNickURL, getMessageURL } from "/state.js";
|
import { BufferType, getNickURL, getMessageURL } from "../state.js";
|
||||||
|
|
||||||
function djb2(s) {
|
function djb2(s) {
|
||||||
var hash = 5381;
|
var hash = 5381;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { html, Component, createRef } from "/lib/index.js";
|
import { html, Component, createRef } from "../lib/index.js";
|
||||||
|
|
||||||
export default class Composer extends Component {
|
export default class Composer extends Component {
|
||||||
state = {
|
state = {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { html, Component } from "/lib/index.js";
|
import { html, Component } from "../lib/index.js";
|
||||||
|
|
||||||
export default class Connect extends Component {
|
export default class Connect extends Component {
|
||||||
state = {
|
state = {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { html, Component } from "/lib/index.js";
|
import { html, Component } from "../lib/index.js";
|
||||||
import { getNickURL } from "/state.js";
|
import { getNickURL } from "../state.js";
|
||||||
|
|
||||||
class MemberItem extends Component {
|
class MemberItem extends Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { html, Component } from "/lib/index.js";
|
import { html, Component } from "../lib/index.js";
|
||||||
|
|
||||||
var store = new Map();
|
var store = new Map();
|
||||||
|
|
||||||
|
|
|
@ -3,15 +3,15 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>gamja IRC client</title>
|
<title>gamja IRC client</title>
|
||||||
<link rel="stylesheet" href="/style.css">
|
<link rel="stylesheet" href="./style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript>
|
<noscript>
|
||||||
<p>Unfortunately gamja requires JavaScript. Please enable it!</p>
|
<p>Unfortunately gamja requires JavaScript. Please enable it!</p>
|
||||||
</noscript>
|
</noscript>
|
||||||
<script type="module">
|
<script type="module">
|
||||||
import { html, render } from "/lib/index.js";
|
import { html, render } from "./lib/index.js";
|
||||||
import App from "/components/app.js";
|
import App from "./components/app.js";
|
||||||
|
|
||||||
render(html`<${App}/>`, document.body);
|
render(html`<${App}/>`, document.body);
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { ReceiptType, Unread, SERVER_BUFFER } from "/state.js";
|
import { ReceiptType, Unread, SERVER_BUFFER } from "./state.js";
|
||||||
|
|
||||||
export const keybindings = [
|
export const keybindings = [
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
export * from "/node_modules/preact/dist/preact.module.js";
|
export * from "../node_modules/preact/dist/preact.module.js";
|
||||||
|
|
||||||
import { h } from "/node_modules/preact/dist/preact.module.js";
|
import { h } from "../node_modules/preact/dist/preact.module.js";
|
||||||
import htm from "/node_modules/htm/dist/htm.module.js";
|
import htm from "../node_modules/htm/dist/htm.module.js";
|
||||||
export const html = htm.bind(h);
|
export const html = htm.bind(h);
|
||||||
|
|
||||||
import "/node_modules/anchorme/dist/browser/anchorme.min.js";
|
import "../node_modules/anchorme/dist/browser/anchorme.min.js";
|
||||||
export const anchorme = window.anchorme;
|
export const anchorme = window.anchorme;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { anchorme, html } from "/lib/index.js";
|
import { anchorme, html } from "./index.js";
|
||||||
|
|
||||||
export default function linkify(text) {
|
export default function linkify(text) {
|
||||||
var links = anchorme.list(text);
|
var links = anchorme.list(text);
|
||||||
|
|
2
state.js
2
state.js
|
@ -1,4 +1,4 @@
|
||||||
import Client from "/lib/client.js";
|
import Client from "./lib/client.js";
|
||||||
|
|
||||||
export const SERVER_BUFFER = "*";
|
export const SERVER_BUFFER = "*";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue