# EmptyState

KEmptyState is used as a placeholder card when the primary content is not available or empty. It can also optionally be used as an error state.

Title
Message
<template>
  <KEmptyState cta-text="CTA button">
    <template v-slot:title>EmptyState Title</template>
    <template v-slot:message>EmptyState Message</template>
  </KEmptyState>
</template>

# Props

# cta-is-hidden

  • cta-is-hidden

Boolean value used to hide the call to action button.

No content
You do not have any content here 😉️
<template>
  <KEmptyState cta-is-hidden>
    <template v-slot:title>No content</template>
    <template v-slot:message>You do not have any content here 😉️</template>
  </KEmptyState>
</template>

You can also use this to move your call to action into the message text.

No services
Add a service to begin proxying traffic.
<template>
  <KEmptyState cta-is-hidden>
    <template v-slot:title>No services</template>
    <template v-slot:message><router-link>Add a service</router-link> to begin proxying traffic</template>
  </KEmptyState>
</template>

# cta-text

  • cta-text

A string to be used as the text content of the call to action button.

No content
You do not have any content here 😉️
<template>
  <KEmptyState cta-text="Button text">
    <template v-slot:title>No content</template>
    <template v-slot:message>You do not have any content here 😉️</template>
  </KEmptyState>
</template>

# handle-click

  • handle-click

A function that is passed as the click handler for the call to action button

No content
You do not have any content here 😉️
<template>
  <KEmptyState
    cta-text="Click me!"
    :handle-click="clickFunction">
    <template v-slot:title>No content</template>
    <template v-slot:message>You do not have any content here 😉️</template>
  </KEmptyState>
</template>

<script>
export default {
  methods: {
    clickFunction() {
      alert('you clicked me!')
    }
  }
}
</script>

# is-error

  • is-error

A flag denoting whether or not the message is an error message. If so, a warning icon is displayed above the title slot. Keep in mind that cta-is-hidden should also be set to true if you do not want a button to render in the error state.

Warning

Error: Something broke

<template>
  <KEmptyState :cta-is-hidden="true" :is-error="true">
    <template v-slot:message>
      <h3>
        Error: Something broke
      </h3>
    </template>
  </KEmptyState>
</template>

# icon

  • icon

A string for the KIcon name to be displayed directly above the title. Specifying a value for icon will automatically indicate that it should be visible.

Support

Call me!

<template>
  <KEmptyState :cta-is-hidden="true" icon="support">
    <template v-slot:message>
      <h3>
        Call me!
      </h3>
    </template>
  </KEmptyState>
</template>

# icon-size

  • icon-size

A number denoting the size of the icon to be displayed above the empty state message. The default size is 50.

Warning

Error: Something broke and now this size 40 warning icon is displayed.

<template>
  <KEmptyState :cta-is-hidden="true" :is-error="true" icon-size="40">
    <template v-slot:message>
      <h3>
        Error: Something broke and now this size 40 warning icon is displayed.
      </h3>
    </template>
  </KEmptyState>
</template>

# icon-color

  • icon-color

A string denoting the color of the icon to be displayed above the empty state message.

Organization
No users exist
Adding new users will populate this table.
<template>
  <KEmptyState :cta-is-hidden="true" :is-error="true" icon-size="40" icon-color="#5996ff">
    <template v-slot:title>No users exist</template>
    <template v-slot:message>
        Adding new users will populate this table.
    </template>
    <template v-slot:cta>
      <KButton appearance="primary">Add a user</KButton>
    </template>
  </KEmptyState>
</template>

# Slots

KEmptyState has 3 named slots used, title, message, and cta. You can use the props outlined about to control the text and click handler of the button or hide it altogether. You can also use the cta slot to pass anything you want!

Kong
Look mah!
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi nec justo libero. Nullam accumsan quis ipsum vitae tempus. Integer non pharetra orci. Suspendisse potenti.
<template>
  <KEmptyState icon="kong">
    <template v-slot:title>Look mah!</template>
    <template v-slot:message>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi nec justo libero. Nullam accumsan quis ipsum vitae tempus. Integer non pharetra orci. Suspendisse potenti.</template>
      <KButton appearance="danger" size="small">Danger button</KButton>
    </template>
  </KEmptyState>
</template>

# Theming

Variable Purpose
--KEmptyTitleColor Replaces title text color
--KEmptyContentColor Replaces content text color
--KEmptyBackground Replaces background color of the empty state

An Example of what using theming might look like.

Title
Message
<template>
  <div class="custom-empty-state">
    <KEmptyState cta-text="CTA button">
      <template v-slot:title>EmptyState Title</template>
      <template v-slot:message>EmptyState Message</template>
    </KEmptyState>
  </div>
</template>

<style scoped lang="scss">
.custom-empty-state {
  --KEmptyTitleColor: #556B2F;
  --KEmptyContentColor: #C71585;
  --KEmptyBackground: #FFF0F5;
}
</style>