Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLDR-17934 user-visible sitemap #4052

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 33 additions & 4 deletions docs/site/assets/css/page.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,50 @@ header .nav a.uplink {
color: white;
}

header .nav div.subpages {
div.showmap {
position: absolute;
right: 1em;
color: white;
}

div.showmap:hover {
text-decoration: underline;
color: white;
}

header .nav div.subpages,
div.sitemap {
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
background-color: white;
position: absolute;
position: fixed;
color: black;
padding: 0.5em;
}

div.subpages .hamburger {
left: 1em;
div.submap {
margin-left: 1em;
border-left: 1px solid gray;
padding-left: 0.5em;
}

div.subpages > .hamburger,
div.sitemap .hamburger {
position: absolute;
right: 1em;
top: 1em;
color: darkslateblue;
}

div.sitemap {
height: 90%;
}

div.sitemap > div.submap {
height: 95%;
overflow-y: scroll;
}

.subpages .hamburger:hover {
color: gray;
}
Expand Down
126 changes: 110 additions & 16 deletions docs/site/assets/js/cldrsite.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,20 +51,122 @@ async function siteData() {
return j;
}

const AncestorPages = {
props: ["ancestorPages"],
setup() {},
template: `
<span class="ancestor" v-for="ancestor of ancestorPages" :key="ancestor.href">
<a class="uplink" v-bind:href="ancestor.href">{{ ancestor.title }}</a><span class="crumb">❱</span>
</span>
`,
};

const SubPagesPopup = {
props: {
children: {
type: Object,
required: true,
},
},
emits: ["hide"], // when user clicks hide
setup() {},
methods: {
hide() {
this.$emit("hide");
},
},
template: `
<div class="subpages">
<span class="hamburger" @click="hide()">✕</span>
<ul class="subpages" >
<li v-for="subpage of children" :key="subpage.path">
<a v-bind:href="subpage.href">
{{ subpage.title }}
<span class="hamburger" v-if="subpage.children">❱</span>
</a>
</li>
</ul>
</div>
`,
};

const SubMap = {
name: "SubMap",
props: {
usermap: {
type: Object,
required: true,
},
path: String,
},
setup() {},
computed: {
title() {
return this.usermap[this.path].title;
},
children() {
return this.usermap[this.path].children || [];
},
href() {
return path2url(this.path);
},
},
template: `
<div class="submap">
<a v-bind:href="href" v-bind:title="path">{{title}}</a>
<SubMap v-for="child in children" :key="child" :usermap="usermap" :path="child" />
</div>
`,
};

const SiteMap = {
props: {
tree: {
type: Object,
required: true,
},
},
components: {
SubMap,
},
emits: ["hide"],
setup() {},
methods: {
hide() {
this.$emit("hide");
},
},
template: `
<div class="sitemap">
<span class="hamburger" @click="hide()">✕</span>
<b>Site Map</b><hr/>
<SubMap :usermap="tree.value.usermap" path="index"/>
</div>
`,
};

const app = Vue.createApp(
{
components: {
AncestorPages,
SubPagesPopup,
SiteMap,
},
setup(props) {
// the tree.json data
const tree = ref({});
// loading status for tree.json
const status = ref(null);
// is the popup menu shown?
const popup = ref(false);
// is the site map shown?
const showmap = ref(false);

return {
tree,
status,
popup,
showmap,
};
},
mounted() {
Expand Down Expand Up @@ -157,27 +259,19 @@ const app = Vue.createApp(
src="/assets/img/logo60s2.gif" alt="[Unicode]" width="34"
height="33"></a>&nbsp;&nbsp;

<span class="ancestor" v-for="ancestor of ancestorPages" :key="ancestor.href">
<a class="uplink" v-bind:href="ancestor.href">{{ ancestor.title }}</a><span class="crumb">❱</span>
</span>
<AncestorPages :ancestorPages="ancestorPages"/>

<div v-if="!children || !children.length" class="title"> {{ ourTitle }} </div>
<div v-else class="title" @mouseover="popup = true"><span class="hamburger" @click="popup = !popup">≡</span>
{{ ourTitle }}

<div class="subpages" v-if="popup">
<span class="hamburger" @click="popup=false">✕</span>
<ul class="subpages" >
<li v-for="subpage of children" :key="subpage.path">
<a v-bind:href="subpage.href">
{{ subpage.title }}
<span class="hamburger" v-if="subpage.children">❱</span>
</a>
</li>
</ul>
</div>
<div v-else class="title" @mouseover="popup = true"><span class="hamburger" @click="showmap=false,popup = !popup">≡</span>

{{ ourTitle }}

<SubPagesPopup v-if="popup && !showmap" @hide="popup = false" :children="children"/>

</div>
<div class="showmap" v-if="!showmap" @click="popup=false,showmap = true">Site Map</div>
<SiteMap v-if="tree && showmap" :tree="tree" @hide="showmap = popup = false" />

</div>`,
},
Expand Down
Loading