Skip to content
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
File renamed without changes.
File renamed without changes.
14 changes: 14 additions & 0 deletions web/app/assets/buefy-like.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@import "bulma/css/bulma.css";

:root {
--bulma-primary-h: 256deg;
--bulma-primary-s: 60%;
--bulma-primary-l: 59%;
--bulma-primary-invert-l: 100%;
--bulma-link-h: 256deg;
--bulma-link-s: 60%;
--bulma-link-l: 59%;
--bulma-text-h: 0deg;
--bulma-text-s: 0%;
--bulma-text-l: 29%;
}
File renamed without changes
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import type { SparqleResponse } from '~/types/SparqleResponse'
import type { SparqleResponse } from '~~/shared/types/SparqleResponse'
const props = defineProps({
response: {
type: Object as PropType<SparqleResponse>,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion web/pages/index.vue → web/app/pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="">
<section class="hero is-medium is-primary is-bold">
<section class="hero is-medium is-primary">
<div class="hero-body has-text-centered">
<div class="container">
<h1 class="title is-1">
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import type { SparqleResponse } from '~/types/SparqleResponse'
import type { SparqleResponse } from '~~/shared/types/SparqleResponse'

const route = useRoute()

Expand All @@ -24,7 +24,7 @@ const label = computed(() => {
let ret = ''
response.value?.results.bindings.forEach((binding) => {
const labelUri = 'http://www.w3.org/2000/01/rdf-schema#label'
if (binding.Property.value === labelUri) { ret = binding.Value.value }
if (binding.Property?.value === labelUri) { ret = binding.Value!.value }
})
return ret
})
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import type { SparqleResponse } from '~/types/SparqleResponse'
import type { SparqleResponse } from '~~/shared/types/SparqleResponse'

const route = useRoute()

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineNuxtPlugin } from '#app'
import { defineNuxtPlugin } from '#imports'
import VueCodemirror from 'vue-codemirror'
import { StreamLanguage } from '@codemirror/language'
import { sparql } from '@codemirror/legacy-modes/mode/sparql'
Expand Down
42 changes: 0 additions & 42 deletions web/assets/buefy-like.scss

This file was deleted.

Binary file removed web/assets/buefy.png
Binary file not shown.
3 changes: 2 additions & 1 deletion web/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { defineNuxtConfig } from 'nuxt/config'

export default defineNuxtConfig({
compatibilityDate: '2026-04-05',
app: {
head: {
title: 'PrismDB',
Expand All @@ -16,7 +17,7 @@ export default defineNuxtConfig({
'/sparql': { proxy: process.env.SPARQL_ENDPOINT_URL }
},
css: [
'@/assets/buefy-like.scss'
'@/assets/buefy-like.css'
],
typescript: {
typeCheck: true
Expand Down
Loading
Loading