Cristiano Magro
2024-12-30 32b5995968182d420a1ef9ffda6528208e457665
start analisi problema
14 files added
268 ■■■■■ changed files
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/.browserslistrc 3 ●●●●● patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/.eslintrc.js 17 ●●●●● patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/.gitignore 22 ●●●●● patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/HOW-TO-USE.pdf patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/babel.config.js 5 ●●●●● patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/package.json 26 ●●●●● patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/public/favicon.ico patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/public/index.html 21 ●●●●● patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/src/App.vue 100 ●●●●● patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/src/components/ActiveElement.vue 12 ●●●●● patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/src/components/KnowledgeBase.vue 13 ●●●●● patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/src/components/KnowledgeElement.vue 14 ●●●●● patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/src/components/KnowledgeGrid.vue 19 ●●●●● patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/src/main.js 16 ●●●●● patch | view | raw | blame | history
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/.browserslistrc
New file
@@ -0,0 +1,3 @@
> 1%
last 2 versions
not dead
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/.eslintrc.js
New file
@@ -0,0 +1,17 @@
module.exports = {
  root: true,
  env: {
    node: true
  },
  'extends': [
    'plugin:vue/vue3-essential',
    'eslint:recommended'
  ],
  parserOptions: {
    parser: 'babel-eslint'
  },
  rules: {
    'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
    'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
  }
}
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/.gitignore
New file
@@ -0,0 +1,22 @@
.DS_Store
node_modules
/dist
# local env files
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/HOW-TO-USE.pdf
Binary files differ
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/babel.config.js
New file
@@ -0,0 +1,5 @@
module.exports = {
  presets: [
    '@vue/cli-plugin-babel/preset'
  ]
}
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/package.json
New file
@@ -0,0 +1,26 @@
{
  "name": "vue-first-app",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint"
  },
  "dependencies": {
    "core-js": "^3.6.5",
    "vue": "^3.0.0"
  },
  "devDependencies": {
    "@vue/cli-plugin-babel": "~4.5.0",
    "@vue/cli-plugin-eslint": "~4.5.0",
    "@vue/cli-service": "~4.5.0",
    "@vue/compiler-sfc": "^3.0.0-0",
    "babel-eslint": "^10.1.0",
    "eslint": "^6.7.2",
    "eslint-plugin-vue": "^7.0.0-0"
  },
  "prettier": {
    "singleQuote": true
  }
}
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/public/favicon.ico
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/public/index.html
New file
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width,initial-scale=1.0" />
    <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
    <title><%= htmlWebpackPlugin.options.title %></title>
  </head>
  <body>
    <noscript>
      <strong
        >We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work
        properly without JavaScript enabled. Please enable it to
        continue.</strong
      >
    </noscript>
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>
</html>
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/src/App.vue
New file
@@ -0,0 +1,100 @@
<template>
  <div>
    <active-element
      :topic-title="activeTopic && activeTopic.title"
      :text="activeTopic && activeTopic.fullText"
    ></active-element>
    <knowledge-base :topics="topics" @select-topic="activateTopic"></knowledge-base>
  </div>
</template>
<script>
export default {
  data() {
    return {
      topics: [
        {
          id: 'basics',
          title: 'The Basics',
          description: 'Core Vue basics you have to know',
          fullText:
            'Vue is a great framework and it has a couple of key concepts: Data binding, events, components and reactivity - that should tell you something!',
        },
        {
          id: 'components',
          title: 'Components',
          description:
            'Components are a core concept for building Vue UIs and apps',
          fullText:
            'With components, you can split logic (and markup) into separate building blocks and then combine those building blocks (and re-use them) to build powerful user interfaces.',
        },
      ],
      activeTopic: null,
    };
  },
  methods: {
    activateTopic(topicId) {
      this.activeTopic = this.topics.find((topic) => topic.id === topicId);
    },
  },
};
</script>
<style>
* {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
}
body {
  margin: 0;
}
section {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
  margin: 2rem auto;
  max-width: 40rem;
  padding: 1rem;
  border-radius: 12px;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
li {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 1rem;
  width: 15rem;
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
h2 {
  margin: 0.75rem 0;
  text-align: center;
}
button {
  font: inherit;
  border: 1px solid #c70053;
  background-color: #c70053;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  cursor: pointer;
}
button:hover,
button:active {
  background-color: #e24d8b;
  border-color: #e24d8b;
}
</style>
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/src/components/ActiveElement.vue
New file
@@ -0,0 +1,12 @@
<template>
  <section>
    <h2>{{ topicTitle }}</h2>
    <p>{{ text }}</p>
  </section>
</template>
<script>
export default {
  props: ['topicTitle', 'text'],
};
</script>
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/src/components/KnowledgeBase.vue
New file
@@ -0,0 +1,13 @@
<template>
  <section>
    <h2>Select a Topic</h2>
    <knowledge-grid :topics="topics" @select-topic="$emit('select-topic', $event)"></knowledge-grid>
  </section>
</template>
<script>
export default {
  props: ['topics'],
  emits: ['select-topic'],
};
</script>
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/src/components/KnowledgeElement.vue
New file
@@ -0,0 +1,14 @@
<template>
  <li>
    <h3>{{ topicName }}</h3>
    <p>{{ description }}</p>
    <button @click="$emit('select-topic', id)">Learn More</button>
  </li>
</template>
<script>
export default {
  props: ['id', 'topicName', 'description'],
  emits: ['select-topic'],
};
</script>
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/src/components/KnowledgeGrid.vue
New file
@@ -0,0 +1,19 @@
<template>
  <ul>
    <knowledge-element
      v-for="topic in topics"
      :key="topic.id"
      :id="topic.id"
      :topic-name="topic.title"
      :description="topic.description"
      @select-topic="$emit('select-topic', $event)"
    ></knowledge-element>
  </ul>
</template>
<script>
export default {
  props: ['topics'],
  emits: ['select-topic']
};
</script>
08 - component communication/cmp-communication-08-a-potential-problem-starting-setup/src/main.js
New file
@@ -0,0 +1,16 @@
import { createApp } from 'vue';
import App from './App.vue';
import ActiveElement from './components/ActiveElement.vue';
import KnowledgeBase from './components/KnowledgeBase.vue';
import KnowledgeElement from './components/KnowledgeElement.vue';
import KnowledgeGrid from './components/KnowledgeGrid.vue';
const app = createApp(App);
app.component('active-element', ActiveElement);
app.component('knowledge-base', KnowledgeBase);
app.component('knowledge-element', KnowledgeElement);
app.component('knowledge-grid', KnowledgeGrid);
app.mount('#app');