Skip to content

Commit

Permalink
Start work on editor + update README for new goals
Browse files Browse the repository at this point in the history
  • Loading branch information
kaubu committed Dec 27, 2023
1 parent 69a37a9 commit b8cac0a
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 4 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Pure English Dictionary

## Editor

- [ ] Latinometer functionality
- [ ] Clicking on a word (down below) brings up alternatives
- [ ] Anglish spelling (and Norse and French) iframes in the sidebar
- [ ] Option menu to hide specific stuff in the searches
- [ ] Ability to put in Thorn and Wynn, lowercase and uppercase, via buttons

## TODO

- [x] Fix duplicates of search due to second Anglish spellings
Expand All @@ -18,7 +26,7 @@
- [x] In the "Other Results" section, only include the meanings of words with a
relevant definition, instead of every single definition
- [x] Word definitions need right padding
- [ ] Tell you if a word is Germanic or not
- [x] Tell you if a word is Germanic or not
* Add to wordlist:
- [x] Sexuality
- [ ] Months and Holidays
Expand All @@ -29,10 +37,10 @@
- [ ] Dead Suffixes
- [x] Make searches case-insensitive (easy for search a bit harder for
definitions)
- [ ] Have a note at the start for specific exact matches
- [ ] False friends warning -
- [x] Have a note at the start for specific exact matches
- [x] False friends warning -
https://anglisc.miraheze.org/wiki/False_Friends
- [ ] Will also display if a word is Germanic or not
- [x] Will also display if a word is Germanic or not
- [ ] Edit "to use" words, add ones that aren't there by looking through the
"Helpful Anglish Words" page
- [x] Separate "exact match" and "related match" in the "Other Results"
Expand Down
24 changes: 24 additions & 0 deletions src/layouts/Editor.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<template>
<v-app>
<v-navigation-drawer v-model="drawer">
<!-- -->
</v-navigation-drawer>

<v-app-bar>
<v-app-bar-nav-icon @click="drawer = !drawer">
</v-app-bar-nav-icon>

<v-app-bar-title>Anglish Editor</v-app-bar-title>
</v-app-bar>

<v-main>
<h1>Hi</h1>
</v-main>
</v-app>
</template>

<script setup lang="ts">
import { ref } from "vue";
const drawer = ref(false);
</script>
11 changes: 11 additions & 0 deletions src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,17 @@ const routes = [
},
],
},
{
path: "/editor",
component: () => import('@/layouts/Editor.vue'),
children: [
{
path: "",
name: "Editor",
component: () => import("@/views/Editor.vue"),
}
],
},
// {
// path: "/word/:word",
// component: import('@/views/Word.vue'),
Expand Down
3 changes: 3 additions & 0 deletions src/views/Editor.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<textarea name="" id="" cols="30" rows="10">sfas</textarea>
</template>

0 comments on commit b8cac0a

Please sign in to comment.